/* =========================================================================
   SoeMind Foundry — Interest / Waitlist Page
   Premium, AI-native, founder-focused. White + Deep Founder Blue + Gold.
   ========================================================================= */

/* ----------------------------- Design Tokens ---------------------------- */
:root {
  --bg:        #FFFFFF;
  --bg-soft:   #F7FAFF;
  --blue:      #0F3D73;   /* Deep Founder Blue */
  --navy:      #082B52;   /* Stronger navy */
  --gold:      #C99A35;   /* Premium Gold */
  --gold-line: #E6C878;   /* Light gold line */
  --text:      #1B1F24;   /* Charcoal */
  --muted:     #667085;
  --border:    #D9E4F2;
  --sky:       #E8F1FF;   /* Soft sky blue */
  --green:     #1C8C5A;
  --gold-soft: #FFF8E6;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-card: 0 4px 24px rgba(15, 61, 115, .08);
  --shadow-blue: 0 24px 60px -22px rgba(15, 61, 115, .35);
  --shadow-soft: 0 10px 30px -12px rgba(15, 61, 115, .18);

  --ease: cubic-bezier(.16, 1, .3, 1);

  --ff-display: "Sora", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  overscroll-behavior: none;
}
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ------------------------------ Layout ---------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section {
  position: relative;
  min-height: 100vh;
  padding: 80px 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-bottom: 1px solid var(--border);
}
.section > .wrap {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 24px;
}
.section--soft { background: var(--bg-soft); }
.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, #0a3360 100%);
  color: #EaF1FB;
}
.section--navy-deep {
  background: radial-gradient(120% 120% at 80% 0%, #0d3a6b 0%, var(--navy) 55%, #061f3c 100%);
  color: #EaF1FB;
}

/* divider line between bands - hidden for full-page scroll */
.band-line { display: none; }

/* --------------------------- Typography --------------------------------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--text); }
.section--navy h1, .section--navy h2, .section--navy h3,
.section--navy-deep h1, .section--navy-deep h2, .section--navy-deep h3 { color: #fff; }

.h-hero { font-size: clamp(2.3rem, 5.2vw, 4rem); }
.h-sec  { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h-card { font-size: 1.18rem; font-weight: 600; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); }
.section--navy .lead, .section--navy-deep .lead { color: #B9CCE6; }

p { color: var(--text); }
.muted { color: var(--muted); }
.section--navy p, .section--navy-deep p { color: #C7D6EC; }

/* gold accent text */
.gold { color: var(--gold); }
.section--navy .gold, .section--navy-deep .gold { color: var(--gold-line); }

/* eyebrow / section label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section--navy .eyebrow, .section--navy-deep .eyebrow { color: var(--gold-line); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-sec { margin-bottom: 10px; }

/* centered section accent image (sits above the eyebrow) */
.sec-ico { width: 104px; height: auto; margin: 0 auto 14px; filter: drop-shadow(0 14px 22px rgba(15,61,115,.18)); animation: floatY 7s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* problem-section supporting visual */
.problem-visual { width: 178px; margin: 24px 0 0; filter: drop-shadow(0 16px 24px rgba(15,61,115,.16)); }

/* hero floating brand stack */
.hero-stack-img { position: absolute; bottom: -54px; left: -46px; width: 168px; z-index: 1; filter: drop-shadow(0 22px 30px rgba(15,61,115,.28)); animation: floatY 8s ease-in-out infinite; }
@media (max-width: 980px) { .hero-stack-img { width: 120px; bottom: -30px; left: 0; } }

/* thin gold top line decoration */
.gold-rule { width: 64px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-line)); border-radius: 2px; margin-bottom: 22px; }
.center .gold-rule { margin-inline: auto; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 12px;
  font-family: var(--ff-display); font-weight: 600; font-size: .98rem;
  border: 1.5px solid transparent; transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--blue); color: #fff;
  border-color: var(--blue);
  box-shadow: 0 10px 24px -10px rgba(15, 61, 115, .55);
}
.btn-primary:hover {
  background: var(--navy); border-color: var(--gold);
  box-shadow: 0 14px 30px -10px rgba(15, 61, 115, .6), 0 0 0 4px rgba(201, 154, 53, .15);
  transform: translateY(-2px);
}
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue); background: var(--sky); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #2a1d04; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-line); transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(201,154,53,.6); }

.section--navy .btn-ghost, .section--navy-deep .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.section--navy .btn-ghost:hover, .section--navy-deep .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--gold-line); }

