/* ============ Tokens ============ */
:root{
  --navy:#1B2A4A;
  --navy-deep:#141f38;
  --teal:#01696F;
  --teal-hover:#0C4E54;
  --gold:#C9A227;
  --gold-soft:#d7b64a;
  --paper:#F7F6F2;
  --surface:#ffffff;
  --ink:#20242c;
  --ink-muted:#5a6270;
  --ink-faint:#8b93a1;
  --border:#e4e1d8;
  --border-strong:#d4d1c8;

  --font-display:'Boska','Georgia',serif;
  --font-body:'Satoshi','Inter',system-ui,sans-serif;

  --text-xs:clamp(0.75rem,0.7rem + 0.25vw,0.875rem);
  --text-sm:clamp(0.875rem,0.8rem + 0.35vw,1rem);
  --text-base:clamp(1rem,0.95rem + 0.25vw,1.125rem);
  --text-lg:clamp(1.125rem,1rem + 0.6vw,1.375rem);
  --text-xl:clamp(1.5rem,1.15rem + 1.4vw,2.25rem);
  --text-2xl:clamp(2rem,1.2rem + 2.6vw,3.4rem);

  --wrap:1160px;
  --radius:14px;
  --radius-sm:10px;
  --shadow-sm:0 1px 2px rgba(20,31,56,.06),0 4px 16px rgba(20,31,56,.05);
  --shadow-md:0 10px 40px rgba(20,31,56,.10);
  --ease:cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  font-size:var(--text-base);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 clamp(1.25rem,4vw,2.5rem)}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}

.skip-link{position:absolute;left:-999px;top:0;background:var(--navy);color:#fff;padding:.6rem 1rem;z-index:200;border-radius:0 0 8px 0}
.skip-link:focus{left:0}

/* ============ Type helpers ============ */
.eyebrow{
  font-size:var(--text-xs);letter-spacing:.16em;text-transform:uppercase;
  font-weight:600;color:var(--gold);margin-bottom:1rem;
}
.eyebrow--dark{color:var(--teal)}
.eyebrow--gold{color:var(--gold)}
.section__title{
  font-family:var(--font-display);font-weight:600;
  font-size:var(--text-2xl);line-height:1.08;letter-spacing:-.01em;color:var(--navy);
}
.section__title--light{color:var(--paper)}
.lead{font-size:var(--text-lg);color:var(--ink-muted);max-width:60ch;margin-top:1.1rem;line-height:1.55}
.lead--center{margin-left:auto;margin-right:auto;text-align:center}
.lead--light{color:rgba(247,246,242,.82)}
.accent{color:var(--gold)}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-body);font-weight:600;font-size:var(--text-sm);
  padding:.85rem 1.6rem;border-radius:999px;cursor:pointer;border:1px solid transparent;
  transition:transform .25s var(--ease),background .25s var(--ease),color .25s var(--ease),border-color .25s var(--ease);
}
.btn--primary{background:var(--teal);color:#fff}
.btn--primary:hover{background:var(--teal-hover);transform:translateY(-2px)}
.btn--ghost{background:transparent;color:var(--paper);border-color:rgba(247,246,242,.4)}
.btn--ghost:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}
.btn--gold{background:var(--gold);color:var(--navy);margin-top:2.5rem}
.btn--gold:hover{background:var(--gold-soft);transform:translateY(-2px)}
.btn--wide{width:100%;margin-top:.5rem}

