/* Rasha — executive personal brand */
:root {
  /* ========== BASE ========== */
  --bg: #07090d;
  --bg-elevated: #0b0f14;
  --surface: #0f141b;
  --surface-hover: #151b24;

  /* ========== BORDERS ========== */
  --border: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(0, 151, 178, 0.35);

  /* ========== TEXT ========== */
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  /* ========== BRAND (PRIMARY) ========== */
  --brand: #0097b2;
  --brand-light: #00bcd4;
  --brand-dark: #007c91;

  /* ========== ACCENT ========== */
  --accent: #22d3ee; /* controlled cyan */
  --accent-soft: rgba(34, 211, 238, 0.15);

  /* ========== GRADIENTS (PRO LEVEL) ========== */

  /* Main brand gradient (Hero, buttons) */
  --gradient: linear-gradient(
    135deg,
    #004552 0%,
    #005162 40%,
    #00738a 100%
  );

  /* Strong CTA gradient */
  --gradient-strong: linear-gradient(
    135deg,
    #004552 0%,
    #00738a 100%
  );

  /* Soft background gradient */
  --gradient-soft: linear-gradient(
    135deg,
    rgba(0, 151, 178, 0.15) 0%,
    rgba(34, 211, 238, 0.08) 100%
  );

  /* Glow effect */
  --glow: 0 0 50px rgba(0, 151, 178, 0.35);

  /* ========== UI ========== */
  --radius: 14px;
  --radius-lg: 22px;

  --font: "Inter", system-ui, -apple-system, sans-serif;

  --section-pad: clamp(4.5rem, 11vw, 8rem);
  --section-pad-tight: clamp(3.5rem, 8vw, 5.5rem);

  --max: 1180px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, hsl(195 93% 20% / 0.2), transparent 55%),
    radial-gradient(circle at 80% 100%, hsl(182 60% 37% / 0.08), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.case-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Background grid */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.97) 0%, var(--bg) 45%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(79, 209, 197, 0.03) 79px,
      rgba(79, 209, 197, 0.03) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(79, 209, 197, 0.03) 79px,
      rgba(79, 209, 197, 0.03) 80px
    );
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  backdrop-filter: blur(12px);
  background: rgba(10, 10, 20, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);


  height: var(--nav-h);
  display: flex;
  align-items: center;
 
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, calc(var(--max) + 80px));
  margin-inline: auto;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  letter-spacing: -0.03em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-desktop a {
  padding: 0.45rem 0.65rem;
  font-size: 0.8725rem;
  font-weight: 500;
  color: var(--text-subtle);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(10, 12, 16, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  border-top: 1px solid var(--border);
}

body.menu-open .nav-mobile {
  display: flex;
}

.nav-mobile a {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.nav-mobile a:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
   border-radius: 18px;
}

.btn-primary {
  background: var(--gradient);
  color: hsl(180 10% 97%);
  box-shadow: 0 4px 20px hsl(182 60% 37% / 0.2);
}

.btn-primary:hover {
  background: var(--gradient-strong);
  box-shadow: 0 8px 30px hsl(182 60% 37% / 0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  background: hsl(200 20% 12% / 0.6);
  border: 1px solid hsl(182 60% 37% / 0.2);
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: hsl(182 60% 37% / 0.4);
  box-shadow: var(--glow);
}

.btn-dark {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-dark:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.9375rem;
}

.btn .icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .btn {
    padding: 9px 12px;
    font-size: 0.85rem;
    line-height: 1.2;
    border-radius: 10px;
  }

  .btn-lg {
    padding: 10px 14px; /* override large buttons too */
  }
}

/* Typography utilities */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

 .gradient-text {
  background: linear-gradient(135deg, hsl(182 60% 45%), hsl(182 60% 55%), hsl(195 80% 40%));
  -webkit-background-clip: text;
  color: transparent;
}

.section-head {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.section-head--wide {
  max-width: 52rem;
}

.section-head h2 {
  font-size: clamp(1.875rem, 4.2vw, 2.75rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.expertise-micro {
  display: block;
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.sub-anchor {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 var(--section-pad);
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.hero-role-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin: 0 0 1.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-role-line .role-sep {
  color: var(--text-subtle);
  font-weight: 500;
  letter-spacing: 0;
  
}

.hero h1 {
  font-size: clamp(2.35rem, 5.8vw, 3.5rem);
  margin: 0 0 1.35rem;
  max-width: min(28ch, 100%);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero h1 .line-muted {
  color: var(--text-muted);
  font-weight: 700;
}

.hero-lead {
  font-size: 1.0625rem;
  max-width: 40rem;
  margin: 0 0 1rem;
  line-height: 1.65;
}

.hero-authority {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(79, 209, 197, 0.45);
}

.hero-proof {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 0 0.65rem;
}

.hero-micro {
  margin: 0 0 1.85rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.5;
}

.hero-micro strong {
  color: var(--teal);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: block;
  min-height: unset;

 transform: translateZ(0);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 40%, rgba(45, 212, 191, 0.12), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(14, 165, 233, 0.1), transparent 45%);
  pointer-events: none;
}

.hero-stat-card {
  position: relative;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  text-align: center;
  max-width: 280px;
}

.hero-stat-card .num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-card .label {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.hero-stat-card .cap {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  margin-top: 0.5rem;
}

.hero-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  line-height: 0;

height: clamp(170px, 30vw, 400px);
}
/* image fills wrapper perfectly */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Glow effect */
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,255,200,0.2), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* Hover zoom */
.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}
/* about Image */


/* Enable smooth transform */
.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
}

/* Image prepared for parallax */
.about-photo img {
  width: 100%;
  height: 120%; /* 🔥 bigger so it can move */
  object-fit: cover;

  transform: translateY(0);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Glow */
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,151,178,0.18), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
/* Logo container */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

/* Logo image */
.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Logo text */
.logo-text {
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

/* 🔥 Mobile Fix */
@media (max-width: 768px) {
  .logo-text {
    display: none; /* hide name */
  }

  .logo img {
    width: 40px;
    height: 40px;
  }
}

/* Hover effect */
.logo:hover .logo-text {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.6));
}

/* Credibility badge strip */
.trust {
  padding: clamp(2.25rem, 4vw, 3rem) 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.85) 0%, rgba(10, 12, 16, 0.95) 100%);
}