.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ------------------------------ Navbar ---------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .35s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 72px;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 32px; width: auto; }
.brand b { font-family: var(--ff-display); font-weight: 700; font-size: 1.04rem; letter-spacing: -.01em; color: var(--navy); white-space: nowrap; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.nav-links a { font-size: .93rem; font-weight: 500; color: #41556b; white-space: nowrap; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-cta .btn-primary { padding: 11px 22px; font-size: .92rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; margin: 4px 0; transition: .3s; }

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-right: 8px;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #F7FAFF;
  border: 1px solid #D8E6F5;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: #0B376D;
  cursor: pointer;
  transition: all .2s ease;
}
.lang-current:hover {
  background: #EEF6FF;
  border-color: #C9DDF4;
}
.lang-current svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
.lang-switcher.open .lang-current svg {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 120px;
  background: #fff;
  border: 1px solid #D8E6F5;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(11, 31, 77, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
  z-index: 100;
  overflow: hidden;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: #41556b;
  cursor: pointer;
  transition: all .15s ease;
}
.lang-option:hover {
  background: #F7FAFF;
  color: #0B376D;
}
.lang-option.active {
  background: #EEF6FF;
  color: #0B376D;
  font-weight: 700;
}
.lang-option .flag {
  font-size: 1.1rem;
}

/* ------------------------------ Hero ------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-glow {
  position: absolute; top: -180px; right: -160px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(124,170,232,.42), rgba(124,170,232,0) 62%);
  filter: blur(8px); border-radius: 50%;
}
.hero-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15,61,115,.12) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 10%, #000 25%, transparent 70%);
  mask-image: radial-gradient(120% 100% at 70% 10%, #000 25%, transparent 70%);
  opacity: .6;
}
/* blueprint gold lines behind hero text */
.blueprint { position: absolute; top: 90px; left: -40px; width: 540px; height: 360px; z-index: 0; opacity: .55; pointer-events: none; }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 600px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px; background: var(--sky);
  border: 1px solid var(--border); color: var(--blue);
  font-size: .82rem; font-weight: 600; margin-bottom: 22px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(28,140,90,.18); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .gold { background: linear-gradient(90deg, var(--gold), #b07f1f); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.16rem; color: #41556b; margin-bottom: 16px; font-weight: 500; }
.hero-body { color: var(--muted); margin-bottom: 30px; font-size: 1.02rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-line { font-size: .88rem; color: var(--muted); display: flex; align-items: flex-start; gap: 9px; }
.trust-line svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.proof-line { font-size: .82rem; color: var(--blue); font-weight: 500; margin-top: 8px; opacity: .85; }

/* hero right: dashboard */
.hero-visual { position: relative; }
.hero-rocket-img { position: absolute; top: -78px; right: -26px; width: 150px; z-index: 3; filter: drop-shadow(0 18px 26px rgba(15,61,115,.25)); animation: float 6s ease-in-out infinite; }
.dash {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 22px;
  box-shadow: var(--shadow-blue);
}
.dash::before { /* moving gold edge */
  content: ""; position: absolute; inset: 0; border-radius: 22px; padding: 1.5px;
  background: linear-gradient(120deg, transparent 20%, var(--gold-line) 50%, transparent 80%);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: goldedge 5s linear infinite; opacity: .85; pointer-events: none;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-head .dots { display: flex; gap: 6px; }
.dash-head .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.dash-head .dots i:first-child { background: var(--gold-line); }
.dash-head small { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dcard {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px; box-shadow: 0 2px 10px rgba(15,61,115,.05);
}
.dcard .tag { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 6px; margin-bottom: 9px; }
.dcard .tag::before { content: ""; width: 14px; height: 2px; background: var(--gold); border-radius: 2px; }
.dcard p { font-size: .82rem; color: #33475e; line-height: 1.45; }
.dcard .chip { display: inline-block; font-size: .7rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: var(--gold-soft); color: var(--gold); margin-top: 6px; }
.dcard .chip.green { background: #E7F6EE; color: var(--green); }
.dcard-sub { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.dash-coach {
  margin-top: 10px; padding: 10px 12px; border-radius: 10px;
  background: linear-gradient(135deg, var(--sky), #fff);
  border: 1px solid var(--gold-line); border-left: 3px solid var(--gold);
}
.dash-coach .coach-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.dash-coach p { font-size: .78rem; color: #33475e; line-height: 1.4; margin: 0; font-style: italic; }

@keyframes goldedge { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ----------------------------- Problem ---------------------------------- */
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px; align-items: center; }
.problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.pcard {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px; transition: all .3s var(--ease);
  overflow: hidden; display: flex; flex-direction: column;
}
.pcard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-line)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: #C2D6F0; }
.pcard:hover::before { transform: scaleX(1); }
.pcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pcard .num { font-family: var(--ff-display); font-weight: 700; font-size: .82rem; color: var(--gold); }
.pcard-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--sky);
  display: grid; place-items: center; color: var(--blue);
}
.pcard-icon svg { width: 16px; height: 16px; }
.pcard-title-wrap { min-height: 3em; display: flex; align-items: flex-end; margin-bottom: 8px; }
.pcard h4 { font-size: 1rem; color: var(--navy); padding-bottom: 6px; border-bottom: 2px solid var(--gold-line); margin: 0; }
.pcard p { font-size: .82rem; color: var(--muted); line-height: 1.45; flex-grow: 1; }
.problem-bridge {
  margin-top: 20px; font-family: var(--ff-display); font-size: .95rem;
  font-weight: 600; color: var(--navy); text-align: center;
}
.problem-cta {
  margin-top: 10px; font-size: .85rem; color: var(--muted);
  text-align: center; font-style: italic;
}
.closing-line {
  margin-top: 34px; padding: 20px 26px; border-left: 3px solid var(--gold);
  background: var(--bg-soft); border-radius: 0 12px 12px 0;
  font-family: var(--ff-display); font-weight: 500; font-size: 1.1rem; color: var(--navy);
}

/* ----------------------- The Foundry Flow (Compact Full Page) ----------------------- */
.section--flow {
  background: #F7FAFF;
  padding: 88px 24px 92px;
  position: relative;
  min-height: 100vh;
}
.flow-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15,61,115,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .4;
  pointer-events: none;
}

/* Compact Header */
.flow-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.flow-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C99A2E;
  margin-bottom: 14px;
}
.flow-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #151922;
  max-width: 820px;
  margin: 0 auto;
}
.flow-gold {
  color: #C99A2E;
}
.flow-sub {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: #667085;
}

/* Main Flow Card - Compact */
.flow-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #D8E6F5;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(11, 31, 77, 0.08);
  padding: 34px 42px 30px;
  margin-top: 38px;
  max-width: 1100px;
  margin-inline: auto;
}

/* Transform Row - Top of Card */
.transform-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid #EEF3FA;
}
.transform-block {}
.transform-block--end {
  text-align: right;
}
.transform-label {
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C99A2E;
  margin-bottom: 6px;
}
.transform-text {
  font-size: 15px;
  color: #667085;
}

/* Timeline Area */
.timeline-area {
  position: relative;
  margin-top: 34px;
}
.timeline-line {
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #C99A2E 0%, #D8E6F5 32%, #D8E6F5 100%);
  z-index: 0;
}

/* Steps Grid */
.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Step */
.step {
  text-align: center;
  padding: 0 10px 16px;
  border-radius: 18px;
  transition: all 0.25s ease;
}
.step:hover {
  background: #F7FAFF;
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px #D8E6F5;
}
.step-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #EEF6FF 0%, #DDEBFA 100%);
  border: 1px solid #C9DDF4;
  color: #0B376D;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(11, 55, 109, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.25s ease;
}
.step:hover .step-number {
  background: #0B376D;
  color: #FFFFFF;
  border-color: #0B376D;
  transform: translateY(-2px);
}
.step-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 850;
  color: #0B2545;
  margin-bottom: 10px;
}
.step-description {
  font-size: 14.5px;
  line-height: 1.5;
  color: #667085;
  max-width: 220px;
  margin: 0 auto;
  min-height: 66px;
}
.output-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #FFF7E6;
  border: 1px solid #E9C66B;
  color: #9A6A00;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.step:hover .output-pill {
  background: #C99A2E;
  color: #FFFFFF;
  border-color: #C99A2E;
}

/* Card Footer with CTA */
.card-footer {
  margin-top: 30px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #F7FAFF;
  border: 1px solid #D8E6F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4B5F7A;
  font-size: 15px;
  line-height: 1.5;
}
.footer-icon {
  width: 22px;
  height: 22px;
  color: #C99A2E;
  flex-shrink: 0;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0B376D;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.footer-link svg {
  width: 16px;
  height: 16px;
}
.footer-link:hover {
  color: #C99A2E;
}

/* Flow Section Responsive */
@media (max-width: 980px) {
  .section--flow {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 80px 24px;
  }
  .flow-card {
    padding: 28px 24px 24px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .timeline-line {
    display: none;
  }
  .transform-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .transform-block--end {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .section--flow {
    padding: 64px 20px;
  }
  .flow-headline {
    font-size: 1.8rem;
  }
  .flow-card {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .step {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: #F7FAFF;
    border-radius: 16px;
    border: 1px solid #E8F0FA;
  }
  .step-number {
    margin: 0 0 12px 0;
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
  .step-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .step-description {
    max-width: none;
    min-height: auto;
    font-size: 13px;
    margin-bottom: 12px;
  }
  .output-pill {
    white-space: normal;
    text-align: left;
    font-size: 11px;
    margin-top: 0;
  }
  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.promise {
  text-align: center; max-width: 720px; margin: 46px auto 0;
  font-family: var(--ff-display); font-size: clamp(1.2rem,2vw,1.5rem); font-weight: 600; color: var(--navy); line-height: 1.4;
}
.promise .gold { font-style: italic; }

/* ------------------------- Founder Context Engine ------------------------ */
.context-split {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center;
}
.context-left {}
.context-sub {
  font-size: .95rem; color: var(--muted); margin-top: 14px; line-height: 1.6;
}
.context-bullets {
  list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px;
}
.context-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text);
}
.context-bullets svg {
  width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.context-micro {
  margin-top: 20px; font-size: .85rem; color: var(--blue);
  font-weight: 500; font-style: italic;
}
.context-right {}
.context-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 20px; box-shadow: var(--shadow-blue);
}
.context-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.context-card-head h4 {
  font-family: var(--ff-display); font-size: 1rem; color: var(--navy); margin-bottom: 4px;
}
.context-card-head p {
  font-size: .78rem; color: var(--muted); margin: 0;
}
.context-status {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 600; color: var(--green);
  padding: 4px 10px; border-radius: 999px; background: #E7F6EE;
  white-space: nowrap;
}
.context-status .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.context-status .dot.green { background: var(--green); }
.context-diagram {
  display: flex; flex-direction: column; gap: 16px;
}
.context-inputs {
  display: grid; gap: 8px;
}
.ctx-input {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: var(--sky); border: 1px solid var(--border);
}
.ctx-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--blue);
}
.ctx-icon svg { width: 16px; height: 16px; }
.ctx-input strong {
  font-family: var(--ff-display); font-size: .82rem; color: var(--navy); display: block;
}
.ctx-input span {
  font-size: .72rem; color: var(--muted); display: block; margin-top: 1px;
}
.context-connector {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
}
.connector-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.connector-line {
  flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-line));
  border-radius: 2px;
}
.context-output {}
.ai-output-card {
  background: linear-gradient(135deg, var(--sky), #fff);
  border: 1.5px solid var(--gold-line); border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 14px;
}
.ai-output-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.ai-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold);
}
.ai-status {
  font-size: .68rem; color: var(--muted); font-style: italic;
}
.ai-recommendation {
  font-size: .85rem; color: #33475e; line-height: 1.45; font-style: italic; margin: 0 0 12px;
}
.ai-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ai-pill {
  font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold);
}