/* ============ Header ============ */
.header{position:sticky;top:0;z-index:100;background:rgba(247,246,242,.82);backdrop-filter:blur(14px);border-bottom:1px solid transparent;transition:border-color .3s var(--ease),background .3s var(--ease)}
.header.is-scrolled{border-bottom-color:var(--border);background:rgba(247,246,242,.94)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:.6rem;color:var(--navy);font-family:var(--font-display);font-weight:600}
.brand__mark{color:var(--navy);flex:none}
.brand__name{font-size:1.35rem;letter-spacing:-.01em}
/* Masthead tagline — the colors we are flying (Bryan, 8/18) */
.brand__text{display:flex;flex-direction:column;line-height:1.15}
.brand__tagline{font-family:var(--font-display);font-style:italic;font-weight:500;font-size:.78rem;letter-spacing:.02em;color:#9c7d16;white-space:nowrap}
@media (max-width:480px){.brand__tagline{font-size:.68rem;white-space:normal}}
.brand__sub{display:inline-flex;align-items:center;margin-left:.6rem;padding:.2rem .62rem;border-radius:4px;background:rgba(201,162,39,.10);border:1px solid rgba(201,162,39,.55);color:var(--gold);font-family:var(--font-body);font-weight:700;font-size:.82rem;letter-spacing:.16em;text-transform:uppercase;line-height:1}
.nav{display:flex;align-items:center;gap:2rem}
.nav__link{font-size:var(--text-sm);color:var(--ink-muted);font-weight:500;white-space:nowrap;transition:color .2s}
.nav__link:hover{color:var(--navy)}
.nav__cta{font-size:var(--text-sm);font-weight:600;color:#fff;background:var(--navy);padding:.6rem 1.15rem;border-radius:999px;transition:background .25s var(--ease)}
.nav__cta:hover{background:var(--teal)}
.nav__toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.nav__toggle span{width:24px;height:2px;background:var(--navy);border-radius:2px;transition:.3s var(--ease)}
.mobile-nav{display:none;flex-direction:column;padding:0 clamp(1.25rem,4vw,2.5rem);background:var(--paper);border-bottom:1px solid var(--border);overflow:hidden;max-height:0;transition:max-height .35s var(--ease)}
.mobile-nav a{padding:.9rem 0;font-size:var(--text-base);font-weight:500;color:var(--navy);border-bottom:1px solid var(--border)}
.mobile-nav a:last-child{border-bottom:0}
.mobile-nav__cta{color:var(--teal)!important;font-weight:600}

/* ============ Hero ============ */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;color:var(--paper);overflow:hidden;background:var(--navy-deep)}
.hero__scene{position:absolute;inset:0;z-index:0}
.hero__img{width:100%;height:100%;object-fit:cover;object-position:30% center}
.hero__veil{position:absolute;inset:0;background:linear-gradient(90deg,rgba(15,23,44,.92) 0%,rgba(15,23,44,.74) 45%,rgba(15,23,44,.5) 100%)}
.hero__content{position:relative;z-index:2;padding-top:3rem;padding-bottom:3rem;display:grid;grid-template-columns:1.15fr .85fr;align-items:center;gap:clamp(2rem,4vw,4rem)}
.hero__title{font-family:var(--font-display);font-weight:700;font-size:var(--text-2xl);line-height:1.04;letter-spacing:-.015em;margin-bottom:1.3rem;text-shadow:0 2px 30px rgba(0,0,0,.25)}
.hero__lede{font-size:var(--text-lg);max-width:52ch;color:rgba(247,246,242,.9);line-height:1.5}
.hero__actions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.hero__note{margin-top:1.6rem;font-size:var(--text-sm);color:rgba(247,246,242,.65)}
.hero__owners{background:rgba(20,31,56,.42);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);border:1px solid rgba(247,246,242,.14);border-radius:var(--radius);padding:clamp(1.6rem,2.2vw,2.4rem)}
.hero__owners-title{font-family:var(--font-display);font-weight:700;font-size:var(--text-xl);line-height:1.08;letter-spacing:-.01em;color:var(--paper);margin:.35rem 0 .9rem}
.hero__owners-lede{font-size:var(--text-base);color:rgba(247,246,242,.86);line-height:1.5}
.hero__points{list-style:none;margin:1.7rem 0 0;padding:0;display:flex;flex-direction:column;gap:.85rem}
.hero__points li{font-size:var(--text-sm);color:rgba(247,246,242,.82);line-height:1.45;padding-left:1.1rem;position:relative}
.hero__points li::before{content:"";position:absolute;left:0;top:.62em;width:.42rem;height:.42rem;border-radius:50%;background:var(--gold)}
.hero__point-key{color:var(--paper);font-weight:600}

/* ============ Sections ============ */
.section{padding:clamp(4rem,8vw,7.5rem) 0;scroll-margin-top:88px}
.voice{background:var(--surface)}
.features{background:var(--paper)}
.security{background:var(--navy);color:var(--paper)}
.modes{background:var(--surface)}
.owners{background:var(--navy);color:var(--paper)}
.contact{background:var(--paper)}

/* Voice */
.voice__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.voice__list{list-style:none;margin-top:2rem;display:flex;flex-direction:column;gap:1.15rem}
.voice__list li{position:relative;padding-left:1.9rem;font-size:var(--text-base);color:var(--ink-muted);line-height:1.5}
.voice__list li::before{content:"";position:absolute;left:0;top:.5em;width:9px;height:9px;border-radius:50%;background:var(--gold)}
.voice__list strong{color:var(--navy);font-weight:600}
/* The creed — hairline card, 4px gold top bar (site pattern) */
.voice__creed{display:flex;align-items:flex-start;gap:.95rem;margin-top:2.1rem;padding:1.15rem 1.35rem 1.2rem;background:var(--paper);border:1px solid var(--border);border-top:4px solid var(--gold);border-radius:var(--radius);box-shadow:var(--shadow-sm)}
.voice__creed-icon{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;background:var(--navy);color:var(--gold)}
.voice__creed-text{margin:0;font-size:var(--text-base);color:var(--ink-muted);line-height:1.55}
.voice__creed-text strong{color:var(--navy);font-weight:600}
@media (max-width:640px){.voice__creed{flex-direction:column;gap:.7rem}}

