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

:root {
  --bg:        #0d1117;
  --bg-2:      #131920;
  --bg-3:      #1a2230;
  --bg-4:      #1f2a3c;
  --border:    rgba(255,255,255,0.07);
  --border-md: rgba(255,255,255,0.11);
  --border-hi: rgba(255,255,255,0.18);
  --text-1: #f0f4f9;
  --text-2: #b8c4d0;
  --text-3: #6a7d94;
  --teal:      #00c9b1;
  --teal-dim:  #00876f;
  --teal-glow: rgba(0,201,177,0.12);
  --teal-glow-strong: rgba(0,201,177,0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 72px; }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}
body.fonts-loaded {
  opacity: 1;
}

/* ── GRID TEXTURE ── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 80%, transparent 100%);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--text-1);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.35rem;
}
.nav-logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-2); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-cta {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--teal);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 16px rgba(0,201,177,0.3);
}
.nav-cta:hover { opacity: 0.88; box-shadow: 0 0 24px rgba(0,201,177,0.45); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--bg);
  padding: 0.75rem 1.75rem;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0,201,177,0.25);
}
.btn-primary:hover { opacity: 0.88; box-shadow: 0 0 32px rgba(0,201,177,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid var(--border-md);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text-1); border-color: var(--border-hi); }

.section-label {
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); opacity: 0.8;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.section-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--teal); opacity: 0.6; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 75% 50%, rgba(0,201,177,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 3.5rem 6rem 4rem;
  position: relative; z-index: 1;
}
.hero-right {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 4rem;
  position: relative; z-index: 1;
  border-left: 1px solid var(--border);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 300;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before { content: '//'; opacity: 0.5; }
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 1.75rem;
}
.hero-headline em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Rotating words */
.rotating-words {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  color: var(--teal);
  font-style: italic;
}
.rotating-word {
  display: inline-block;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(40%);
  transition: opacity 0.45s ease, transform 0.45s ease;
  white-space: nowrap;
}
.rotating-word.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.rotating-word.exit {
  opacity: 0;
  transform: translateY(-40%);
}