@media (max-width: 980px) {
  .context-split { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .context-card { padding: 16px; }
  .ctx-input { padding: 8px 10px; }
  .ai-output-card { padding: 12px; }
}

/* ------------------------- Context-Aware AI Coaching --------------------- */
.section--navy-coaching {
  position: relative;
  background: linear-gradient(160deg, #082B52 0%, #0B376D 100%);
  color: #EaF1FB;
  min-height: 760px;
  padding: 120px 0;
  overflow: hidden;
}
.coaching-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.coaching-glow {
  position: absolute; top: 30%; left: 60%; width: 600px; height: 500px;
  background: radial-gradient(circle, rgba(44,123,229,0.25), transparent 50%);
  filter: blur(40px); border-radius: 50%; z-index: 0;
}
.coaching-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
}
.coaching-split {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 45% 55%; gap: 72px; align-items: center;
}
.coaching-left {}
.coaching-eyebrow {
  color: #D6A63A !important;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.h-coaching {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 0;
}
.gold-coaching {
  color: #F2C75C;
}
.coaching-sub {
  color: #C8D6E8;
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 560px;
  margin-top: 24px;
}
.coaching-bullets {
  list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px;
}
.coaching-bullets li {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.05rem; color: #DDE8F6; line-height: 1.5;
  transition: color .2s ease;
}
.coaching-bullets li:hover { color: #fff; }
.coaching-bullets li:hover svg { transform: scale(1.08); }
.coaching-bullets svg {
  width: 20px; height: 20px; color: #F2C75C; flex-shrink: 0;
  transition: transform .2s ease;
}
.coaching-cta-line {
  margin-top: 28px;
  color: #F2C75C;
  font-size: 1rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.coaching-cta-line svg {
  width: 18px; height: 18px;
}

/* Chat Card */
.coaching-right {
  display: flex; justify-content: center;
}
.coaching-chat-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all .25s ease;
}
.coaching-chat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}
.chat-card-head {
  display: flex; align-items: center; gap: 14px;
}
.chat-avatar {
  width: 42px; height: 42px; border-radius: 12px;
  background: #0B376D; color: #fff;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: .9rem;
}
.chat-head-info {
  display: flex; flex-direction: column;
}
.chat-title {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 800; color: #0B2545;
}
.chat-status {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: #168A4A; margin-top: 2px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #16A34A;
}
.chat-divider {
  height: 1px; background: #D8E6F5; margin: 24px 0;
}
.chat-messages {
  display: flex; flex-direction: column; gap: 16px;
}
.chat-msg {}
.msg-label {
  display: block;
  font-size: .75rem; font-weight: 800; letter-spacing: .08em;
  color: #5B6B82; margin-bottom: 8px;
}
.msg-label--ai {
  color: #C99A2E;
}
.msg-bubble {
  padding: 18px 20px; border-radius: 16px;
  font-size: .95rem; line-height: 1.5; color: #0B2545;
}
.msg-bubble--founder {
  background: #EAF3FF;
  border-bottom-right-radius: 6px;
  margin-left: 48px;
}
.msg-bubble--ai {
  background: #fff;
  border: 1.5px solid #D6A63A;
  border-bottom-left-radius: 6px;
  margin-right: 32px;
  box-shadow: 0 8px 24px rgba(214, 166, 58, 0.12);
}
.ai-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; margin-right: 32px;
}
.ai-rec-pill {
  background: #F7FAFF;
  border: 1px solid #D8E6F5;
  color: #0B376D;
  font-size: .75rem; font-weight: 700;
  padding: 8px 12px; border-radius: 999px;
}

@media (max-width: 980px) {
  .section--navy-coaching {
    min-height: auto;
    padding: 96px 0;
  }
  .coaching-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .coaching-chat-card {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .section--navy-coaching {
    padding: 72px 0;
  }
  .coaching-chat-card {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .msg-bubble--founder { margin-left: 24px; }
  .msg-bubble--ai { margin-right: 16px; }
  .ai-pills { margin-right: 16px; }
  .coaching-bullets li { font-size: .95rem; }
  .coaching-sub { font-size: 1rem; }
}

/* ------------------------- How It Works (timeline) ---------------------- */
.timeline { position: relative; max-width: 820px; margin: 56px auto 0; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--gold), var(--gold-line)); }
.tstep { position: relative; padding-left: 80px; padding-bottom: 34px; }
.tstep:last-child { padding-bottom: 0; }
.tnum {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem;
  box-shadow: 0 8px 20px -8px rgba(15,61,115,.6); z-index: 2;
}
.tcard { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; box-shadow: var(--shadow-card); transition: transform .3s var(--ease); }
.tcard:hover { transform: translateX(5px); }
.tcard h4 { color: var(--navy); margin-bottom: 7px; font-size: 1.12rem; }
.tcard p { font-size: .94rem; color: var(--muted); }
.tcard ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); font-size: .9rem; }
.tcard ul li { margin-bottom: 4px; }
mark { background: linear-gradient(transparent 55%, rgba(230,200,120,.55) 55%); color: inherit; padding: 0 2px; font-weight: 600; }

