:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #475569;
  --border-color: #e2e8f0;
  --border-focus: #cbd5e1;
  --navy-deep: #0a1128;
  --navy-darker: #020617;
  --navy-card: #1e293b;
  --navy-border: #334155;
  --navy-text-primary: #f8fafc;
  --navy-text-secondary: #e2e8f0;
  --navy-text-muted: #cbd5e1;
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --accent-cyan: #06b6d4;
  --accent-cyan-bg: rgba(6, 182, 212, 0.1);
  --accent-blue-bg: rgba(37, 99, 235, 0.08);
  --status-in-progress-bg: rgba(245, 158, 11, 0.1);
  --status-in-progress-text: #d97706;
  --status-planned-bg: rgba(99, 102, 241, 0.1);
  --status-planned-text: #4f46e5;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-navy: 0 10px 25px -5px rgba(2, 6, 23, 0.5), 0 8px 10px -6px rgba(2, 6, 23, 0.5);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 4px;
}

.section-navy a:focus-visible,
.section-navy button:focus-visible,
.hero-section a:focus-visible,
.footer a:focus-visible {
  outline-color: var(--accent-cyan);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-light {
  background-color: var(--bg-primary);
}

.section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-navy {
  background-color: var(--navy-deep);
  color: var(--navy-text-primary);
  border-top: 1px solid var(--navy-border);
}

.section-header {
  margin-bottom: 50px;
  max-width: 700px;
}

.section-header-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.section-navy .section-tag {
  color: var(--accent-cyan);
}

.section-title {
  font-size: 32px;
  font-weight: 750;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  line-height: 1.25;
}

.section-navy .section-title {
  color: var(--navy-text-primary);
}

.section-desc {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.section-navy .section-desc {
  color: var(--navy-text-secondary);
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  gap: 8px;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: background-color var(--transition-normal);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-blue);
  border-radius: var(--radius-full);
}

.nav-links-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 550;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.hero-section {
  background-color: var(--navy-deep);
  background-image: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
  color: var(--navy-text-primary);
  padding-top: 140px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--navy-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pretitle {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-text-secondary);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 16px;
  color: var(--navy-text-muted);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-badges-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  width: 100%;
}

.hero-badges-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 550;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-pill {
  font-size: 12.5px;
  font-weight: 550;
  background-color: var(--navy-card);
  color: var(--navy-text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--navy-border);
  transition: all var(--transition-fast);
}

.badge-pill:hover {
  border-color: var(--accent-cyan);
  color: #ffffff;
  transform: translateY(-1px);
}

.profile-card {
  background-color: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-navy);
  transition: transform var(--transition-normal);
}

.profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.3);
}

.profile-image-container {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  position: relative;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--navy-border);
}

.profile-img-fallback {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.profile-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.profile-card-title {
  font-size: 13.5px;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.profile-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.profile-meta-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-value {
  display: block;
  font-size: 14px;
  color: var(--navy-text-secondary);
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.about-text-col {
  display: flex;
  flex-direction: column;
}

.about-section-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.about-p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.about-card-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: var(--accent-blue-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.about-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-card-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.experience-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--border-color);
  transition: background-color var(--transition-normal);
}

.experience-card:hover::before {
  background-color: var(--accent-blue);
}

.experience-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.exp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--bg-secondary);
  padding-bottom: 16px;
}

.exp-role-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.exp-role-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.role-level-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-blue);
  background-color: var(--accent-blue-bg);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.exp-org {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 4px;
}