/* Demo loop */
.demo{display:flex;flex-direction:column;align-items:center}
.demo__frame{width:100%;max-width:420px;background:var(--navy);border-radius:var(--radius);box-shadow:var(--shadow-md);overflow:hidden}
.demo__bar{display:flex;align-items:center;gap:.4rem;padding:.75rem 1rem;background:rgba(255,255,255,.04);border-bottom:1px solid rgba(255,255,255,.08)}
.demo__dot{width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.22)}
.demo__label{margin-left:auto;font-size:var(--text-xs);color:rgba(247,246,242,.6);letter-spacing:.04em}
.demo__stage{padding:1.8rem 1.4rem 2rem;display:flex;flex-direction:column;align-items:center;gap:1.4rem;min-height:290px}
.demo__mic{position:relative;width:64px;height:64px;border-radius:50%;background:var(--teal);color:var(--paper);display:flex;align-items:center;justify-content:center;flex:none}
.demo__mic .ring{position:absolute;inset:0;border-radius:50%;border:2px solid var(--gold);opacity:0;animation:pulse 3.2s ease-out infinite}
.demo__mic .ring--2{animation-delay:1.6s}
@keyframes pulse{0%{transform:scale(1);opacity:.6}80%{transform:scale(2.1);opacity:0}100%{opacity:0}}
.demo__cards{position:relative;width:100%;height:120px}
.demo__card{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;gap:.35rem;padding:1rem 1.15rem;border-radius:var(--radius-sm);background:rgba(255,255,255,.06);opacity:0;transform:translateY(10px);animation:cycle 12.8s var(--ease) infinite}
.demo__card[data-step="1"]{animation-delay:0s}
.demo__card[data-step="2"]{animation-delay:3.2s}
.demo__card[data-step="3"]{animation-delay:6.4s}
.demo__card[data-step="4"]{animation-delay:9.6s}
@keyframes cycle{0%{opacity:0;transform:translateY(10px)}4%{opacity:1;transform:translateY(0)}22%{opacity:1;transform:translateY(0)}26%{opacity:0;transform:translateY(-8px)}100%{opacity:0}}
.demo__said{color:var(--paper);font-weight:500;font-size:var(--text-base)}
.demo__done{color:var(--gold-soft);font-weight:600;font-size:var(--text-base)}
.demo__sub{color:rgba(247,246,242,.62);font-size:var(--text-sm)}
.demo__caption{margin-top:1rem;font-size:var(--text-sm);color:var(--ink-faint)}

/* Features cards */
.features .lead{margin-bottom:3rem}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:0 1.6rem 1.7rem;box-shadow:var(--shadow-sm);transition:transform .3s var(--ease),box-shadow .3s var(--ease);overflow:hidden}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.card__top{height:4px;margin:0 -1.6rem 1.6rem;background:var(--bar,var(--teal))}
.card h3{font-size:var(--text-lg);color:var(--navy);font-weight:600;margin-bottom:.6rem;letter-spacing:-.005em}
.card p{font-size:var(--text-base);color:var(--ink-muted);line-height:1.5}

/* Modes */
.modes__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.toggle{display:inline-flex;background:var(--paper);border:1px solid var(--border-strong);border-radius:999px;padding:5px;gap:4px}
.toggle__opt{font-family:var(--font-body);font-weight:600;font-size:var(--text-sm);color:var(--ink-muted);background:transparent;border:0;border-radius:999px;padding:.6rem 1.25rem;cursor:pointer;transition:background .25s var(--ease),color .25s var(--ease)}
.toggle__opt.is-active{background:var(--navy);color:#fff}
.modes__panel{margin-top:1.6rem;background:var(--paper);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem 1.7rem;min-height:200px}
.modes__panel ul{list-style:none;display:flex;flex-direction:column;gap:.9rem}
.modes__panel li{position:relative;padding-left:1.7rem;font-size:var(--text-base);color:var(--navy);font-weight:500}
.modes__panel li::before{content:"";position:absolute;left:0;top:.55em;width:8px;height:8px;border-radius:2px;background:var(--teal)}

/* ============ Configurator ============ */
.configurator{background:var(--paper)}
.configurator .lead{margin-bottom:2.4rem}

.cfg-notice{max-width:var(--wrap);margin:0 auto 2.6rem;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:1.2rem 1.4rem;display:flex;flex-direction:column;gap:.5rem}
.cfg-notice__label{display:inline-block;align-self:flex-start;font-size:var(--text-xs);font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);background:rgba(1,105,111,.08);border-radius:999px;padding:.28rem .7rem}
.cfg-notice p{font-size:var(--text-sm);color:var(--ink-muted);line-height:1.55;margin:0}
.cfg-notice strong{color:var(--navy);font-weight:600}

.cfg-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:1.5rem;align-items:start}
.cfg-panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:1.7rem 1.7rem 1.9rem;overflow:hidden}
.cfg-panel__title{font-family:var(--font-display);font-size:var(--text-lg);font-weight:600;color:var(--navy);letter-spacing:-.005em;margin-bottom:1.1rem}
.cfg-panel__title--spaced{margin-top:1.9rem}

.cfg-fields{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.cfg-field{display:flex;flex-direction:column;gap:.4rem}
.cfg-field--full{grid-column:1/-1}
.cfg-field label{font-size:var(--text-sm);font-weight:600;color:var(--navy)}
.cfg-field input{font-family:var(--font-body);font-size:var(--text-base);color:var(--ink);background:var(--surface);border:1px solid var(--border-strong);border-radius:var(--radius-sm);padding:.7rem .85rem;transition:border-color .2s var(--ease),box-shadow .2s var(--ease)}
.cfg-field input:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(1,105,111,.14)}
.cfg-field__hint{font-size:var(--text-xs);color:var(--ink-faint);line-height:1.45}