/* ------------------------------ Features -------------------------------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.fcard {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px; transition: all .3s var(--ease); overflow: hidden;
}
.fcard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-line)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: #C2D6F0; }
.fcard:hover::before { transform: scaleX(1); }
.fcard.glow::after { content: ""; position: absolute; inset: -1px; border-radius: var(--radius); box-shadow: 0 0 0 1px rgba(124,170,232,.4), 0 0 36px -6px rgba(124,170,232,.45); pointer-events: none; }
.ficon {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--sky); border: 1px solid var(--border); color: var(--blue); margin-bottom: 16px;
}
.ficon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.fcard h4 { color: var(--navy); font-size: 1.08rem; margin-bottom: 8px; }
.fcard p { font-size: .9rem; color: var(--muted); }
.fcard .star { position: absolute; top: 18px; right: 18px; color: var(--gold-line); font-size: .8rem; }

/* ------------------------- AI Coaching (navy) --------------------------- */
.coach-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.coach-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.coach-list li { display: flex; align-items: flex-start; gap: 12px; color: #C7D6EC; font-size: .98rem; }
.coach-list svg { width: 19px; height: 19px; color: var(--gold-line); flex-shrink: 0; margin-top: 3px; }
.coach-quote { margin-top: 30px; padding: 18px 22px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.coach-quote p { color: #fff; font-family: var(--ff-display); font-size: 1.06rem; line-height: 1.45; }
.coach-quote p .gold { font-style: italic; }

.chat {
  position: relative; background: rgba(255,255,255,.97); border-radius: 20px; padding: 22px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.4);
}
.chat::after { content: ""; position: absolute; inset: -24px; border-radius: 30px; background: radial-gradient(circle, rgba(124,170,232,.3), transparent 70%); z-index: -1; }
.chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.chat-head .av { width: 34px; height: 34px; border-radius: 9px; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: .85rem; }
.chat-head b { font-family: var(--ff-display); color: var(--navy); font-size: .95rem; }
.chat-head small { color: var(--green); font-size: .74rem; display: flex; align-items: center; gap: 5px; }
.chat-head small::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.bubble { max-width: 86%; padding: 12px 15px; border-radius: 14px; font-size: .92rem; margin-bottom: 12px; line-height: 1.45; }
.bubble.user { background: var(--sky); color: var(--navy); border-bottom-right-radius: 4px; margin-left: auto; }
.bubble.ai { position: relative; background: #fff; color: #2a3a4d; border: 1.5px solid var(--gold-line); border-bottom-left-radius: 4px; box-shadow: 0 4px 14px rgba(201,154,53,.12); }
.bubble .who { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 5px; opacity: .7; }
.bubble.ai .who { color: var(--gold); }

/* ------------------------------ Evidence -------------------------------- */
.evid-split { display: grid; grid-template-columns: 1fr 1.04fr; gap: 54px; align-items: center; }
.evid-types { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.etype { display: flex; gap: 12px; align-items: flex-start; }
.etype .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--sky); border: 1px solid var(--border); display: grid; place-items: center; color: var(--blue); flex-shrink: 0; }
.etype .ico svg { width: 19px; height: 19px; }
.etype h5 { font-family: var(--ff-display); font-size: .95rem; color: var(--navy); margin-bottom: 2px; }
.etype p { font-size: .82rem; color: var(--muted); }

.evid-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-blue); padding: 26px; position: relative; }
.evid-card .ec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.evid-card .ec-head b { font-family: var(--ff-display); color: var(--navy); }
.badge { font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .03em; }
.badge.green { background: #E7F6EE; color: var(--green); }
.badge.gold { background: var(--gold-soft); color: var(--gold); }
.ec-row { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); align-items: start; }
.ec-row:first-of-type { border-top: 0; }
.ec-row .k { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); padding-top: 2px; }
.ec-row .k.learn { color: var(--gold); }
.ec-row .v { font-size: .92rem; color: #33475e; }
.strong-line { margin-top: 30px; font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600; color: var(--navy); }
.strong-line .gold { color: var(--gold); }

/* ------------------------------ Portfolio ------------------------------- */
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.port-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-card); transition: all .3s var(--ease); }
.port-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-blue); }
.port-card .pc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.port-card .vname { font-family: var(--ff-display); font-weight: 700; color: var(--navy); font-size: 1.16rem; }
.port-card .stage { font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--sky); color: var(--blue); }
.port-card .row { margin-bottom: 12px; }
.port-card .row .label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); display: block; margin-bottom: 3px; }
.port-card .row p { font-size: .9rem; color: #33475e; }
.lookfor { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); }
.lookfor svg { width: 14px; height: 14px; }

/* ------------------------------ About Section ---------------------------- */
.about-content { max-width: 900px; margin: 30px auto 0; }
.about-text { font-size: .95rem; line-height: 1.6; }
.about-text > p { margin-bottom: 20px; text-align: center; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px;
}
.about-mission, .about-vision {
  padding: 18px 20px; border-radius: 12px;
  background: var(--sky); border: 1px solid var(--border);
}
.about-mission h4, .about-vision h4 {
  font-family: var(--ff-display); font-size: .9rem; color: var(--navy);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.about-mission h4::before, .about-vision h4::before {
  content: ""; width: 3px; height: 14px; background: var(--gold); border-radius: 2px;
}
.about-mission p, .about-vision p { color: var(--muted); margin-bottom: 0; font-size: .85rem; line-height: 1.5; }

/* ------------------------------ Team Section ----------------------------- */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 30px; }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; width: 100%; max-width: 420px; text-align: center;
  box-shadow: var(--shadow-card); transition: all .3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); }
.team-photo {
  width: 140px; height: 160px; border-radius: 0 0 70px 70px; margin: 0 auto 20px;
  background: var(--sky); overflow: hidden;
  display: flex; align-items: flex-start; justify-content: center;
}
.team-photo img { object-position: top center; }
.team-photo.no-photo {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  align-items: center;
}
.team-photo.no-photo::after {
  content: "MK"; font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: #fff;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info h4 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.team-role { display: inline-block; font-size: .85rem; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.team-info p { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.team-links { display: flex; justify-content: center; gap: 14px; margin-top: 18px; }
.team-links a {
  width: 40px; height: 40px; border-radius: 10px; background: var(--sky); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--blue); transition: all .2s var(--ease);
}
.team-links a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.team-links svg { width: 18px; height: 18px; }
.team-note {
  max-width: 700px; margin: 36px auto 0; text-align: center;
  padding: 22px 28px; border-radius: 14px;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
}
.team-note p { font-size: .94rem; color: #6b5a30; margin: 0; }

/* ------------------------------ Product Details -------------------------- */
.product-details { max-width: 1000px; margin: 24px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-item {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 14px; transition: all .3s var(--ease);
}
.product-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: #C2D6F0; }
.product-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--sky); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--blue);
}
.product-icon svg { width: 18px; height: 18px; }
.product-text h4 { font-family: var(--ff-display); font-size: .88rem; color: var(--navy); margin-bottom: 2px; }
.product-text p { font-size: .78rem; color: var(--muted); line-height: 1.4; margin: 0; }
.product-status {
  max-width: 600px; margin: 20px auto 0; text-align: center;
  padding: 16px 20px; border-radius: 10px;
  background: var(--sky); border: 1px solid var(--border);
}
.status-badge {
  display: inline-block; font-family: var(--ff-display); font-size: .72rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); padding: 5px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border); margin-bottom: 8px;
}
.product-status p { font-size: .85rem; color: var(--muted); margin: 0; }

/* Team card wide variant */
.team-card--wide {
  max-width: 800px; text-align: left;
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start;
}
.team-card--wide .team-photo { margin: 0; }
.team-card--wide .team-info { text-align: left; }
.team-card--wide .team-info p { margin-bottom: 12px; }
.team-card--wide .team-info p:last-of-type { margin-bottom: 0; }
.team-credentials { font-weight: 600; color: var(--navy); font-size: .9rem; margin-top: 14px; }
.team-card--wide .team-links { justify-content: flex-start; }

/* ----------------------- Founder Section (Premium) ----------------------- */
.section--founder {
  background: radial-gradient(ellipse 85% 60% at 50% 0%, rgba(219, 234, 254, 0.6), transparent 55%), #F7FAFF;
  padding: 110px 0 130px;
  position: relative;
  height: auto;
  min-height: auto;
  max-height: none;
}
.founder-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15,61,115,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .45;
  pointer-events: none;
}
.founder-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.founder-eyebrow {
  color: #C99A2E !important;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}
.h-founder {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #151922;
  margin-bottom: 20px;
}
.gold-founder {
  color: #C99A2E;
}
.founder-subhead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #667085;
}

/* Founder Card */
.founder-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  background: #FFFFFF;
  border: 1px solid #D8E6F5;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(11, 31, 77, 0.08);
  padding: 48px;
  margin-top: 48px;
  transition: all .3s ease;
}
.founder-card:hover {
  border-color: #C99A2E;
  box-shadow: 0 32px 80px rgba(11, 31, 77, 0.12);
}