/* Terminal code block */
.terminal {
  background: #0a0e14;
  border: 1px solid var(--border-md);
  border-radius: 12px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.8rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  width: 100%;
  max-width: 520px;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.terminal-title {
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.terminal-body {
  padding: 1.5rem;
  line-height: 1.75;
  color: var(--text-2);
  white-space: pre;
  overflow-x: auto;
  margin: 0;
  font-size: 0.78rem;
}
.code-comment { color: #546e7a; }
.code-keyword { color: #c792ea; }
.code-method { color: #82aaff; }
.code-num { color: #f78c6c; }
.code-string { color: #c3e88d; }
.code-teal { color: var(--teal); }

/* ── BRIDGE ── */
.bridge {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.bridge::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.4;
}
.bridge-item {
  padding: 2.25rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.bridge-item:last-child { border-right: none; }
.bridge-num {
  font-family: var(--mono);
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); opacity: 0.8;
  margin-bottom: 0.75rem;
}
.bridge-heading {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 400;
  color: var(--text-1);
  margin-bottom: 0.6rem; line-height: 1.25;
}
.bridge-body { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }

/* ── WHO WE SERVE (homepage cards) ── */
.who-serve {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.serve-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  background: var(--bg);
  transition: background 0.25s;
  text-decoration: none; color: inherit;
}
.serve-card:last-child { border-right: none; }
.serve-card:hover { background: var(--bg-2); }
.serve-card-tag {
  font-family: var(--mono);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); opacity: 0.8;
  margin-bottom: 1.25rem;
}
.serve-card-headline {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 300; line-height: 1.2;
  color: var(--text-1); margin-bottom: 1rem;
}
.serve-card-headline em { font-style: italic; color: var(--teal); }
.serve-card-text {
  font-size: 0.9rem; color: var(--text-2); line-height: 1.75;
  flex: 1; margin-bottom: 1.5rem;
}
.serve-card-link {
  display: inline-block;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--teal);
  border: 1px solid var(--teal-dim);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.serve-card:hover .serve-card-link { background: var(--teal-glow); border-color: var(--teal); }

/* ── SERVICES SUMMARY (homepage) ── */
.services-summary {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
  position: relative; overflow: hidden;
}
.services-summary::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,177,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.services-summary-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end;
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.services-summary-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text-1);
}
.services-summary-headline em { font-style: italic; color: var(--teal); }
.services-summary-intro { font-size: 0.925rem; color: var(--text-2); line-height: 1.8; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  position: relative; z-index: 1;
}
.svc-card {
  padding: 2.25rem;
  border-right: 1px solid var(--border);
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: background 0.25s;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--bg-3); }
.svc-card.featured { background: var(--bg-3); position: relative; }
.svc-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal), var(--teal-dim));
}
.svc-tier {
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); opacity: 0.75;
  margin-bottom: 1rem;
}
.svc-name {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--text-1); line-height: 1.15;
  margin-bottom: 0.4rem;
}
.svc-duration {
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 400;
  color: var(--text-3);
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.svc-desc {
  font-size: 0.9rem; color: var(--text-2); line-height: 1.75;
  flex: 1; margin-bottom: 1.5rem;
}
.svc-link {
  font-size: 0.8rem; font-weight: 500;
  color: var(--teal); text-decoration: none;
  transition: opacity 0.2s;
}
.svc-link:hover { opacity: 0.8; }

/* ── ABOUT CONDENSED (homepage) ── */
.about-condensed {
  padding: 5rem 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.about-condensed-pull {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 300; line-height: 1.5;
  color: var(--text-1);
  max-width: 50ch;
  margin: 0 auto 2rem;
}
.about-condensed-pull em { font-style: italic; color: var(--teal); }
.about-condensed-name {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 300;
  color: var(--text-1); margin-bottom: 0.25rem;
}
.about-condensed-title {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--text-3); margin-bottom: 1.75rem;
}

/* ── CONTACT ── */
.contact {
  padding: 6rem 4rem;
  background: var(--bg-2);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; top: -150px; left: 50%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,177,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.18;
  color: var(--text-1); margin-bottom: 1rem;
}
.contact-title em { font-style: italic; color: var(--teal); }
.contact-sub { font-size: 0.925rem; color: var(--text-2); line-height: 1.8; }
.contact-note { margin-top: 1rem; font-size: 0.8rem; color: var(--text-3); line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
}
.field input, .field select, .field textarea {
  background: var(--bg-3);
  border: 1px solid var(--border-md);
  color: var(--text-1);
  padding: 0.75rem 1rem;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 400;
  outline: none; border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal-dim);
  background: var(--bg-4);
}
.field select option { background: var(--bg-3); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  background: var(--teal);
  color: var(--bg);
  border: none; border-radius: 4px;
  padding: 0.8rem 2rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  margin-top: 0.25rem;
  box-shadow: 0 0 20px rgba(0,201,177,0.2);
}
.btn-submit:hover { opacity: 0.88; box-shadow: 0 0 28px rgba(0,201,177,0.4); }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.75rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  color: var(--text-3); text-decoration: none;
}
.footer-logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); opacity: 0.6; }
.footer-copy { font-size: 0.72rem; color: var(--text-3); font-family: var(--mono); }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── PAGE HERO (detail pages) ── */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 680px;
  position: relative; z-index: 1;
}
.page-hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.12;
  color: var(--text-1); margin-bottom: 1.5rem;
}
.page-hero-headline em { font-style: italic; color: var(--teal); }
.page-hero-sub {
  font-size: 1rem; color: var(--text-2);
  line-height: 1.8; max-width: 60ch;
}

/* ── PAGE CONTENT (detail pages) ── */
.page-content {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.page-content-left {
  padding: 3.5rem;
  border-right: 1px solid var(--border);
}
.page-content-right {
  padding: 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* problems & how-we-help (used on detail segment pages) */
.problems-label {
  font-family: var(--mono);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1rem;
}
.problems-list { list-style: none; margin-bottom: 1.75rem; }
.problems-list li {
  font-size: 0.925rem; color: var(--text-2); line-height: 1.6;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1.2rem 1fr; gap: 0.75rem;
  align-items: baseline;
  transition: color 0.2s;
}
.problems-list li:first-child { border-top: 1px solid var(--border); }
.problems-list li:hover { color: var(--text-1); }
.problems-list li::before {
  content: '?';
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--teal); opacity: 0.7; line-height: 1;
}
.how-we-help {
  padding: 1.25rem 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 2px solid var(--teal);
  border-radius: 0 4px 4px 0;
}
.how-label {
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); opacity: 0.8;
  margin-bottom: 0.45rem;
}
.how-we-help p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }

/* ── PAGE CTA (detail pages) ── */
.page-cta {
  padding: 5rem 4rem;
  text-align: center;
  background: var(--bg-2);
}
.page-cta-headline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--text-1); margin-bottom: 0.75rem;
}
.page-cta-headline em { font-style: italic; color: var(--teal); }
.page-cta-sub {
  font-size: 0.925rem; color: var(--text-2);
  margin-bottom: 2rem;
  max-width: 50ch; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ── FULL SERVICES (engagements page) ── */
.services {
  padding: 6rem 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,177,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  position: relative; z-index: 1;
}
.package-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: background 0.25s;
  position: relative;
}
.package-card:last-child { border-right: none; }
.package-card:hover { background: var(--bg-3); }
.package-card.featured { background: var(--bg-3); }
.package-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal), var(--teal-dim));
}
.pkg-tier {
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); opacity: 0.75;
  margin-bottom: 1.25rem;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 1.55rem; font-weight: 400;
  color: var(--text-1); line-height: 1.15;
  margin-bottom: 0.5rem;
}
.pkg-duration {
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 400;
  color: var(--text-3);
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pkg-desc {
  font-size: 0.9rem; color: var(--text-2); line-height: 1.75;
  margin-bottom: 1.75rem; flex: 1;
}
.pkg-includes-label {
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 0.85rem;
}
.pkg-includes {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.55rem;
  margin-bottom: 2rem;
}
.pkg-includes li {
  font-size: 0.85rem; color: var(--text-2); line-height: 1.45;
  display: grid; grid-template-columns: 1rem 1fr; gap: 0.6rem;
  align-items: baseline;
}
.pkg-includes li::before {
  content: '\2197'; font-size: 0.7rem; color: var(--teal); opacity: 0.7;
}
.pkg-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--text-2); text-decoration: none;
  border: 1px solid var(--border-md);
  padding: 0.65rem 1.25rem; border-radius: 4px;
  transition: all 0.2s; align-self: flex-start;
}
.pkg-cta:hover { color: var(--text-1); border-color: var(--border-hi); }
.pkg-cta.primary {
  background: var(--teal); color: var(--bg);
  border-color: var(--teal);
  box-shadow: 0 0 16px rgba(0,201,177,0.2);
}
.pkg-cta.primary:hover { opacity: 0.88; box-shadow: 0 0 24px rgba(0,201,177,0.35); }
.pkg-cta::after { content: '\2192'; }

/* ── FULL ABOUT (about page) ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.about-left {
  padding: 5rem 4rem;
  border-right: 1px solid var(--border);
}
.about-right {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.about-right::before {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,177,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-label {
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); opacity: 0.8;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
}
.about-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--teal); opacity: 0.6; }
.about-name {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 300;
  color: var(--text-1); margin-bottom: 0.2rem;
}
.about-title-line {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--text-3); margin-bottom: 2rem;
}
.about-bio { font-size: 0.925rem; color: var(--text-2); line-height: 1.85; margin-bottom: 2.5rem; }
.about-bio p + p { margin-top: 1rem; }
.cred-list { display: flex; flex-direction: column; }
.cred-row {
  display: flex; gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cred-row:first-child { border-top: 1px solid var(--border); }
.cred-badge {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 400;
  color: var(--teal);
  min-width: 2.5rem; padding-top: 0.1rem;
}
.cred-detail { font-size: 0.875rem; color: var(--text-3); line-height: 1.5; }
.cred-detail strong { color: var(--text-2); font-weight: 500; display: block; margin-bottom: 0.1rem; }
.about-pull {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 300; line-height: 1.5;
  color: var(--text-1);
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}
.about-pull em { font-style: italic; color: var(--teal); }
.stat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden;
  position: relative; z-index: 1;
}
.stat-cell {
  padding: 1.25rem;
  border-right: 1px solid var(--border);
  text-align: center;
  background: var(--bg-3);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 1.75rem; font-weight: 300;
  color: var(--teal); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding: 80px 0 0; }
  .hero-left { padding: 3.5rem 2rem; }
  .hero-right { display: none; }

  .bridge { grid-template-columns: 1fr; }
  .bridge-item { border-right: none; border-bottom: 1px solid var(--border); }
  .bridge-item:last-child { border-bottom: none; }

  .who-serve { grid-template-columns: 1fr; }
  .serve-card { border-right: none; border-bottom: 1px solid var(--border); }
  .serve-card:last-child { border-bottom: none; }

  .services-summary { padding: 4rem 2rem; }
  .services-summary-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }

  .about-condensed { padding: 4rem 2rem; }

  .services { padding: 4rem 2rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .package-card:last-child { border-bottom: none; }

  .about { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 4rem 2rem; }
  .about-left { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border); }

  .contact { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .field-row { grid-template-columns: 1fr; }

  .page-hero { padding: 8rem 2rem 3.5rem; }
  .page-content { grid-template-columns: 1fr; }
  .page-content-left { border-right: none; border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
  .page-content-right { padding: 2.5rem 2rem; }
  .page-cta { padding: 4rem 2rem; }

  footer { padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; }
}