/* Unified-platform block (replaces the old on/off platform toggles) */
.cfg-unified{background:var(--paper);border:1px solid var(--border);border-radius:var(--radius-sm);padding:1.05rem 1.15rem}
.cfg-unified__lead{font-size:var(--text-sm);color:var(--ink-muted);line-height:1.55;margin-bottom:.9rem}
.cfg-unified__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.7rem}
.cfg-unified__list li{position:relative;padding-left:1.35rem;display:flex;flex-direction:column;gap:.1rem}
.cfg-unified__list li::before{content:"";position:absolute;left:0;top:.42em;width:.5rem;height:.5rem;border-radius:50%;background:var(--teal)}
.cfg-unified__name{font-size:var(--text-base);font-weight:600;color:var(--navy)}
.cfg-unified__sub{font-size:var(--text-xs);color:var(--ink-muted)}

/* Toggle switch */
.cfg-switch{position:relative;flex:none;width:44px;height:24px;display:inline-block}
.cfg-switch__input{position:absolute;inset:0;width:100%;height:100%;margin:0;opacity:0;cursor:pointer;z-index:2}
.cfg-switch__track{position:absolute;inset:0;background:var(--border-strong);border-radius:999px;transition:background .25s var(--ease)}
.cfg-switch__track::after{content:"";position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#fff;box-shadow:0 1px 2px rgba(20,31,56,.25);transition:transform .25s var(--ease)}
.cfg-switch__input:checked + .cfg-switch__track{background:var(--teal)}
.cfg-switch__input:checked + .cfg-switch__track::after{transform:translateX(20px)}
.cfg-switch__input:focus-visible + .cfg-switch__track{box-shadow:0 0 0 3px rgba(1,105,111,.28)}
.cfg-switch__input:disabled + .cfg-switch__track{opacity:.55;cursor:not-allowed}

/* Estimate card */
.cfg-estimate{display:flex;flex-direction:column;position:sticky;top:88px}
.cfg-estimate__label{font-size:var(--text-xs);letter-spacing:.14em;text-transform:uppercase;font-weight:600;color:var(--teal)}
.cfg-estimate__figure{font-family:var(--font-display);font-weight:700;color:var(--navy);line-height:1;margin:.5rem 0 .3rem;display:flex;align-items:baseline;gap:.3rem}
.cfg-estimate__figure #cfgCombined{font-size:clamp(2.6rem,4.5vw,3.6rem);letter-spacing:-.015em}
.cfg-estimate__per{font-size:var(--text-lg);color:var(--ink-muted);font-family:var(--font-body);font-weight:500}
.cfg-breakdown{margin-top:1.3rem;border-top:1px solid var(--border);padding-top:1rem;display:flex;flex-direction:column;gap:.7rem}
.cfg-break__row{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.cfg-break__name{font-size:var(--text-sm);color:var(--ink-muted);font-weight:500}
.cfg-break__val{font-size:var(--text-base);color:var(--navy);font-weight:600;font-variant-numeric:tabular-nums}
.cfg-break__row.is-off .cfg-break__name,.cfg-break__row.is-off .cfg-break__val{color:var(--ink-faint);font-weight:500}
.cfg-floor-note{margin-top:1rem;font-size:var(--text-xs);color:var(--ink-muted);line-height:1.5;background:rgba(201,162,39,.1);border-radius:var(--radius-sm);padding:.65rem .8rem;display:none}
.cfg-floor-note.is-visible{display:block}
.cfg-breakdown__caption{margin-top:1.3rem;margin-bottom:-.3rem;font-size:var(--text-xs);letter-spacing:.06em;text-transform:uppercase;font-weight:600;color:var(--ink-faint)}
.cfg-breakdown{margin-top:.7rem}
/* Introductory offer callout */
.cfg-intro{margin-top:1.4rem;background:var(--navy);color:var(--paper);border-radius:var(--radius-sm);padding:1.1rem 1.15rem;text-align:center}
.cfg-intro__badge{display:inline-block;font-size:var(--text-xs);letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--navy);background:var(--gold);padding:.28rem .7rem;border-radius:999px}
.cfg-intro__headline{margin-top:.7rem;font-family:var(--font-display);font-weight:600;font-size:var(--text-lg);color:#fff}
.cfg-intro__figure{margin-top:.35rem;display:flex;align-items:baseline;justify-content:center;gap:.5rem;flex-wrap:wrap}
.cfg-intro__was{font-size:var(--text-base);color:rgba(247,246,242,.55);text-decoration:line-through;font-weight:500}
.cfg-intro__now{font-family:var(--font-display);font-weight:700;font-size:clamp(1.8rem,3vw,2.3rem);color:var(--gold-soft);letter-spacing:-.01em;font-variant-numeric:tabular-nums}
.cfg-intro__per{font-size:var(--text-sm);color:rgba(247,246,242,.75);font-weight:500}
.cfg-intro__fine{margin-top:.6rem;font-size:var(--text-xs);color:rgba(247,246,242,.6);line-height:1.5}
.cfg-estimate .btn--wide{margin-top:1.4rem}
.cfg-estimate__fine{margin-top:.8rem;font-size:var(--text-xs);color:var(--ink-faint);text-align:center}

/* Modules */
.cfg-modules{margin-top:1.5rem;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:1.7rem;overflow:hidden}
.cfg-modules__intro{font-size:var(--text-sm);color:var(--ink-muted);line-height:1.55;max-width:82ch;margin-top:.3rem}
.cfg-modules__cols{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:1.6rem}
.cfg-modules__coltitle{font-size:var(--text-xs);letter-spacing:.12em;text-transform:uppercase;font-weight:700;color:var(--teal);margin-bottom:.9rem}
.cfg-mod{border:1px solid var(--border);border-radius:var(--radius-sm);padding:.9rem 1rem;margin-bottom:.7rem;background:var(--surface)}
.cfg-mod--base{background:var(--paper)}
.cfg-mod__head{display:flex;align-items:center;gap:.6rem;margin:0}
.cfg-mod--opt .cfg-mod__head{cursor:pointer}
.cfg-mod__num{flex:none;width:22px;height:22px;border-radius:50%;background:rgba(27,42,74,.08);color:var(--navy);font-size:var(--text-xs);font-weight:700;display:flex;align-items:center;justify-content:center;font-variant-numeric:tabular-nums}
.cfg-mod__name{font-size:var(--text-sm);font-weight:600;color:var(--navy);flex:1 1 auto}
.cfg-mod__tag{flex:none;font-size:var(--text-xs);font-weight:600;color:var(--teal);background:rgba(1,105,111,.08);border-radius:999px;padding:.2rem .6rem}
.cfg-mod .cfg-switch{margin-left:auto}
.cfg-mod__blurb{font-size:var(--text-xs);color:var(--ink-muted);line-height:1.5;margin-top:.5rem}
.cfg-mod__note{font-size:var(--text-xs);line-height:1.45;margin-top:.5rem;color:var(--teal);max-height:0;overflow:hidden;opacity:0;transition:max-height .3s var(--ease),opacity .3s var(--ease)}
.cfg-mod__note.is-visible{max-height:4rem;opacity:1}
.cfg-mod__note[data-kind="block"],.cfg-mod__note[data-kind="lock"]{color:var(--gold)}
.cfg-mod.is-locked{border-color:var(--border-strong);background:var(--paper)}

.cfg-active{margin-top:1.6rem;border-top:1px solid var(--border);padding-top:1.4rem}
.cfg-active__title{font-size:var(--text-sm);font-weight:600;color:var(--navy);margin-bottom:1rem}
.cfg-active__list{list-style:none;display:flex;flex-wrap:wrap;gap:.6rem;padding:0;margin:0}
.cfg-chip{display:inline-flex;align-items:center;gap:.45rem;background:var(--paper);border:1px solid var(--border);border-radius:999px;padding:.35rem .75rem .35rem .4rem}
.cfg-chip__num{flex:none;width:18px;height:18px;border-radius:50%;background:rgba(27,42,74,.1);color:var(--navy);font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center;font-variant-numeric:tabular-nums}
.cfg-chip__name{font-size:var(--text-xs);font-weight:600;color:var(--navy)}
.cfg-chip__tag{font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;border-radius:999px;padding:.12rem .45rem}
.cfg-chip__tag--base{color:var(--ink-muted);background:rgba(27,42,74,.07)}
.cfg-chip__tag--sel{color:var(--teal);background:rgba(1,105,111,.1)}
.cfg-active__fine{margin-top:1rem;font-size:var(--text-xs);color:var(--ink-faint);line-height:1.5}

/* Security */
.security .eyebrow{color:var(--gold)}
.security__head{max-width:60ch}
.security__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:2.8rem}
.sec-card{background:rgba(247,246,242,.05);border:1px solid rgba(247,246,242,.1);border-radius:var(--radius);padding:1.8rem 1.7rem;transition:transform .3s var(--ease),background .3s var(--ease)}
.sec-card:hover{transform:translateY(-4px);background:rgba(247,246,242,.08)}
.sec-card__icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(1,105,111,.28);color:var(--gold-soft);margin-bottom:1.1rem}
.sec-card h3{font-size:var(--text-lg);color:var(--paper);font-weight:600;margin-bottom:.55rem;letter-spacing:-.005em}
.sec-card p{font-size:var(--text-base);color:rgba(247,246,242,.78);line-height:1.5}
.security__note{margin-top:2.4rem;max-width:70ch;font-size:var(--text-sm);color:rgba(247,246,242,.6);font-style:italic;line-height:1.55}