/* Left Column: Photo & Identity */
.founder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.founder-photo-ring {
  position: relative;
  width: 180px;
  height: 220px;
  margin-bottom: 24px;
}
.founder-photo-ring::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  border: 2px solid #D8E6F5;
  border-top: none;
  border-radius: 0 0 90px 90px;
  pointer-events: none;
}
.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 0 0 90px 90px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-photo.no-photo {
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.founder-photo.no-photo::after {
  content: "MK";
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.founder-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0B2545;
  margin-bottom: 6px;
}
.founder-role {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: #C99A2E;
  margin-bottom: 20px;
}
.founder-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0B376D;
  color: #fff;
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all .25s ease;
  box-shadow: 0 8px 20px rgba(11, 55, 109, 0.15);
}
.founder-linkedin-btn svg {
  width: 18px;
  height: 18px;
}
.founder-linkedin-btn:hover {
  background: #082B52;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 55, 109, 0.25);
}

/* Right Column: Story & Credentials */
.founder-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-story {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #41556b;
  margin-bottom: 24px;
}

/* Credibility Chips */
.founder-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 28px;
}
.founder-chip {
  display: inline-block;
  padding: 6px 12px;
  background: #EEF6FF;
  border: 1px solid #C9DDF4;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  color: #0B376D;
  white-space: nowrap;
  transition: all .2s ease;
}
.founder-chip:hover {
  background: #DDE9FA;
  border-color: #A8C6E8;
}

/* Why I'm Building This Insight Box */
.founder-insight {
  background: linear-gradient(135deg, #FFF9E8 0%, #FFF4D6 100%);
  border: 1px solid #E8D499;
  border-left: 4px solid #C99A2E;
  border-radius: 0 16px 16px 0;
  padding: 24px 28px;
}
.founder-insight .insight-label {
  font-family: var(--ff-display);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8B6914;
  margin-bottom: 10px;
}
.founder-insight .insight-text {
  font-size: .95rem;
  line-height: 1.6;
  color: #5C4A14;
  margin: 0;
}

/* Founder Section Responsive */
@media (max-width: 980px) {
  .founder-card {
    grid-template-columns: 220px 1fr;
    gap: 36px;
    padding: 36px;
  }
  .founder-photo-ring {
    width: 150px;
    height: 185px;
  }
  .founder-photo-ring::after {
    height: 85px;
    border-radius: 0 0 75px 75px;
  }
  .founder-photo {
    border-radius: 0 0 75px 75px;
  }
  .founder-name {
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .section--founder {
    padding: 80px 0 100px;
  }
  .founder-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    text-align: center;
  }
  .founder-left {
    align-items: center;
  }
  .founder-photo-ring {
    width: 160px;
    height: 195px;
  }
  .founder-photo-ring::after {
    height: 90px;
    border-radius: 0 0 80px 80px;
  }
  .founder-photo {
    border-radius: 0 0 80px 80px;
  }
  .founder-right {
    align-items: center;
    text-align: center;
  }
  .founder-story {
    text-align: left;
  }
  .founder-chips {
    flex-wrap: wrap;
    justify-content: center;
  }
  .founder-insight {
    text-align: left;
    border-radius: 16px;
    border-left: none;
    border-top: 4px solid #C99A2E;
  }
}
@media (max-width: 480px) {
  .founder-card {
    padding: 24px 18px;
  }
  .founder-photo-ring {
    width: 140px;
    height: 170px;
  }
  .founder-photo-ring::after {
    height: 80px;
    border-radius: 0 0 70px 70px;
  }
  .founder-photo {
    border-radius: 0 0 70px 70px;
  }
  .founder-name {
    font-size: 1.25rem;
  }
  .founder-story {
    font-size: .95rem;
  }
  .founder-insight {
    padding: 20px;
  }
}

/* ----------------------- About the Vision (Full Page) ----------------------- */
.section--about {
  background: #F7FAFF;
  min-height: 100vh;
  padding: 80px 24px;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.about-left {}
.about-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C99A2E;
  margin-bottom: 18px;
}
.about-headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #151922;
  margin-bottom: 0;
}
.about-gold {
  color: #C99A2E;
}
.about-intro {
  font-size: 17px;
  line-height: 1.65;
  color: #667085;
  margin-top: 22px;
}
.about-intro strong {
  color: #0B2545;
}
.about-strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: #0B2545;
  margin-top: 16px;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: #FFFFFF;
  border: 1px solid #D8E6F5;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 12px 30px rgba(11, 31, 77, 0.04);
  transition: all .25s ease;
  position: relative;
}
.about-card:hover {
  transform: translateY(-4px);
  border-color: #C99A2E;
  box-shadow: 0 20px 50px rgba(11, 31, 77, 0.10);
}
.about-card-bar {
  position: absolute;
  left: 0;
  top: 24px;
  width: 4px;
  height: 24px;
  background: #C99A2E;
  border-radius: 0 4px 4px 0;
}
.about-card h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0B2545;
  margin-bottom: 10px;
  padding-left: 12px;
}
.about-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: #667085;
}
.about-pill {
  display: inline-block;
  margin-top: 14px;
  background: #F7FAFF;
  border: 1px solid #D8E6F5;
  color: #0B376D;
  font-size: .75rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}

/* ----------------------- Product Roadmap (Full Page) ----------------------- */
.section--roadmap {
  background: #FFFFFF;
  min-height: 100vh;
  padding: 80px 24px;
}
.roadmap-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.roadmap-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C99A2E;
  margin-bottom: 16px;
}
.roadmap-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #151922;
  margin-bottom: 0;
}
.roadmap-gold {
  color: #C99A2E;
}
.roadmap-sub {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: #667085;
}

/* Compact 2x2 Grid */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
  max-width: 1000px;
  margin-inline: auto;
}
.roadmap-card {
  background: #FFFFFF;
  border: 1px solid #D8E6F5;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 8px 24px rgba(11, 31, 77, 0.04);
  transition: all .25s ease;
}
.roadmap-card:hover {
  transform: translateY(-4px);
  border-color: #C99A2E;
  box-shadow: 0 18px 48px rgba(11, 31, 77, 0.10);
}
.roadmap-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.phase-badge {
  display: inline-flex;
  background: #0B376D;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}
.phase-now { background: #0B376D; }
.phase-next { background: #1E5A9F; }
.phase-later { background: #4A7AB8; }
.phase-future { background: #7A9CC8; }
.active-badge {
  display: inline-flex;
  background: #E8F5EC;
  color: #168A4A;
  border: 1px solid #B7E4C7;
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}
.roadmap-card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 750;
  color: #0B2545;
  margin-bottom: 8px;
}
.roadmap-card > p {
  font-size: .88rem;
  line-height: 1.5;
  color: #667085;
}
.outcome-pill {
  display: inline-block;
  margin-top: 12px;
  background: #F7FAFF;
  border: 1px solid #D8E6F5;
  color: #0B376D;
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}
.roadmap-footer {
  margin-top: 28px;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  color: #0B2545;
}

/* About & Roadmap Responsive */
@media (max-width: 980px) {
  .section--about,
  .section--roadmap {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 80px 24px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .section--about,
  .section--roadmap {
    padding: 64px 20px;
  }
  .about-headline {
    font-size: 1.8rem;
  }
  .roadmap-headline {
    font-size: 1.6rem;
  }
  .about-card {
    padding: 22px 20px;
  }
  .roadmap-card {
    padding: 18px 20px;
  }
}

/* ----------------------- Pilot Proof Section (Compact 2-Column) ----------------------- */
.section--pilot {
  background: #F7FAFF;
  padding: 96px 24px;
  /* Override 100vh constraint */
  height: auto;
  min-height: auto;
  max-height: none;
}

/* Main Container: 2-column grid */
.pilot-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

/* Left Column */
.pilot-left {}
.pilot-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C99A2E;
  margin-bottom: 18px;
}
.pilot-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #151922;
  max-width: 520px;
  margin-bottom: 0;
}
.pilot-gold {
  color: #C99A2E;
}
.pilot-paragraph {
  font-size: 17px;
  line-height: 1.65;
  color: #667085;
  max-width: 560px;
  margin-top: 22px;
}
.pilot-strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  color: #0B2545;
  margin-top: 18px;
}

/* Metrics Grid: 2x2 compact */
.pilot-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 460px;
  margin-top: 32px;
}
.pilot-metric-card {
  background: #FFFFFF;
  border: 1px solid #D8E6F5;
  border-radius: 18px;
  padding: 18px 20px;
  min-height: 96px;
  box-shadow: 0 10px 24px rgba(11, 31, 77, 0.04);
  transition: all 0.25s ease;
}
.pilot-metric-card:hover {
  transform: translateY(-4px);
  border-color: #C99A2E;
  box-shadow: 0 18px 44px rgba(11, 31, 77, 0.10);
}
.metric-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #0B376D;
  font-family: var(--ff-display);
}
.metric-text {
  display: block;
  font-size: 14px;
  color: #667085;
  margin-top: 8px;
}