.cred-strip-head {
  text-align: center;
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.cred-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.65rem;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}

.cred-badge:hover {
  border-color: rgba(79, 209, 197, 0.35);
  background: rgba(79, 209, 197, 0.06);
}

.micro-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
    text-align: center;
}

.micro-trust-row span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.micro-trust-row span strong {
  color: var(--teal);
  font-weight: 600;
}

/* Conversion CTA strip */
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid var(--border);
}

.cta-strip--flush {
  border-top: none;
  padding-top: 0;
  margin-top: 1.5rem;
}

.cta-strip .micro-hint {
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  margin: 0.25rem 0 0;
}

/* How I help — 3 lanes */
.how-help {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.35) 0%, transparent 100%);
}

.how-help-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .how-help-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.how-lane {
  position: relative;
  padding: clamp(1.65rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.how-lane::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-light);
  opacity: 0.85;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-lane:hover {
  box-shadow: var(--shadow-card-hover);
border-color: hsl(182 60% 37% / 0.25);
  transform: translateY(-3px);
 
}

.how-lane:hover::before {
  transform: scaleX(1);
}

.how-lane-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.how-lane h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  margin: 0 0 0.75rem;
}

.how-lane p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.how-lane-outcome {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* =========================
   Who I work with (Grid)
========================= */
.audience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   Card
========================= */
.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;

  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);

  background: var(--bg-elevated);
  border: 1px solid var(--border);

  transition: all 0.25s ease;
  position: relative;

  overflow: hidden;
}

/* subtle gradient glow effect */
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(45, 212, 191, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* =========================
   Icon
========================= */
.audience-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 14px;

  background: rgba(45, 212, 191, 0.12);
  color: var(--teal);

  font-size: 20px;

  box-shadow: 0 0 14px rgba(45, 212, 191, 0.2);

  transition: all 0.25s ease;
  position: relative;
}