/* Owners */
.owners__inner{text-align:center;display:flex;flex-direction:column;align-items:center}
.owners .eyebrow{color:var(--gold)}
.stats{display:flex;flex-wrap:wrap;justify-content:center;gap:clamp(2rem,6vw,5rem);margin-top:3rem}
.stat{display:flex;flex-direction:column;gap:.4rem}
.stat__num{font-family:var(--font-display);font-size:clamp(2.4rem,5vw,3.6rem);font-weight:700;color:var(--gold)}
.stat__label{font-size:var(--text-sm);color:rgba(247,246,242,.78);max-width:16ch;margin:0 auto}
.stat__quip{font-size:var(--text-sm);font-style:italic;color:var(--gold-soft);max-width:24ch;margin:.4rem auto 0}

/* Contact */
.contact__inner{max-width:720px;margin:0 auto;text-align:center}
.contact .section__title{text-align:center}
.lead-form{margin-top:2.5rem;display:grid;grid-template-columns:1fr 1fr;gap:1.1rem;text-align:left}
.field{display:flex;flex-direction:column;gap:.4rem}
.field--full{grid-column:1/-1}
.lead-form label{font-size:var(--text-sm);font-weight:600;color:var(--navy)}
.lead-form input,.lead-form select,.lead-form textarea{
  font-family:var(--font-body);font-size:var(--text-base);color:var(--ink);
  background:var(--surface);border:1px solid var(--border-strong);border-radius:var(--radius-sm);
  padding:.75rem .9rem;transition:border-color .2s var(--ease),box-shadow .2s var(--ease);
}
.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(1,105,111,.14)}
.lead-form textarea{resize:vertical}
.lead-form .btn{grid-column:1/-1}
.lead-form__hint{grid-column:1/-1;text-align:center;font-size:var(--text-xs);color:var(--ink-faint);margin-top:.2rem}
.field--hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.lead-form__success{grid-column:1/-1;text-align:center;padding:1.5rem .5rem}
.lead-form__success h3{color:var(--navy);font-size:var(--text-lg);margin:0 0 .5rem}
.lead-form__success p{color:var(--ink-muted);margin:0}