/* CTA Row */
.pilot-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cta-text {
  font-size: 15px;
  font-weight: 600;
  color: #667085;
}
.pilot-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0B376D;
  color: white;
  padding: 13px 20px;
  border-radius: 14px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 14px 32px rgba(11, 55, 109, 0.20);
  transition: all 0.25s ease;
}
.pilot-cta-btn svg {
  width: 18px;
  height: 18px;
}
.pilot-cta-btn:hover {
  transform: translateY(-2px);
  background: #082B52;
  box-shadow: 0 20px 46px rgba(11, 55, 109, 0.28);
}

/* Right Column: Proof Panel */
.pilot-right {}
.proof-panel {
  background: #FFFFFF;
  border: 1px solid #D8E6F5;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(11, 31, 77, 0.08);
  transition: all 0.25s ease;
}
.proof-panel:hover {
  border-color: rgba(201, 154, 46, 0.65);
  box-shadow: 0 34px 90px rgba(11, 31, 77, 0.12);
}
.panel-title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 850;
  color: #0B2545;
  margin-bottom: 0;
}
.panel-subtitle {
  font-size: 15px;
  color: #667085;
  margin-top: 6px;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.testimonial-card {
  background: #F7FAFF;
  border: 1px solid #D8E6F5;
  border-radius: 18px;
  padding: 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.testimonial-card:hover {
  background: #FFFFFF;
  transform: translateY(-4px);
  border-color: #C99A2E;
  box-shadow: 0 18px 42px rgba(11, 31, 77, 0.08);
}
.quote-mark {
  color: #C99A2E;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.quote-text {
  font-size: 14.5px;
  line-height: 1.55;
  font-style: italic;
  color: #1F2937;
  margin: 0;
}
.quote-name {
  display: block;
  font-size: 13px;
  font-weight: 850;
  color: #C99A2E;
  margin-top: auto;
  padding-top: 14px;
}
.quote-project {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5B6B85;
  margin-top: 2px;
  line-height: 1.4;
}

/* Insight Box inside Proof Panel */
.insight-box {
  background: linear-gradient(180deg, #EAF3FF 0%, #F3F8FF 100%);
  border: 1px solid #D8E6F5;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}
.insight-box .insight-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 850;
  color: #0B2545;
  margin-bottom: 0;
}
.insight-box .insight-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4B5F7A;
  margin-top: 8px;
}
.insight-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.insight-chip {
  background: #FFFFFF;
  border: 1px solid #D8E6F5;
  color: #0B376D;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
}

/* Pilot Section Responsive */
@media (max-width: 980px) {
  .pilot-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pilot-headline {
    max-width: 100%;
  }
  .pilot-paragraph {
    max-width: 100%;
  }
  .pilot-metrics-grid {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .section--pilot {
    padding: 72px 20px;
  }
  .pilot-headline {
    font-size: 2rem;
  }
  .pilot-metrics-grid {
    grid-template-columns: 1fr;
  }
  .pilot-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .proof-panel {
    padding: 24px 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .team-card--wide { grid-template-columns: 1fr; text-align: center; }
  .team-card--wide .team-photo { margin: 0 auto; }
  .team-card--wide .team-info { text-align: center; }
  .team-card--wide .team-links { justify-content: center; }
  .roadmap-item { flex-direction: column; gap: 10px; }
}

@media (max-width: 900px) {
  .product-details { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-details { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .roadmap-items { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .product-item { flex-direction: column; align-items: stretch; gap: 12px; }
  .product-icon { margin: 0 auto; }
  .product-text { text-align: center; }
  .team-card { padding: 26px 20px; }
  .team-photo { width: 120px; height: 140px; border-radius: 0 0 60px 60px; }
}

/* ----------------------- Built For (Compact Full Page) ----------------------- */
.section--builtfor {
  background: #F7FAFF;
  padding: 80px 24px 72px;
  position: relative;
  min-height: 100vh;
}
.builtfor-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15,61,115,.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.builtfor-header {
  text-align: center;
  position: relative;
  z-index: 1;
}
.builtfor-eyebrow {
  color: #C99A2E !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.h-builtfor {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #151922;
  margin-bottom: 0;
}
.gold-builtfor {
  color: #C99A2E;
}
.builtfor-subhead {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.55;
  color: #667085;
}

/* Audience Cards Grid - Compact */
.builtfor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.audience-card {
  background: #fff;
  border: 1px solid #D8E6F5;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(11, 31, 77, 0.04);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: #C99A2E;
  box-shadow: 0 20px 50px rgba(11, 31, 77, 0.10);
}
.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #0B376D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(11, 55, 109, 0.15);
  margin-bottom: 18px;
  transition: all .25s ease;
}
.audience-icon svg {
  width: 22px;
  height: 22px;
}
.audience-card:hover .audience-icon {
  transform: scale(1.05);
  background: #082B52;
}
.audience-card h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0B2545;
  line-height: 1.2;
  margin-bottom: 8px;
}
.audience-underline {
  width: 72px;
  height: 2px;
  background: #C99A2E;
  border-radius: 999px;
  margin-bottom: 12px;
}
.audience-card p {
  font-size: .9rem;
  line-height: 1.55;
  color: #667085;
  margin: 0;
  flex-grow: 1;
}
.audience-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F7FAFF;
  border: 1px solid #D8E6F5;
  color: #0B376D;
  font-size: .72rem;
  font-weight: 800;
  transition: all .25s ease;
  align-self: flex-start;
}
.audience-card:hover .audience-pill {
  background: #FFF7E6;
  border-color: #E4B84A;
  color: #9A6A00;
}

/* Not For Card - Compact */
.notfor-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  background: linear-gradient(180deg, #FFF9EA 0%, #FFF5D9 100%);
  border: 1px solid #E4B84A;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 8px 24px rgba(201, 154, 46, 0.06);
  transition: all .25s ease;
  position: relative;
  z-index: 1;
}
.notfor-card:hover {
  transform: translateY(-3px);
  border-color: #C99A2E;
  box-shadow: 0 16px 40px rgba(201, 154, 46, 0.12);
}
.notfor-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #E4B84A;
  color: #C99A2E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notfor-icon svg {
  width: 22px;
  height: 22px;
}
.notfor-content {}
.notfor-content h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0B2545;
  margin-bottom: 4px;
}
.notfor-content p {
  font-size: .88rem;
  line-height: 1.55;
  color: #7A5C22;
  margin: 0;
}

/* Bottom CTA - Compact */
.builtfor-cta {
  margin-top: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.builtfor-cta-text {
  font-size: .95rem;
  font-weight: 600;
  color: #0B2545;
  margin-bottom: 14px;
}
.builtfor-cta .btn {
  padding: 14px 26px;
  font-size: .95rem;
}

/* Built For Responsive */
@media (max-width: 980px) {
  .section--builtfor {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 80px 24px;
  }
  .builtfor-cards { grid-template-columns: 1fr; gap: 16px; }
  .notfor-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .section--builtfor { padding: 64px 20px; }
  .audience-card { padding: 20px; }
  .notfor-card { padding: 18px; }
}

/* ------------------------ Programs (navy + admin) ----------------------- */
.prog-split { display: grid; grid-template-columns: 1fr 1.08fr; gap: 54px; align-items: center; }
.track-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-top: 24px; }
.track-list li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #C7D6EC; }
.track-list li svg { width: 16px; height: 16px; color: var(--gold-line); flex-shrink: 0; }
.usecases { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.uc { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 16px; }
.uc h5 { font-family: var(--ff-display); color: #fff; font-size: .95rem; margin-bottom: 5px; }
.uc p { font-size: .83rem; color: #B9CCE6; }

.admin {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 20px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.6);
}
.admin-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12); }
.admin-head b { color: #fff; font-family: var(--ff-display); font-size: .95rem; }
.admin-head .pill-sm { font-size: .68rem; color: var(--gold-line); border: 1px solid rgba(230,200,120,.4); padding: 3px 9px; border-radius: 999px; }
.admin-row { background: rgba(255,255,255,.96); border-radius: 12px; padding: 13px 15px; margin-bottom: 10px; }
.admin-row .ar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.admin-row .ar-top b { color: var(--navy); font-size: .9rem; font-family: var(--ff-display); }
.tag-status { font-size: .65rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .03em; }
.tag-status.gold { background: var(--gold-soft); color: var(--gold); }
.tag-status.green { background: #E7F6EE; color: var(--green); }
.tag-status.blue { background: var(--sky); color: var(--blue); }
.pbar { height: 7px; border-radius: 999px; background: #E3ECF7; overflow: hidden; }
.pbar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), #3b6fb0); }

/* ------------------------- Early Access (CTA card) ---------------------- */
.ea-card {
  position: relative; max-width: 860px; margin: 0 auto; text-align: center;
  background: linear-gradient(160deg, #fff, var(--bg-soft));
  border: 1px solid var(--border); border-radius: 26px; padding: 56px 44px;
  box-shadow: var(--shadow-blue); overflow: hidden;
}
.ea-card .glow-bg { position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% -10%, rgba(124,170,232,.3), transparent 60%); z-index: 0; }
.ea-card > * { position: relative; z-index: 1; }
.ea-rocket { width: 96px; margin: 0 auto 20px; filter: drop-shadow(0 14px 22px rgba(15,61,115,.2)); }
.ea-note { font-size: .88rem; color: var(--muted); max-width: 560px; margin: 20px auto 0; }

/* ------------------------------ Form ------------------------------------ */
.form-wrap { max-width: 760px; margin: 44px auto 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-display); font-size: .86rem; font-weight: 600; color: var(--navy); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .94rem; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--border); background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(15,61,115,.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F3D73' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-actions { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 8px; }
.privacy { font-size: .8rem; color: var(--muted); text-align: center; display: flex; align-items: center; gap: 7px; }
.privacy svg { width: 15px; height: 15px; color: var(--green); }

.form-success {
  display: none; text-align: center; padding: 50px 30px;
}
.form-success.show { display: block; animation: pop .5s var(--ease); }
.form-success .check { width: 72px; height: 72px; border-radius: 50%; background: #E7F6EE; color: var(--green); display: grid; place-items: center; margin: 0 auto 22px; }
.form-success .check svg { width: 36px; height: 36px; }
.form-success h3 { color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--muted); max-width: 460px; margin: 0 auto; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

/* --------------------------- Waitlist Modal ----------------------------- */
.modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.modal.open { display: block; }
body.modal-open { overflow: hidden; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(8, 27, 52, .55);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  animation: fadeIn .28s var(--ease);
}
.modal-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(720px, calc(100vw - 36px));
  max-height: calc(100vh - 48px); overflow-y: auto;
  background: #fff; border-radius: 22px; padding: 36px;
  box-shadow: 0 40px 90px -30px rgba(8, 27, 52, .6);
  animation: modalIn .35s var(--ease);
  -webkit-overflow-scrolling: touch;
}
.modal-card::-webkit-scrollbar { width: 9px; }
.modal-card::-webkit-scrollbar-thumb { background: var(--border); border-radius: 9px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border);
  background: #fff; color: var(--muted); display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { background: var(--sky); color: var(--blue); border-color: var(--blue); transform: rotate(90deg); }
.modal-head { text-align: center; margin-bottom: 26px; padding-right: 30px; }
.modal-head .eyebrow { justify-content: center; }
.modal-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--navy); margin-bottom: 10px; }
.modal-head p { font-size: .92rem; }
.modal .form-wrap { max-width: none; margin: 0; padding: 0; border: 0; box-shadow: none; background: transparent; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translate(-50%, -46%) scale(.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

@media (max-width: 640px) {
  .modal-card { padding: 26px 18px; border-radius: 18px; width: calc(100vw - 24px); max-height: calc(100vh - 24px); }
  .modal-head { padding-right: 20px; }
}

/* ------------------------------ Early Access CTA ------------------------------- */
.section--cta {
  background:
    radial-gradient(circle at 50% 40%, rgba(64, 132, 210, 0.28), transparent 36%),
    radial-gradient(circle at 20% 20%, rgba(242, 199, 92, 0.08), transparent 22%),
    linear-gradient(180deg, #0B376D 0%, #082B52 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: visible;
  padding: 96px 24px;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 154, 53, 0.20), transparent 60%);
}
.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(216, 230, 245, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
}

/* CTA Content */
.cta-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F2C75C;
  margin-bottom: 18px;
}
.cta-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.cta-gold {
  color: #F2C75C;
}
.cta-sub {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.6;
  color: #C8D6E8;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  padding: 18px 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, #E2B447 0%, #C99A2E 100%);
  color: #151922;
  font-family: var(--ff-display);
  font-weight: 850;
  font-size: 17px;
  border: none;
  box-shadow: 0 18px 44px rgba(201, 154, 46, 0.28);
  cursor: pointer;
  transition: all 0.25s ease;
}
.cta-btn svg {
  width: 20px;
  height: 20px;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(201, 154, 46, 0.38);
  background: linear-gradient(180deg, #F2C75C 0%, #D6A63A 100%);
}
.cta-btn:active {
  transform: translateY(-1px);
}

/* Benefit Chips */
.benefit-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.benefit-chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 230, 245, 0.20);
  color: #DDE8F6;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.benefit-chip:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(242, 199, 92, 0.45);
  color: #FFFFFF;
}

/* Qualification Note */
.cta-note {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.6;
  color: #AFC2DA;
}

/* CTA Section Responsive */
@media (max-width: 980px) {
  .section--cta {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 80px 24px;
  }
  .floating-card {
    display: none;
  }
  .cta-headline {
    font-size: 2.2rem;
  }
  .cta-sub {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .section--cta {
    padding: 64px 20px;
  }
  .cta-headline {
    font-size: 1.8rem;
  }
  .cta-sub {
    font-size: 16px;
  }
  .cta-btn {
    padding: 16px 28px;
    font-size: 15px;
  }
  .benefit-row {
    gap: 8px;
  }
  .benefit-chip {
    font-size: 12px;
    padding: 8px 11px;
  }
}

/* ------------------------------ Footer ---------------------------------- */
.footer {
  background: var(--navy);
  color: #B9CCE6;
  padding: 72px 0 36px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer .brand img { height: 36px; }
.footer-brand p {
  font-size: 14px;
  color: #93AAC9;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #F2C75C;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.footer-cta svg {
  width: 18px;
  height: 18px;
  transition: transform .2s;
}
.footer-cta:hover {
  color: #fff;
}
.footer-cta:hover svg {
  transform: translateX(4px);
}
.footer-col h5 {
  font-family: var(--ff-display);
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  line-height: 2.1;
}
.footer-col ul a {
  font-size: 15px;
  color: #AFC2DA;
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover {
  color: #F2C75C;
}
/* Status column */
.footer-status .status-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-status .status-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #AFC2DA;
  line-height: 2.1;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #F2C75C;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: #7A93B5;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-tagline {
  font-style: italic;
  color: #93AAC9;
}

/* ----------------------------- Reveal anim ------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ----------------------------- Responsive ------------------------------- */
/* nav collapses to hamburger earlier to avoid a cramped link row */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; margin: 0;
    background: #fff; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }
}

@media (max-width: 980px) {
  html { scroll-snap-type: none; }
  .section {
    height: auto; min-height: auto; max-height: none;
    padding: 76px 0; scroll-snap-align: none; scroll-snap-stop: normal;
    border-bottom: none;
  }
  .hero {
    height: auto; min-height: auto; max-height: none;
    padding: 128px 0 70px; scroll-snap-align: none; scroll-snap-stop: normal;
    border-bottom: none;
  }
  .section--cta {
    height: auto; min-height: auto; max-height: none;
    scroll-snap-align: none; scroll-snap-stop: normal;
  }
  .hero-inner, .split, .coach-split, .evid-split, .prog-split { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid, .port-grid, .aud-grid { grid-template-columns: 1fr 1fr; }
  .os-card { grid-template-columns: 1fr 1fr; }
  .os-step:nth-child(2)::after { display: none; }
  .os-step .connector { display: none; }
  .hero-rocket-img { width: 110px; top: -50px; right: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer { padding: 56px 0 32px; }
  .footer-bottom { margin-top: 40px; }
}
@media (max-width: 640px) {
  .wrap { padding-inline: 18px; }
  .section { padding: 60px 0; }
  .problem-cards, .feat-grid, .port-grid, .aud-grid, .form-grid, .os-card,
  .evid-types, .track-list, .usecases, .dash-grid { grid-template-columns: 1fr; }
  .problem-cards .pcard[style] { grid-column: auto !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 0 32px; }
  .footer-bottom { margin-top: 32px; flex-direction: column; align-items: flex-start; }
  .form-wrap, .ea-card { padding: 28px 20px; }
  .os-step:not(:last-child)::after { display: none; }
  .os-card { padding: 8px; gap: 0; }
  .os-step { padding: 20px 16px; border-bottom: 1px solid var(--border); }
  .os-step:last-child { border-bottom: none; }
  .os-badge { width: 40px; height: 40px; margin-bottom: 12px; }
  .nav-cta .btn-ghost { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  /* tighter vertical timeline on phones */
  .timeline::before { left: 21px; }
  .tstep { padding-left: 62px; padding-bottom: 26px; }
  .tnum { width: 44px; height: 44px; font-size: 1rem; border-radius: 12px; }
  .tcard { padding: 16px 18px; }
  /* hero headline + dashboard breathing room */
  .hero { padding: 116px 0 56px; }
  .hero-stack-img { display: none; }
  .hero-rocket-img { right: 20px; }
  .closing-line { font-size: 1rem; padding: 16px 20px; }
  .strong-line, .promise { font-size: 1.1rem; }
}

/* very small phones / nav fit: drop wordmark, compact CTA */
@media (max-width: 600px) {
  .brand b { display: none; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn-primary { padding: 8px 12px; font-size: .78rem; }
  .nav.open .nav-links a { width: 100%; }
  .lang-current { padding: 6px 10px; font-size: .78rem; }
  .lang-current span { display: none; }
  .lang-current svg { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================== Myanmar Language Typography ===================== */
html[lang="my"] h1,
html[lang="my"] h2,
html[lang="my"] h3,
html[lang="my"] .h-hero,
html[lang="my"] .h-sec,
html[lang="my"] .h-founder,
html[lang="my"] .h-builtfor,
html[lang="my"] .h-coaching,
html[lang="my"] .flow-headline,
html[lang="my"] .pilot-headline,
html[lang="my"] .about-headline,
html[lang="my"] .roadmap-headline,
html[lang="my"] .cta-headline {
  line-height: 1.3;
  letter-spacing: 0;
}

html[lang="my"] .h-founder {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

/* ===================== Interactive Demo Styles ===================== */
.demo-prompt {
  background: var(--sky);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.demo-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.demo-input-row {
  display: flex;
  gap: 12px;
}
.demo-select {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
}
.demo-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 61, 115, 0.1);
}

.dash-grid-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.dcard-mini {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}
.tag-mini {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.tag-mini.green {
  background: rgba(28, 140, 90, 0.12);
  color: var(--green);
}
.tag-mini.red {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}
.dcard-mini p {
  font-size: 0.8rem;
  color: var(--text);
  margin: 0;
}

/* ===================== Product UI Preview Styles ===================== */
.product-ui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
}
.ui-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ui-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--sky);
  border-bottom: 1px solid var(--border);
}
.ui-icon {
  font-size: 1.1rem;
}
.ui-panel-head strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.ui-panel-body {
  padding: 16px;
}
.ui-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.ui-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.ui-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}
.ui-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 8px 0;
}
.ui-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
}
.ui-badge.green {
  background: rgba(28, 140, 90, 0.12);
  color: var(--green);
}
.ui-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin: 10px 0;
}
.ui-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.ui-feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ui-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 6px;
}
.ui-feature.keep {
  background: rgba(28, 140, 90, 0.08);
  color: var(--green);
}
.ui-feature.cut {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  text-decoration: line-through;
  opacity: 0.7;
}
.ui-check, .ui-x {
  font-weight: 700;
}
.ui-panel-coach {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border: none;
}
.ui-panel-coach .ui-panel-head {
  background: rgba(255,255,255,0.1);
  border-bottom-color: rgba(255,255,255,0.15);
}
.ui-panel-coach .ui-panel-head strong {
  color: #fff;
}
.ui-panel-coach .ui-icon {
  filter: grayscale(1) brightness(10);
}
.ui-coach-msg {
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 12px 0;
}
.ui-coach-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .product-ui-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .product-ui-grid {
    grid-template-columns: 1fr;
  }
  .ui-panel-coach {
    grid-column: auto;
  }
  .dash-grid-mini {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================== Myanmar Language Font Adjustments ====================== */
/* Myanmar script appears larger than Latin/Thai at same font size */
html[lang="my"] {
  font-size: 14px;
}
html[lang="my"] .h-hero {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
}
html[lang="my"] .h-sec {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
html[lang="my"] .hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}
html[lang="my"] .h-builtfor,
html[lang="my"] .flow-headline,
html[lang="my"] .h-founder,
html[lang="my"] .cta-headline {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
html[lang="my"] .pcard p,
html[lang="my"] .audience-card p,
html[lang="my"] .founder-story,
html[lang="my"] .insight-text,
html[lang="my"] .step-description {
  font-size: 0.9rem;
}
html[lang="my"] .cta-sub,
html[lang="my"] .cta-note {
  font-size: 0.95rem;
}
html[lang="my"] .nav-links a,
html[lang="my"] .btn {
  font-size: 0.85rem;
}

/* ====================== 6 AI Agents Grid ====================== */
.agents-section {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-soft);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
}
.h-agents {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.agent-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.agent-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.agent-card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}
.agent-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .agents-section {
    padding: 32px 20px;
  }
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .agents-section {
    padding: 24px 16px;
  }
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .agent-card {
    padding: 20px 16px;
  }
}

/* Myanmar font size for agents */
html[lang="my"] .h-agents {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
html[lang="my"] .agent-card h4 {
  font-size: 0.9rem;
}
html[lang="my"] .agent-card p {
  font-size: 0.8rem;
}