/* icon hover animation */
.audience-card:hover .audience-icon {
  transform: scale(1.08) rotate(-2deg);
  background: rgba(45, 212, 191, 0.2);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.35);
}

/* =========================
   Text
========================= */
.audience-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.9;
}

/* optional: improve readability */
.audience-card:hover p {
  opacity: 1;
}
/* Selected impact */
.impact-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.5);
}

.impact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .impact-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.impact-card {
  padding: 1.35rem 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.35s ease, transform 0.35s ease;
}

.impact-card.reveal.visible {
  animation: impact-settle 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.impact-card:hover {
 box-shadow: var(--shadow-card-hover);
border-color: hsl(182 60% 37% / 0.25);
  transform: translateY(-2px);
}

@keyframes impact-settle {
  from {
    box-shadow: 0 0 0 rgba(45, 212, 191, 0);
  }
  to {
    box-shadow: 0 12px 40px rgba(45, 212, 191, 0.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .impact-card.reveal.visible {
    animation: none;
  }
  .impact-card:hover {
    transform: none;
  }
}

.impact-card .stat-line {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.impact-card .stat-line em {
  font-style: normal;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-card .stat-detail {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-subtle);
}

/* Current focus standalone */
.current-focus-section .focus-list {
  max-width: 800px;
  margin-inline: auto;
}

/* Final strategic CTA */
.final-strategic-cta {
  padding: clamp(3.5rem, 9vw, 5.5rem) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(45, 212, 191, 0.12), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.final-strategic-inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 209, 197, 0.2);
  background: rgba(10, 12, 16, 0.6);
  box-shadow: 0 0 80px rgba(45, 212, 191, 0.06);
}

.final-strategic-inner h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.15rem);
  margin: 0 0 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.final-strategic-inner > p {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.final-strategic-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}

.final-strategic-foot {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.section-micro-trust {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.02em;
}

/* Section spacing */
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(15, 18, 24, 0.45) 50%, transparent);
}

.section--tight-top {
  padding-top: var(--section-pad-tight);
}

.enablement-suite .exec-pillars {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) and (max-width: 899px) {
  .enablement-suite .exec-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .enablement-suite .exec-pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.exec-pillar {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.exec-pillar:hover {
  border-color: rgba(79, 209, 197, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.exec-pillar h3 {
  font-size: 0.9375rem;
  margin: 0 0 0.5rem;
}

.exec-pillar p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.enablement-suite .sub-block {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--border);
}

.enablement-suite .sub-block .eyebrow {
  margin-bottom: 0.5rem;
}

/* About */
.about-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(240px, 320px) 1fr;
  }
}

.about-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface) 0%, #0d1117 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-photo .initial {
  font-size: clamp(4rem, 12vw, 6rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-body .eyebrow {
  margin-bottom: 0.5rem;
}

.about-body h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 1.25rem;
}

.about-body p {
  margin: 0 0 1.1rem;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.68;
}

.tag-grid {
  margin-top: 1.75rem;
}

.tag-grid .sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.75rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) and (max-width: 899px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
box-shadow: var(--shadow-card); 
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
border-color: hsl(182 60% 37% / 0.25);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79, 209, 197, 0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
}

.service-card p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-foot {
  margin-top: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Case studies */
.case-featured {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  transition: border-color 0.25s;
}

.case-featured:hover {
  border-color: rgba(79, 209, 197, 0.15);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.75rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.pill-teal {
  background: rgba(79, 209, 197, 0.12);
  border-color: rgba(79, 209, 197, 0.35);
  color: var(--teal);
}

.pill-muted {
  color: var(--text-subtle);
}

.case-featured h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 0.5rem;
}

.case-featured .summary {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.case-cols {
  display: grid;
  gap: 1.35rem;
}

.case-cols--split {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .case-cols--split {
    grid-template-columns: 1fr 1fr;
  }
}

.case-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.4rem;
}

.case-col p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

.case-field {
  margin-top: 1.5rem;
}

.case-field h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.case-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0;
}