/* Footer */
.footer{background:var(--navy-deep);color:rgba(247,246,242,.7);padding:3rem 0}
.footer__inner{display:flex;flex-direction:column;align-items:center;gap:.8rem;text-align:center}
.brand--footer{color:var(--paper)}
.brand--footer .brand__mark{color:var(--paper)}
.footer__tag{font-size:var(--text-sm);color:rgba(247,246,242,.72)}
.footer__disclaimer{font-size:var(--text-xs);color:rgba(247,246,242,.5);max-width:52ch;line-height:1.55}
.footer__legal{font-size:var(--text-xs);color:rgba(247,246,242,.5);max-width:60ch;line-height:1.55}

/* Reveal on scroll */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.is-in{opacity:1;transform:none}

/* ============ Responsive ============ */
@media (max-width:900px){
  .voice__grid,.modes__grid{grid-template-columns:1fr}
  .cfg-grid{grid-template-columns:1fr}
  .cfg-estimate{position:static}
  .cfg-modules__cols{grid-template-columns:1fr}
  .security__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .nav{display:none}
  .nav__toggle{display:flex}
  .mobile-nav.is-open{display:flex}
  .header.nav-open .nav__toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .header.nav-open .nav__toggle span:nth-child(2){opacity:0}
  .header.nav-open .nav__toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .hero__veil{background:linear-gradient(180deg,rgba(20,31,56,.55) 0%,rgba(20,31,56,.82) 100%)}
  .hero__content{grid-template-columns:1fr}
  .hero__owners{display:none}
  .demo{margin-top:2.5rem}
}
@media (max-width:560px){
  .cards{grid-template-columns:1fr}
  .cfg-fields{grid-template-columns:1fr}
  .lead-form{grid-template-columns:1fr}
  .hero{min-height:88vh}
}

/* ============ LAMP page ============ */
/* Active nav state (shared) */
.nav__link.is-active{color:var(--navy);font-weight:600}
.mobile-nav a.is-active{color:var(--teal)}

/* One continuous lighthouse scene beneath the whole page — the single
   image is fixed, so every dark section reveals the same backdrop as you
   scroll: one brain beneath both systems. Light sections cover it. */
.lamp-body{background:var(--paper)}
.lamp-scene{position:fixed;inset:0;z-index:-1;overflow:hidden;background:var(--navy-deep)}
.lamp-scene__img{width:100%;height:100%;object-fit:cover;object-position:30% center}

/* Dark bands share the fixed scene via a translucent navy veil so the
   image reads seamless through hero -> principle -> ecosystem. */
.lamp-hero,.principle,.ecosystem{position:relative;background:transparent}
.lamp-hero::before,.principle::before,.ecosystem::before{content:"";position:absolute;inset:0;z-index:0;background:rgba(20,31,56,.82)}
.lamp-hero > *,.principle > *,.ecosystem > *{position:relative;z-index:1}

/* LAMP hero */
.lamp-hero{color:var(--paper);padding:clamp(5rem,10vw,8.5rem) 0 clamp(4rem,8vw,6.5rem)}
.lamp-hero__inner{max-width:62ch}
.lamp-hero__eyebrow{font-size:var(--text-base);font-weight:700;letter-spacing:.15em;margin-bottom:.35rem}
.lamp-hero__title{display:flex;flex-direction:column;gap:.35rem;margin-bottom:1.3rem}
.lamp-hero__acronym{font-family:var(--font-display);font-weight:700;font-size:clamp(3.2rem,2.4rem + 3.4vw,5rem);line-height:.98;letter-spacing:.01em;color:var(--gold)}
.lamp-hero__fullname{font-family:var(--font-display);font-weight:700;font-size:clamp(1.25rem,0.72rem + 1.55vw,1.95rem);line-height:1.1;letter-spacing:-.01em;color:var(--paper);white-space:nowrap}
@media (max-width:600px){.lamp-hero__fullname{white-space:normal;max-width:18ch}}
.lamp-hero__lede{font-size:clamp(1.25rem,1.05rem + 0.9vw,1.6rem);max-width:56ch;color:rgba(247,246,242,.92);line-height:1.5}
.lamp-hero__actions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.lamp-hero__note{margin-top:1.6rem;font-size:var(--text-sm);color:rgba(247,246,242,.65)}