.exp-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.exp-type-badge {
  font-size: 12px;
  font-weight: 550;
  color: var(--text-muted);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.exp-duration {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-duration-icon {
  width: 14px;
  height: 14px;
}

.exp-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-badge {
  font-size: 12px;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-focus);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.project-category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.project-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.status-in-progress {
  background-color: var(--status-in-progress-bg);
  color: var(--status-in-progress-text);
}

.status-planned {
  background-color: var(--status-planned-bg);
  color: var(--status-planned-text);
}

.project-title {
  font-size: 18px;
  font-weight: 750;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.project-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.proj-tech-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.project-footer {
  border-top: 1px solid var(--bg-secondary);
  padding-top: 16px;
}

.project-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-link:hover {
  color: var(--accent-blue-hover);
}

.project-link-disabled {
  font-size: 13.5px;
  font-weight: 550;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.project-link-icon {
  width: 14px;
  height: 14px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.skill-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.skill-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--bg-secondary);
  padding-bottom: 16px;
}

.skill-icon-wrapper {
  width: 42px;
  height: 42px;
  background-color: var(--accent-blue-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.skill-group-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.skill-check-icon {
  width: 15px;
  height: 15px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.community-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.community-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.community-badge-icon {
  width: 32px;
  height: 32px;
  background-color: var(--accent-blue-bg);
  color: var(--accent-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comm-badge-icon {
  width: 16px;
  height: 16px;
}

.community-role-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-blue);
  background-color: var(--accent-blue-bg);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.community-card-title {
  font-size: 17px;
  font-weight: 750;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.community-card-subtitle {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.community-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex-grow: 1;
}

.write-us-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.write-us-info-col {
  display: flex;
  flex-direction: column;
}

.write-us-info-details {
  margin-top: 10px;
}

.write-us-info-p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
}

.write-us-form-col {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.write-us-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-bg);
}

.form-textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  resize: vertical;
  transition: all var(--transition-normal);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-bg);
}

.form-input.invalid,
.form-textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error-msg {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  font-weight: 550;
  display: none;
}

.form-error-msg.active {
  display: block;
}

.form-submit-btn {
  width: 100%;
  padding: 14px 28px;
  font-size: 15px;
}

.form-status-message-box {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  display: none;
}

.form-status-message-box.active {
  display: block;
}

.form-status-message-box.success {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}

.form-status-message-box.error {
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.contact-card {
  background-color: var(--navy-deep);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-navy);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  color: var(--navy-text-primary);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 26px;
  font-weight: 750;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-info-desc {
  font-size: 15.5px;
  color: var(--navy-text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon-bg {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.contact-detail-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail-value {
  display: block;
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
}

.contact-email-btn {
  display: block;
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.contact-email-btn:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

a.contact-detail-value:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.contact-actions-col {
  background-color: rgba(2, 6, 23, 0.4);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 30px;
}

.actions-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--navy-border);
  padding-bottom: 12px;
}

.contact-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  color: #ffffff;
}

.btn-mail {
  background-color: var(--accent-blue);
}

.btn-mail:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-2px);
}

.btn-copy {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--navy-border);
}

.btn-copy:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.copy-status-msg {
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  margin-top: 4px;
  height: 18px;
  text-align: center;
  transition: opacity var(--transition-fast);
  opacity: 0;
}

.copy-status-msg.active {
  opacity: 1;
}

.btn-linkedin {
  background-color: #0077b5;
}

.btn-linkedin:hover {
  background-color: #006399;
  transform: translateY(-2px);
}

.btn-github {
  background-color: #24292e;
  border: 1px solid var(--navy-border);
}

.btn-github:hover {
  background-color: #1a1e22;
  transform: translateY(-2px);
}

.footer {
  background-color: var(--navy-darker);
  color: var(--navy-text-muted);
  padding: 40px 0;
  border-top: 1px solid var(--navy-border);
  font-size: 13.5px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  color: var(--navy-text-secondary);
  font-weight: 500;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-meta-link {
  font-family: var(--font-mono);
  font-size: 12px;
}

.footer-meta-link:hover {
  color: #ffffff;
}

.noscript-warning {
  background-color: #7f1d1d;
  color: #fef2f2;
  padding: 12px 24px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  border-bottom: 1px solid #991b1b;
  position: relative;
  z-index: 10000;
}