.case-tech span {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.case-impact-box {
  margin-top: 1.35rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(79, 209, 197, 0.06);
  border: 1px solid rgba(79, 209, 197, 0.22);
}

.case-impact-box h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.case-impact-box p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.case-study-cta {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.case-study-cta .btn {
  font-weight: 600;
}

/* ================= CASE STUDY CARDS (HOME PAGE) ================= */

/* Grid */
.case-grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .case-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cards */
.case-card,
.case-featured {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: 0.3s ease;
  overflow: hidden;
}

/* Featured */
.case-featured {
  padding: 2rem;
  background: var(--surface);
  margin-bottom: 1.5rem;
}

/* Normal cards */
.case-card {
  padding: 1.5rem;
  background: var(--gradient-soft);
  display: flex;
  flex-direction: column;
}

/* Hover */
.case-card:hover,
.case-featured:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 209, 197, 0.3);
  box-shadow: var(--shadow-card-hover);
  cursor: pointer;
}

/* Clickable overlay */
.card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* Allow buttons */
.case-card a:not(.card-link),
.case-featured a:not(.card-link) {
  position: relative;
  z-index: 10;
}

/* Arrow */
.case-card::after,
.case-featured::after {
  content: "→";
  position: absolute;
  bottom: 15px;
  right: 20px;
  opacity: 0;
  transition: 0.3s;
  color: var(--teal);
}

.case-card:hover::after,
.case-featured:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

/* Text */
.summary {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.case-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  padding-right: 2rem;
}

.case-card .summary {
  margin: 0 0 1rem;
  font-size: 0.875rem;
}

.mini-cols {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .mini-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mini-cols h4 {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.25rem;
}

.mini-cols p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
}

/* Training block */
.split-section {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .split-section.cols-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.training-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .training-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.train-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  height: 100%;
}

.train-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.train-card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
}

.train-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.train-card li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.8125rem;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.train-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}

.speaking-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 640px;
  margin-inline: auto;
}

.speak-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.speak-row:hover {
  border-color: rgba(79, 209, 197, 0.2);
  background: var(--surface-hover);
}

.speak-row .mic {
  flex-shrink: 0;
  color: var(--teal);
}

.speak-row .title {
  flex: 1;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.speak-row .badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-subtle);
}

/* Current focus rows */
.focus-block {
  margin-top: 3rem;
  max-width: 720px;
  margin-inline: auto;
}

.focus-block .focus-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.focus-block .focus-head h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0.35rem 0 0;
}

.focus-block .focus-head p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.focus-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.focus-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.focus-row:hover {
  border-color: rgba(79, 209, 197, 0.18);
  background: var(--surface);
}

.focus-row .spark {
  flex-shrink: 0;
  color: var(--teal);
}

.focus-row .copy {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.focus-row .pill {
  flex-shrink: 0;
  margin: 0;
}

.mentor-checks {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}

.mentor-checks li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.mentor-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(79, 209, 197, 0.15);
  border: 1px solid rgba(79, 209, 197, 0.4);
}

.mentor-checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.55em;
  width: 5px;
  height: 9px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.trust-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 0 60px rgba(45, 212, 191, 0.08);
}

.trust-card .big {
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.trust-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.center-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.muted-foot {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}

/* Why grid */
.why-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.25s;
}