/* Governing principle band — calm, over the shared scene */
.principle{color:var(--paper)}
.principle__inner{max-width:70ch}
.principle__body{font-size:var(--text-lg);color:rgba(247,246,242,.86);line-height:1.55;margin-top:1.4rem;max-width:66ch}

/* Modules showcase */
.modules-showcase{background:var(--paper)}
.modules-showcase .lead{margin-bottom:3rem}
.modules-group{margin-top:1rem}
.modules-group + .modules-group{margin-top:3.2rem}
.modules-group__title{font-size:var(--text-xs);letter-spacing:.12em;text-transform:uppercase;font-weight:700;color:var(--teal);margin-bottom:1.4rem}
.module-num{display:block;font-size:var(--text-xs);letter-spacing:.1em;text-transform:uppercase;font-weight:700;color:var(--ink-faint);font-variant-numeric:tabular-nums;margin-bottom:.5rem}
.modules-showcase .card{display:flex;flex-direction:column}

/* Where the discipline shows */
.discipline{background:var(--surface)}
.discipline .lead{margin-bottom:3rem}
.depth{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;align-items:start}
.depth__block{background:var(--paper);border:1px solid var(--border);border-radius:var(--radius);padding:1.7rem 1.8rem;box-shadow:var(--shadow-sm)}
.depth__block:last-child:nth-child(odd){grid-column:1/-1}
.depth__label{font-family:var(--font-display);font-size:var(--text-lg);font-weight:600;color:var(--navy);letter-spacing:-.005em;margin-bottom:.7rem}
.depth__outcome{font-size:var(--text-base);color:var(--ink-muted);line-height:1.55}

/* One ecosystem, one price — over the shared scene */
.ecosystem{color:var(--paper)}
.ecosystem__inner{max-width:64ch;text-align:center;margin:0 auto;display:flex;flex-direction:column;align-items:center}
.ecosystem .section__title{text-align:center}
.ecosystem__body{font-size:var(--text-lg);color:rgba(247,246,242,.86);line-height:1.55;margin-top:1.4rem;max-width:60ch}

/* Closing CTA */
.closing{background:var(--paper)}
.closing__inner{max-width:720px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center}
.closing .section__title{text-align:center}
.closing .btn{margin-top:2rem}

/* Homepage cross-link band */
.crosslink{background:var(--surface)}
.crosslink__inner{max-width:var(--wrap);margin:0 auto}
.crosslink__grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:1.8rem}
.crosslink__card{background:var(--paper);border:1px solid var(--border);border-radius:var(--radius);padding:0 1.8rem 1.7rem;box-shadow:var(--shadow-sm);overflow:hidden}
.crosslink__card .card__top{height:4px;margin:0 -1.8rem 1.6rem;background:var(--bar,var(--teal))}
.crosslink__card h3{font-family:var(--font-display);font-size:var(--text-lg);font-weight:600;color:var(--navy);margin-bottom:.4rem;letter-spacing:-.005em}
.crosslink__card p{font-size:var(--text-base);color:var(--ink-muted);line-height:1.5}
.crosslink__link{display:inline-flex;align-items:center;gap:.4rem;margin-top:1.6rem;font-size:var(--text-sm);font-weight:600;color:var(--teal);transition:color .2s var(--ease),gap .2s var(--ease)}
.crosslink__link:hover{color:var(--teal-hover);gap:.7rem}

@media (max-width:900px){
  .depth{grid-template-columns:1fr}
  .depth__block:last-child:nth-child(odd){grid-column:auto}
  .crosslink__grid{grid-template-columns:1fr}
}

/* ---------- Compliance / Legal page ---------- */
.footer__links{font-size:var(--text-sm)}
.footer__links a{color:var(--gold);font-weight:500;transition:color .2s}
.footer__links a:hover{color:var(--gold-soft)}
.legal-hero{padding:clamp(4.5rem,9vw,7rem) 0 clamp(2rem,4vw,3rem);background:var(--paper)}
.legal-updated{margin-top:1.4rem;font-size:var(--text-xs);color:var(--ink-faint);letter-spacing:.04em;text-transform:uppercase}
.legal-section{padding:clamp(2.5rem,5vw,4rem) 0}
.legal-section--alt{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.legal-h2{font-family:var(--font-display);font-weight:700;font-size:var(--text-xl);color:var(--navy);letter-spacing:-.01em;margin-bottom:1.2rem}
.legal-h3{font-family:var(--font-body);font-weight:700;font-size:var(--text-base);color:var(--navy);margin-bottom:.55rem}
.legal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;margin-top:1.8rem}
.legal-card{background:var(--surface);border-top:3px solid var(--teal);border-radius:var(--radius-sm);box-shadow:var(--shadow-sm);padding:1.5rem 1.4rem}
.legal-card p{font-size:var(--text-sm);color:var(--ink-muted);line-height:1.6}
.legal-body{font-size:var(--text-base);color:var(--ink-muted);line-height:1.65;max-width:75ch;margin-bottom:1.1rem}
.legal-body a,.legal-list a{color:var(--teal);font-weight:500}
.legal-body a:hover,.legal-list a:hover{color:var(--teal-hover)}
.legal-list{list-style:none;margin:1.6rem 0 0;padding:0;display:flex;flex-direction:column;gap:1.1rem;max-width:80ch}
.legal-list li{font-size:var(--text-sm);color:var(--ink-muted);line-height:1.65;padding-left:1.35rem;position:relative}
.legal-list li::before{content:"";position:absolute;left:0;top:.55em;width:.5rem;height:.5rem;border-radius:50%;background:var(--gold)}
.legal-list strong{color:var(--navy)}
.legal-mail{white-space:nowrap}
@media (max-width:900px){.legal-grid{grid-template-columns:1fr}}