.why-card:hover {
  border-color: rgba(79, 209, 197, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.why-card .icon {
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1rem;
  margin: 0 0 0.55rem;
}

.why-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.test-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.test-card .quote-mark {
  font-size: 4rem;
  line-height: 0.5;
  font-family: Georgia, serif;
  color: rgba(79, 209, 197, 0.12);
  margin-bottom: 0.5rem;
}

.test-card blockquote {
  margin: 0 0 auto;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-muted);
}

.test-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.test-meta cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.test-meta .pill {
  flex-shrink: 0;
}

/* Contact */
.contact-paths {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

@media (min-width: 640px) {
  .contact-paths {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-paths {
    grid-template-columns: repeat(4, 1fr);
  }
}

.path-card {
  display: block;
  padding: 1.15rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.path-card:hover {
  border-color: rgba(79, 209, 197, 0.25);
  background: var(--surface);
  transform: translateY(-2px);
}

.path-card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.path-card span {
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.4;
}

.contact-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.contact-links {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.contact-links li {
  margin-bottom: 0.85rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--teal);
}

.contact-links svg {
  flex-shrink: 0;
  color: var(--teal);
}

.contact-form-wrap {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

@media (min-width: 640px) {
  .contact-form-wrap {
    padding: 2rem;
  }
}



/* =========================
   FORM PREMIUM UX
========================= */

.form-row {
  position: relative;
  margin-bottom: 1.2rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  transition: all 0.25s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #0097b2;
  box-shadow: 0 0 0 3px rgba(0,151,178,0.15);
}

/* Error state */
.form-row.error input,
.form-row.error select,
.form-row.error textarea {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.7rem;
  color: #ef4444;
  position: absolute;
  bottom: -16px;
  left: 2px;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.2s ease;
}

.form-row.error .form-error {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BUTTON LOADER
========================= */


.form-actions {
  display: flex;

  justify-content: center;
  margin-top: 1.2rem;
}

#submit-btn {
  min-width: 100%;
  justify-content: center;
}

@media (max-width: 640px) {
  .form-actions {
    justify-content: stretch;
  }

  #submit-btn {
    width: 100%;
  }
}

.btn-loader {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn-text {
  
  opacity: 0;
}

.btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================
   SUCCESS STATE
========================= */

.form-success {
  color: #22c55e;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: successFade 0.4s ease forwards;
}

@keyframes successFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   FORM ROW
========================= */
.form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-subtle);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(79, 209, 197, 0.45);
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.12);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 0.75rem;
  text-align: center;
}

/* CTA band */
.cta-band {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  text-align: center;
  border-block: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 212, 191, 0.08), transparent);
}

.cta-band h2 {
  font-size: clamp(1.875rem, 4.2vw, 2.65rem);
  max-width: 26ch;
  margin: 0 auto 1.15rem;
  letter-spacing: -0.03em;
}

.cta-band p {
  max-width: 40rem;
  margin: 0 auto 1.85rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  max-width: 28ch;
}

.footer-brand .mission {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  max-width: 32ch;
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 0 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-connect a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}

.footer-connect a:hover {
  color: var(--teal);
}

.footer-connect svg {
  opacity: 0.7;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-align: center;
}

/* Focus visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* =========================
   SCROLLBAR
========================= */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: hsl(182 60% 37% / 0.25);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(182 60% 37% / 0.45);
}

/* =========================
   HERO
========================= */
/* =========================
   HERO SECTION
========================= */
.hero {
  padding: clamp(4rem, 9vw, 6rem) 0;
  border-block: 1px solid var(--border);

  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 151, 178, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(34, 211, 238, 0.08), transparent 70%),
    var(--bg);
}

/* Container (optional if you already have one) */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   HERO TEXT STRUCTURE
========================= */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;

  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

/* Small intro */
.hero-small {
  display: block;
  font-size: 1.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Name (main highlight) */
.hero-name {
  display: block;
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  font-weight: 700;
  line-height: 1.15;
}

/* Static line */
.hero-line {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
   letter-spacing: 0.04em;
  color: var(--text-subtle);
}

/* Typing line */
.hero-typing {
  display: block;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 500;
}

/* =========================
   GRADIENT TEXT
========================= */
.gradient-text {
  background: linear-gradient(90deg, #0097b2, #22d3ee, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typewriter gradient */
#typewriter {
  
  background: linear-gradient(90deg, #22d3ee, #0097b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   CURSOR (PREMIUM)
========================= */
.cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-left: 6px;

  background: linear-gradient(180deg, #22d3ee, #0097b2);
  border-radius: 2px;

  transform: translateY(2px);

  animation: cursorSmooth 1.4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

@keyframes cursorSmooth {
  0%, 100% {
    opacity: 1;
    transform: translateY(2px) scaleY(1);
  }
  50% {
    opacity: 0.25;
    transform: translateY(2px) scaleY(0.75);
  }
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    line-height: 1.35;
  }

  .hero-name {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .hero-typing {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  
}