/* ── Platform card file (features redesign) ─────────────────── */
.drawer-label{display:flex;align-items:center;gap:1rem;margin:3.4rem 0 .5rem}
.drawer-label__rule{flex:1;height:1px;background:#d4d1c8}
.drawer-label__text{font-size:.8rem;letter-spacing:.2em;text-transform:uppercase;font-weight:700;color:var(--navy)}
.drawer-label__tag{font-size:.8rem;color:#8b93a1;font-weight:500;letter-spacing:.02em}
.drawer-sub{text-align:center;color:var(--ink-muted);font-size:1.02rem;margin:.4rem auto 1.8rem;max-width:58ch}
.basics{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.fcard{position:relative;background:var(--surface);border:1px solid var(--border);border-radius:10px;box-shadow:var(--shadow-sm);padding:0 1.3rem 1.15rem;margin-top:14px;transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.fcard:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.fcard__tab{position:absolute;top:-14px;left:14px;height:14px;width:92px;background:var(--surface);border:1px solid var(--border);border-bottom:none;border-radius:8px 8px 0 0}
.fcard__top{height:4px;margin:0 -1.3rem 1rem;background:var(--bar,var(--teal))}
.fcard h3{font-size:1.05rem;color:var(--navy);font-weight:700;letter-spacing:-.005em;margin-bottom:.35rem}
.fcard p{font-size:.92rem;color:var(--ink-muted);line-height:1.45}
.fcard__std{display:inline-block;margin-top:.7rem;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;color:#8b93a1}
.fcard__std::before{content:"\2713  ";color:var(--teal)}
.cabinet{margin-top:.4rem}
.cabinet__tabs{display:flex;gap:6px;align-items:flex-end;padding:0 10px;overflow-x:auto;scrollbar-width:none}
.cabinet__tabs::-webkit-scrollbar{display:none}
.ctab{font-family:inherit;cursor:pointer;font-size:.85rem;font-weight:600;color:var(--ink-muted);background:#efede6;border:1px solid var(--border);border-bottom:none;border-radius:10px 10px 0 0;padding:.55rem 1.05rem .65rem;white-space:nowrap;transition:background .2s var(--ease),color .2s var(--ease)}
.ctab:hover{background:#f5f3ec;color:var(--navy)}
.ctab--open{background:var(--surface);color:var(--navy);font-weight:700;padding-bottom:.85rem;position:relative;top:1px;box-shadow:0 -2px 10px rgba(20,31,56,.05)}
.ctab--open::before{content:"";position:absolute;left:0;right:0;top:0;height:4px;border-radius:10px 10px 0 0;background:var(--gold)}
.folder{background:var(--surface);border:1px solid var(--border);border-radius:0 14px 14px 14px;box-shadow:var(--shadow-md);padding:1.9rem 2.1rem 2rem}
.folder__head{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;margin-bottom:1.3rem}
.folder__title{font-family:var(--font-display);font-weight:600;font-size:1.7rem;color:var(--navy);letter-spacing:-.01em}
.folder__count{font-size:.8rem;color:#8b93a1;letter-spacing:.1em;text-transform:uppercase;font-weight:600}
.folder__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem 1.6rem}
.frow{display:flex;gap:.8rem;align-items:flex-start;padding:.7rem .2rem;border-bottom:1px solid #f0eee7}
.frow:nth-last-child(-n+2){border-bottom:none}
.frow__dot{flex:none;width:8px;height:8px;border-radius:50%;background:var(--gold);margin-top:.55rem}
.frow b{color:var(--navy);font-weight:700;font-size:.98rem}
.frow span{display:block;color:var(--ink-muted);font-size:.9rem;line-height:1.45}
.folder__foot{margin-top:1.4rem;font-size:.9rem;color:#8b93a1}
.folder__foot b{color:var(--teal);font-weight:700}
.kicker{text-align:center;margin-top:2.6rem;font-family:var(--font-display);font-size:1.35rem;color:var(--navy)}
.kicker__accent{color:var(--teal);font-weight:600}
@media (max-width:900px){
  .basics{grid-template-columns:1fr 1fr}
  .folder__grid{grid-template-columns:1fr}
  .frow:nth-last-child(-n+2){border-bottom:1px solid #f0eee7}
  .frow:last-child{border-bottom:none}
}
@media (max-width:560px){
  .basics{grid-template-columns:1fr}
  .folder{padding:1.4rem 1.2rem 1.5rem;border-radius:0 12px 12px 12px}
  .folder__title{font-size:1.4rem}
}
/* features header centered to match the card-file composition */
.features .eyebrow,.features .section__title{text-align:center}
.features .lead{margin-bottom:0}
