/* =====================================================
   EXCLUSIVE BRAND DISPLAY FONT (Tw Cen MT)
   Used only on the wordmark + major section titles
===================================================== */
@font-face{
  font-family:'MYKV Display';
  src:url('../fonts/twcen.woff2') format('woff2'),
      url('../fonts/twcen.woff') format('woff');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

/* =====================================================
   TOKENS
===================================================== */
:root{
  --navy:        #12202D;
  --navy-deep:   #0C1720;
  --navy-panel:  #1B2E3D;
  --navy-line:   rgba(210,165,87,0.22);
  --gold:        #D2A557;
  --gold-soft:   rgba(210,165,87,0.12);
  --gold-bright: #E3BE78;
  --cream:       #F5F2EC;
  --cream-muted: #6C7580;
  --ink:         #12202D;
  --text:        #EAEFF3;
  --muted:       #9BA8B2;
  --muted-dim:   #66727C;
  --white:       #FFFFFF;

  --font-display:'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-brand:  'MYKV Display', 'Montserrat', sans-serif;

  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

body{
  background:var(--navy);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--gold); color:var(--navy-deep); }

:focus-visible{
  outline:2px solid var(--gold-bright);
  outline-offset:3px;
  border-radius:2px;
}

.shell{ max-width:var(--shell); margin:0 auto; padding-inline:var(--gutter); }

/* Shared eyebrow */
.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-family:var(--font-body);
  font-size:0.72rem; font-weight:700;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold);
}
.eyebrow::before{ content:''; width:26px; height:1px; background:var(--gold); opacity:0.8; }
.eyebrow.on-light{ color:#A9812F; }
.eyebrow.on-light::before{ background:#A9812F; }

/* Section heading */
.h-display{
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.04;
  color:var(--white);
}

/* =====================================================
   NAVBAR
===================================================== */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:100;
  height:74px;
  display:flex; align-items:center;
  transition:background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(12,23,32,0.82);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:var(--navy-line);
}
.nav .shell{ display:flex; align-items:center; justify-content:space-between; width:100%; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:38px; height:38px; }
.brand .word,.foot-brand .word{
  font-family:var(--font-brand);
  font-weight:400; font-size:1.24rem; letter-spacing:0.14em;
  color:var(--white); line-height:1;
}
.brand .word b,.foot-brand .word b{ color:var(--gold); font-weight:400; }
.brand .word small,.foot-brand .word small{
  display:block; font-family:var(--font-body); font-weight:500;
  font-size:0.54rem; letter-spacing:0.34em; color:var(--muted);
  margin-top:5px; text-transform:uppercase;
}
.foot-word{
  font-family:var(--font-brand) !important; font-weight:400; font-size:1.24rem;
  letter-spacing:0.14em; color:var(--white) !important; line-height:1.2;
  margin-bottom:14px;
}
.foot-word b{ color:var(--gold) !important; font-weight:400; }
.foot-word small{
  display:block !important; font-family:var(--font-body) !important; font-weight:500;
  font-size:0.54rem; letter-spacing:0.34em; color:var(--muted) !important;
  margin-top:6px; text-transform:uppercase;
}

.nav-links{ display:flex; align-items:center; gap:34px; list-style:none; }
.nav-links a{
  font-size:0.82rem; font-weight:500; letter-spacing:0.01em;
  color:var(--muted); transition:color .2s;
  position:relative; padding:4px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-2px;
  width:0; height:1px; background:var(--gold); transition:width .28s var(--ease);
}
.nav-links a:hover{ color:var(--white); }
.nav-links a:hover::after{ width:100%; }

.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:600; font-size:0.82rem;
  color:var(--navy-deep) !important;
  background:var(--gold);
  padding:11px 20px; border-radius:var(--r-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow:0 6px 20px rgba(210,165,87,0.18);
}
.nav-cta:hover{ background:var(--gold-bright); transform:translateY(-1px); box-shadow:0 10px 26px rgba(210,165,87,0.28); }
.nav-cta svg{ width:15px; height:15px; }

/* Hamburger */
.burger{
  display:none; flex-direction:column; gap:5px;
  width:42px; height:42px; align-items:center; justify-content:center;
  background:transparent; border:1px solid var(--navy-line); border-radius:var(--r-sm);
  cursor:pointer;
}
.burger span{ display:block; width:20px; height:2px; background:var(--text); border-radius:2px; transition:transform .3s var(--ease), opacity .3s; }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer{
  position:fixed; inset:74px 0 auto 0; z-index:99;
  background:var(--navy-deep);
  border-bottom:1px solid var(--navy-line);
  padding:20px var(--gutter) 34px;
  display:flex; flex-direction:column; gap:2px;
  transform:translateY(-14px); opacity:0; pointer-events:none;
  transition:transform .34s var(--ease), opacity .34s var(--ease);
}
.drawer.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.drawer a{
  font-size:1rem; font-weight:500; color:var(--muted);
  padding:15px 4px; border-bottom:1px solid rgba(255,255,255,0.05);
  transition:color .2s;
}
.drawer a:hover{ color:var(--white); }
.drawer .nav-cta{ margin-top:18px; justify-content:center; padding:15px; border-bottom:none; color:var(--navy-deep) !important; }

/* =====================================================
   HERO — 3-image slider
===================================================== */
.hero{
  position:relative; min-height:100svh;
  display:flex; align-items:flex-end;
  padding-bottom:clamp(48px, 9vh, 110px); padding-top:120px;
  overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.06);
  transition:opacity 1.4s var(--ease), transform 7s linear;
}
.hero-slide.active{ opacity:1; transform:scale(1); }
.hero-slide-1{ background-image:url('../img/hero-1.webp'); }
.hero-slide-2{ background-image:url('../img/hero-2.webp'); }
.hero-slide-3{ background-image:url('../img/hero-3.webp'); }

/* Layered overlay: navy weight on left for text legibility + bottom fade */
.hero-veil{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(100deg, rgba(12,23,32,0.94) 0%, rgba(12,23,32,0.78) 34%, rgba(12,23,32,0.34) 66%, rgba(12,23,32,0.55) 100%),
    linear-gradient(to top, rgba(12,23,32,0.92) 0%, rgba(12,23,32,0) 46%);
}
.hero-grain{ position:absolute; inset:0; z-index:1; opacity:0.5; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E"); }

.hero-inner{ position:relative; z-index:2; width:100%; }
.hero-eyebrow{ margin-bottom:26px; }
.hero-title{
  font-family:var(--font-brand);
  font-weight:400; letter-spacing:0.005em; line-height:1.0;
  font-size:clamp(2.9rem, 7vw, 5.9rem);
  color:var(--white); max-width:15ch;
  margin-bottom:26px;
}
.hero-title .accent{ color:var(--gold); }
.hero-lead{
  font-size:clamp(1rem, 1.4vw, 1.18rem);
  color:var(--text); max-width:52ch; margin-bottom:14px; font-weight:400;
}
.hero-sub{ font-size:0.98rem; color:var(--muted); max-width:56ch; margin-bottom:38px; }

.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* Store buttons */
.store-btn{
  display:inline-flex; align-items:center; gap:12px;
  background:var(--white); color:var(--navy-deep);
  padding:12px 22px 12px 18px; border-radius:var(--r-md);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
}
.store-btn:hover{ transform:translateY(-2px); box-shadow:0 16px 40px rgba(0,0,0,0.45); }
.store-btn svg{ width:26px; height:26px; flex-shrink:0; }
.store-btn .st-txt{ display:flex; flex-direction:column; line-height:1.15; text-align:left; }
.store-btn .st-txt small{ font-size:0.6rem; letter-spacing:0.06em; text-transform:uppercase; color:#4a5560; font-weight:600; }
.store-btn .st-txt span{ font-family:var(--font-display); font-weight:700; font-size:1.02rem; }

.hero-ghost{
  display:inline-flex; align-items:center; gap:9px;
  font-size:0.86rem; font-weight:600; color:var(--text);
  padding:14px 20px; border:1px solid var(--navy-line); border-radius:var(--r-md);
  transition:border-color .25s, background .25s, color .25s;
}
.hero-ghost:hover{ border-color:var(--gold); color:var(--gold-bright); background:var(--gold-soft); }
.hero-ghost svg{ width:16px; height:16px; }

/* Waitlist note */
.hero-note{ margin-top:22px; font-size:0.78rem; color:var(--muted-dim); letter-spacing:0.02em; }

/* Slider dots */
.hero-dots{ position:absolute; z-index:3; bottom:34px; right:var(--gutter); display:flex; gap:9px; }
.hero-dots button{
  width:30px; height:3px; border-radius:2px; border:none; cursor:pointer;
  background:rgba(255,255,255,0.28); transition:background .3s;
}
.hero-dots button.active{ background:var(--gold); }

/* =====================================================
   BRAND STRIP (positioning line)
===================================================== */
.strip{
  border-block:1px solid var(--navy-line);
  background:var(--navy-deep);
  padding:26px 0;
}
.strip .shell{ display:flex; align-items:center; justify-content:center; gap:clamp(14px,3vw,40px); flex-wrap:wrap; text-align:center; }
.strip span{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(0.9rem,1.6vw,1.16rem); letter-spacing:0.04em; color:var(--white);
}
.strip .dot{ color:var(--gold); font-size:0.7rem; }

/* =====================================================
   SECTION SCAFFOLD
===================================================== */
.section{ padding:clamp(72px,10vw,132px) 0; position:relative; }
.section-head{ max-width:60ch; }
.section-head .title{
  font-family:var(--font-brand); font-weight:400; letter-spacing:0.01em; line-height:1.08;
  color:var(--white); font-size:clamp(2.1rem,4.2vw,3.4rem); margin:18px 0 16px;
}
.section-head .title .accent{ color:var(--gold); }
.section-head .lead{ font-size:1.05rem; color:var(--muted); max-width:56ch; }

/* =====================================================
   SIGNATURE — PROCESS RAIL
===================================================== */
.process{ background:var(--navy-deep); border-block:1px solid var(--navy-line); overflow:hidden; }
.process .section-head{ margin-bottom:56px; }

.rail{ position:relative; }
/* the connective gold thread */
.rail-track{ position:absolute; top:34px; left:0; right:0; height:1px;
  background:linear-gradient(to right, transparent, var(--navy-line) 8%, var(--navy-line) 92%, transparent); }
.rail-progress{ position:absolute; top:34px; left:0; height:1px; width:0;
  background:linear-gradient(to right, var(--gold), var(--gold-bright)); box-shadow:0 0 12px rgba(210,165,87,0.6);
  transition:width 1.4s var(--ease); }

.rail-steps{ display:grid; grid-template-columns:repeat(6,1fr); gap:22px; position:relative; }
.step{ position:relative; }
.step-node{
  width:70px; height:70px; border-radius:50%;
  background:var(--navy-panel); border:1px solid var(--navy-line);
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:2; transition:border-color .5s var(--ease), background .5s;
}
.step-node svg{ width:28px; height:28px; stroke:var(--gold); fill:none; stroke-width:1.6; }
.step.lit .step-node{ border-color:var(--gold); background:linear-gradient(150deg,var(--navy-panel),#233a4c); box-shadow:0 0 0 4px var(--gold-soft); }
.step-num{
  position:absolute; top:-6px; left:52px;
  font-family:var(--font-display); font-weight:800; font-size:0.7rem;
  color:var(--gold); letter-spacing:0.08em;
}
.step-label{ margin-top:20px; font-family:var(--font-display); font-weight:700; font-size:0.92rem; color:var(--white); letter-spacing:-0.01em; }
.step-desc{ margin-top:7px; font-size:0.82rem; color:var(--muted); max-width:22ch; }

/* =====================================================
   HOW IT WORKS — editorial numbered rows
===================================================== */
.hiw-list{ margin-top:54px; display:flex; flex-direction:column; }
.hiw-row{
  position:relative;
  padding:34px 0 34px clamp(20px,3vw,34px);
  border-top:1px solid rgba(255,255,255,0.07);
}
.hiw-row::before{
  content:''; position:absolute; left:0; top:34px; bottom:34px;
  width:2px; border-radius:2px;
  background:var(--navy-line); transition:background .4s var(--ease);
}
.hiw-row:hover::before{ background:var(--gold); }
.hiw-row:last-child{ border-bottom:1px solid rgba(255,255,255,0.07); }
.hiw-body h3{ font-family:var(--font-display); font-weight:700; font-size:clamp(1.15rem,2vw,1.5rem); color:var(--white); letter-spacing:-0.02em; margin-bottom:8px; }
.hiw-body p{ color:var(--muted); max-width:64ch; }
.hiw-tag{
  display:inline-block; margin-top:12px; font-size:0.68rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--gold); border:1px solid var(--navy-line); border-radius:100px; padding:5px 12px;
}

/* =====================================================
   FEATURE SPLIT (For Professionals / Visualization / Measurement)
===================================================== */
.split{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:clamp(32px,6vw,84px); align-items:center; }
.split.reverse{ grid-template-columns:0.95fr 1.05fr; }
.split.reverse .split-media{ order:-1; }

.split-media{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  border:1px solid var(--navy-line); aspect-ratio:4/3;
  box-shadow:0 30px 70px rgba(0,0,0,0.4);
}
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split-media::after{ content:''; position:absolute; inset:0; background:linear-gradient(150deg, transparent 55%, rgba(18,32,45,0.5)); }
.split-media .frame-tag{
  position:absolute; left:18px; bottom:18px; z-index:2;
  background:rgba(12,23,32,0.72); backdrop-filter:blur(8px);
  border:1px solid var(--navy-line); border-radius:100px;
  padding:8px 15px; font-size:0.72rem; font-weight:600; letter-spacing:0.06em; color:var(--gold-bright);
  display:inline-flex; align-items:center; gap:8px;
}
.split-media .frame-tag i{ width:6px; height:6px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px var(--gold); }

.bullets{ margin-top:28px; display:flex; flex-direction:column; gap:16px; }
.bullet{ display:flex; gap:14px; align-items:flex-start; }
.bullet-mark{
  flex-shrink:0; width:26px; height:26px; border-radius:7px; margin-top:2px;
  background:var(--gold-soft); border:1px solid var(--navy-line);
  display:flex; align-items:center; justify-content:center;
}
.bullet-mark svg{ width:13px; height:13px; stroke:var(--gold); fill:none; stroke-width:2.6; }
.bullet p{ color:var(--text); font-size:0.96rem; }
.bullet p b{ color:var(--white); font-weight:600; }

/* =====================================================
   VIDEO — What is MYKV
===================================================== */
.video-sec{ background:var(--navy-deep); border-block:1px solid var(--navy-line); }
.video-sec .section-head{ margin:0 auto 46px; text-align:center; }
.video-sec .lead{ margin-inline:auto; }
.video-frame{
  position:relative; max-width:960px; margin:0 auto;
  border-radius:var(--r-lg); overflow:hidden;
  border:1px solid var(--navy-line);
  box-shadow:0 40px 90px rgba(0,0,0,0.5);
  background:#000; aspect-ratio:16/9;
}
.video-frame video{ width:100%; height:100%; object-fit:cover; display:block; }
.video-poster{
  position:absolute; inset:0; z-index:2; cursor:pointer;
  background-size:cover; background-position:center;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .5s var(--ease);
}
.video-poster::before{ content:''; position:absolute; inset:0; background:rgba(12,23,32,0.42); }
.video-poster.hidden{ opacity:0; pointer-events:none; }
.play-btn{
  position:relative; z-index:2; width:82px; height:82px; border-radius:50%;
  background:var(--gold); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 40px rgba(210,165,87,0.45);
  transition:transform .3s var(--ease);
}
.play-btn::after{ content:''; position:absolute; inset:-10px; border-radius:50%; border:1px solid var(--gold); opacity:0.5; animation:pulse 2.6s infinite; }
@keyframes pulse{ 0%{ transform:scale(1); opacity:0.5;} 70%{ transform:scale(1.35); opacity:0;} 100%{opacity:0;} }
.play-btn svg{ width:30px; height:30px; fill:var(--navy-deep); margin-left:4px; }
.video-poster:hover .play-btn{ transform:scale(1.06); }
.video-cap{ text-align:center; margin-top:22px; font-size:0.82rem; color:var(--muted-dim); letter-spacing:0.03em; }

/* =====================================================
   VISION (light break section)
===================================================== */
.vision{ background:var(--cream); color:var(--ink); }
.vision .title{ color:var(--ink); }
.vision .title .accent{ color:#A9812F; }
.vision .lead{ color:var(--cream-muted); }
.vision-note{
  display:inline-flex; align-items:center; gap:9px; margin-bottom:22px;
  font-size:0.68rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
  color:#A9812F; background:rgba(169,129,47,0.1); border:1px solid rgba(169,129,47,0.3);
  border-radius:100px; padding:7px 15px;
}
.vision-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:52px; }
.vision-card{
  background:var(--white); border:1px solid rgba(18,32,45,0.08);
  border-radius:var(--r-md); padding:30px 28px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.vision-card:hover{ transform:translateY(-4px); box-shadow:0 24px 50px rgba(18,32,45,0.1); }
.vision-card .vc-icon{
  width:46px; height:46px; border-radius:12px; margin-bottom:18px;
  background:rgba(169,129,47,0.1); border:1px solid rgba(169,129,47,0.25);
  display:flex; align-items:center; justify-content:center;
}
.vision-card .vc-icon svg{ width:22px; height:22px; stroke:#A9812F; fill:none; stroke-width:1.7; }
.vision-card h3{ font-family:var(--font-display); font-weight:700; font-size:1.08rem; color:var(--ink); letter-spacing:-0.01em; margin-bottom:9px; }
.vision-card p{ font-size:0.9rem; color:var(--cream-muted); }

.vision-line{
  margin-top:60px; text-align:center;
  font-family:var(--font-display); font-weight:800; letter-spacing:0.02em;
  font-size:clamp(1.3rem,3vw,2rem); color:var(--ink);
}
.vision-line .sep{ color:#A9812F; margin-inline:10px; }

/* =====================================================
   ABOUT + MISSION/VISION
===================================================== */
.about-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:clamp(32px,6vw,80px); align-items:center; }
.about-media{ border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--navy-line); box-shadow:0 30px 70px rgba(0,0,0,0.4); aspect-ratio:5/6; }
.about-media img{ width:100%; height:100%; object-fit:cover; }
.mv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:38px; }
.mv-card{ background:var(--navy-panel); border:1px solid var(--navy-line); border-radius:var(--r-md); padding:26px; }
.mv-card h4{ font-family:var(--font-display); font-weight:700; font-size:0.76rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.mv-card p{ font-size:0.94rem; color:var(--text); }

/* =====================================================
   INVESTORS
===================================================== */
.investors{ background:var(--navy-deep); border-block:1px solid var(--navy-line); }
.inv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,6vw,72px); align-items:center; }
.inv-copy p{ color:var(--muted); margin-top:18px; max-width:54ch; }
.inv-copy p b{ color:var(--text); font-weight:500; }
.inv-panel{
  background:linear-gradient(155deg, var(--navy-panel), var(--navy-deep));
  border:1px solid var(--navy-line); border-radius:var(--r-lg);
  padding:clamp(30px,4vw,44px);
}
.inv-panel h3{ font-family:var(--font-display); font-weight:700; font-size:1.4rem; color:var(--white); letter-spacing:-0.02em; margin-bottom:14px; }
.inv-panel p{ color:var(--muted); font-size:0.96rem; margin-bottom:26px; }
.inv-mail{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:0.92rem;
  color:var(--gold-bright); border:1px solid var(--navy-line); border-radius:var(--r-md);
  padding:14px 22px; transition:border-color .25s, background .25s, transform .25s var(--ease);
}
.inv-mail:hover{ border-color:var(--gold); background:var(--gold-soft); transform:translateY(-1px); }
.inv-mail svg{ width:17px; height:17px; }

/* =====================================================
   FINAL CTA — store download
===================================================== */
.final{
  position:relative; overflow:hidden;
  background:#FFFFFF;
  text-align:center;
}
.final-logo{
  display:block !important; width:420px; height:auto !important; 
  margin-left:auto !important; margin-right:auto !important; margin-bottom:10px;
}
@media (max-width:560px){
  .final-logo{ width:300px; }
}
.final .kv-mark{ width:64px; height:64px; margin:0 auto 26px; opacity:0.95; }
.final h2{ font-family:var(--font-brand); font-weight:400; letter-spacing:0.02em; line-height:1.08;
  font-size:clamp(2.2rem,5vw,3.7rem); color:var(--navy); max-width:16ch; margin:0 auto 16px; }
.final h2 .accent{ color:var(--gold); text-shadow:0 2px 8px rgba(0,0,0,0.18); }
.final p{ color:#4A5568; max-width:50ch; margin:0 auto 38px; }
.final .store-btn{ background:var(--navy); border-color:var(--navy); }
.final .store-btn .st-txt span{ color:var(--white); }
.final .store-btn .st-txt small{ color:rgba(255,255,255,0.7); }
.final .store-btn svg path{ fill:var(--white) !important; }
.final .store-btn:hover{ background:var(--navy-deep); border-color:var(--navy-deep); }
.final .hero-note{ margin-top:26px; color:#7A8A9B; }
.final .contact-link{ border:2px solid var(--navy) !important; color:var(--navy) !important; font-weight:700; }
.final .contact-link:hover{ background:var(--navy) !important; color:var(--white) !important; border-color:var(--navy) !important; }
.final .contact-link svg{ stroke:currentColor; }
.final .disclaimer{ background:rgba(18,32,45,0.06); border-color:rgba(18,32,45,0.15); }
.final .disclaimer p{ color:#4A5568; max-width:none; }
.final .disclaimer p b{ color:var(--navy); }
.final .disclaimer svg{ stroke:var(--navy); }
.final .waitlist-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.final-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
@media (max-width:560px){

}

/* =====================================================
   FOOTER
===================================================== */
footer{ background:var(--navy-deep); border-top:1px solid var(--navy-line); padding:64px 0 34px; }
.foot-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:44px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.06); }
.foot-brand img{ height:64px; width:auto; margin-bottom:18px; }
.foot-brand p{ color:var(--muted); font-size:0.9rem; max-width:34ch; }
.foot-tag{ margin-top:16px; font-family:var(--font-display); font-weight:700; font-size:0.82rem; letter-spacing:0.1em; color:var(--gold); }
.foot-col h5{ font-family:var(--font-display); font-weight:700; font-size:0.72rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--muted); margin-bottom:18px; }
.foot-col ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.foot-col a{ font-size:0.9rem; color:var(--muted); transition:color .2s; }
.foot-col a:hover{ color:var(--gold-bright); }
.foot-store{ display:flex; gap:12px; margin-top:6px; flex-wrap:wrap; }
.foot-store a{ display:inline-flex; }
.foot-store svg{ height:42px; width:auto; }

.foot-bottom{ display:flex; align-items:center; justify-content:space-between; gap:18px; padding-top:26px; flex-wrap:wrap; }
.foot-copy{ font-size:0.8rem; color:var(--muted-dim); }
.foot-sig{ font-size:0.76rem; color:var(--muted-dim); }
.foot-sig a{ color:var(--muted); transition:color .2s; }
.foot-sig a:hover{ color:var(--gold); }

/* =====================================================
   REVEAL
===================================================== */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width:1024px){
  .rail-steps{ grid-template-columns:repeat(3,1fr); gap:38px 22px; }
  .rail-track,.rail-progress{ display:none; }
  .split,.split.reverse{ grid-template-columns:1fr; gap:36px; }
  .split.reverse .split-media{ order:0; }
  .about-grid{ grid-template-columns:1fr; }
  .about-media{ max-width:440px; }
  .inv-grid{ grid-template-columns:1fr; }
  .vision-grid{ grid-template-columns:1fr 1fr; }
  .foot-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  .nav-links{ display:none; }
  .nav .nav-cta{ display:none; }
  .burger{ display:flex; }
  .hero{ padding-top:100px; }
  .hero-title{ max-width:100%; }
  .mv-grid{ grid-template-columns:1fr; }
  .vision-grid{ grid-template-columns:1fr; }
  .foot-top{ grid-template-columns:1fr; gap:34px; }
  .hero-dots{ right:auto; left:var(--gutter); }
  .strip .shell{ gap:8px 14px; }
  .strip span{ font-size:0.82rem; }
}
@media (max-width:420px){
  .store-btn{ width:100%; }
  .hero-ghost{ width:100%; justify-content:center; }
}

/* =====================================================
   SUBPAGE COMPONENTS (professionals / marketplace)
===================================================== */
/* Compact page hero (no slider) */
.page-hero{
  position:relative; padding:150px 0 80px; overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(210,165,87,0.10), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(31,58,80,0.5), transparent 48%),
    var(--navy-deep);
  border-bottom:1px solid var(--navy-line);
}
.page-hero .shell{ position:relative; z-index:2; }
.page-hero .eyebrow{ margin-bottom:22px; }
.page-hero h1{
  font-family:var(--font-brand); font-weight:400; letter-spacing:0.01em; line-height:1.04;
  font-size:clamp(2.5rem,5.4vw,4.4rem); color:var(--white); max-width:18ch; margin-bottom:22px;
}
.page-hero h1 .accent{ color:var(--gold); }
.page-hero .page-lead{ font-size:clamp(1.02rem,1.5vw,1.2rem); color:var(--muted); max-width:60ch; }
.page-hero .kicker{
  margin-top:26px; font-family:var(--font-display); font-weight:700; letter-spacing:0.04em;
  color:var(--text); font-size:1.02rem;
}
.page-hero .kicker .sep{ color:var(--gold); margin-inline:8px; }

/* Breadcrumb */
.crumb{ display:flex; gap:8px; align-items:center; font-size:0.78rem; color:var(--muted-dim); margin-bottom:26px; }
.crumb a{ color:var(--muted); transition:color .2s; }
.crumb a:hover{ color:var(--gold); }
.crumb span{ opacity:0.5; }

/* Roles grid (For Professionals) */
.roles-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:54px; }
.role-card{
  position:relative; background:linear-gradient(160deg,var(--navy-panel),var(--navy-deep));
  border:1px solid var(--navy-line); border-radius:var(--r-lg); padding:34px 32px;
  transition:transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.role-card:hover{ transform:translateY(-4px); border-color:rgba(210,165,87,0.4); box-shadow:0 24px 50px rgba(0,0,0,0.4); }
.role-icon{
  width:52px; height:52px; border-radius:14px; margin-bottom:22px;
  background:var(--gold-soft); border:1px solid var(--navy-line);
  display:flex; align-items:center; justify-content:center;
}
.role-icon svg{ width:26px; height:26px; stroke:var(--gold); fill:none; stroke-width:1.6; }
.role-card h3{ font-family:var(--font-display); font-weight:700; font-size:1.24rem; color:var(--white); letter-spacing:-0.02em; margin-bottom:12px; }
.role-card p{ color:var(--muted); font-size:0.94rem; }
.role-card .goal{
  margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,0.07);
  font-size:0.88rem; color:var(--text);
}
.role-card .goal b{ color:var(--gold); font-weight:600; }

/* Flow band (SALES -> MEASURER -> ...) */
.flow-band{ background:var(--navy-deep); border-block:1px solid var(--navy-line); }
.flow-chips{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:44px; }
.flow-chip{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:0.82rem; letter-spacing:0.04em;
  color:var(--text); background:var(--navy-panel); border:1px solid var(--navy-line);
  padding:12px 20px; border-radius:100px;
}
.flow-chip .n{ color:var(--gold); font-size:0.72rem; }
.flow-arrow{ display:inline-flex; align-items:center; color:var(--gold); opacity:0.7; }
.flow-arrow svg{ width:18px; height:18px; }
@media (max-width:600px){ .flow-arrow{ transform:rotate(90deg); } }

/* Pricing */
.pricing{ background:var(--navy); }
.plans{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; align-items:stretch; }
.plan{
  display:flex; flex-direction:column;
  background:linear-gradient(165deg,var(--navy-panel),var(--navy-deep));
  border:1px solid var(--navy-line); border-radius:var(--r-lg); padding:36px 30px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan.featured{ border-color:rgba(210,165,87,0.55); box-shadow:0 0 0 1px rgba(210,165,87,0.25), 0 30px 60px rgba(0,0,0,0.45); }
.plan:hover{ transform:translateY(-4px); }
.plan-badge{
  align-self:flex-start; font-size:0.66rem; font-weight:800; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--navy-deep); background:var(--gold); border-radius:100px; padding:6px 13px; margin-bottom:18px;
}
.plan-name{ font-family:var(--font-display); font-weight:800; font-size:1.1rem; letter-spacing:0.02em; text-transform:uppercase; color:var(--white); margin-bottom:8px; }
.plan-price{ font-family:var(--font-brand); font-weight:400; font-size:2.6rem; color:var(--gold); line-height:1.1; margin:10px 0 4px; }
.plan-price small{ font-family:var(--font-body); font-size:0.82rem; color:var(--muted); font-weight:500; letter-spacing:0.02em; }
.plan-price.tba{ font-size:1.7rem; color:var(--text); }
.plan-desc{ color:var(--muted); font-size:0.9rem; margin-bottom:22px; min-height:44px; }
.plan-feats{ list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:28px; flex-grow:1; }
.plan-feats li{ display:flex; gap:10px; align-items:flex-start; font-size:0.88rem; color:var(--text); }
.plan-feats li svg{ flex-shrink:0; width:15px; height:15px; stroke:var(--gold); fill:none; stroke-width:2.6; margin-top:3px; }
.plan-cta{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-body); font-weight:600; font-size:0.88rem;
  padding:14px 22px; border-radius:var(--r-md); transition:transform .25s var(--ease), background .25s, border-color .25s;
}
.plan-cta.solid{ background:var(--gold); color:var(--navy-deep); }
.plan-cta.solid:hover{ background:var(--gold-bright); transform:translateY(-1px); }
.plan-cta.ghost{ border:1px solid var(--navy-line); color:var(--text); }
.plan-cta.ghost:hover{ border-color:var(--gold); color:var(--gold-bright); background:var(--gold-soft); }
.plan-note{ font-size:0.76rem; color:var(--muted-dim); margin-top:14px; text-align:center; }

/* Disclaimer callout */
.disclaimer{
  display:flex; gap:14px; align-items:flex-start; max-width:760px; margin:52px auto 0;
  background:var(--gold-soft); border:1px solid var(--navy-line); border-radius:var(--r-md); padding:20px 24px;
}
.disclaimer svg{ flex-shrink:0; width:20px; height:20px; stroke:var(--gold); fill:none; stroke-width:2; margin-top:2px; }
.disclaimer p{ font-size:0.86rem; color:var(--muted); }
.disclaimer p b{ color:var(--text); font-weight:600; }

/* Why $199 explainer */
.why-price{ background:var(--navy-deep); border-block:1px solid var(--navy-line); }
.why-price-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,6vw,72px); align-items:center; }
.chip-cloud{ display:flex; flex-wrap:wrap; gap:10px; margin-top:6px; }
.chip-cloud span{
  font-size:0.82rem; color:var(--muted); background:var(--navy-panel);
  border:1px solid var(--navy-line); border-radius:100px; padding:9px 16px;
}

/* Marketplace categories */
.cat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:54px; }
.cat-card{
  background:linear-gradient(160deg,var(--navy-panel),var(--navy-deep));
  border:1px solid var(--navy-line); border-radius:var(--r-lg); padding:30px 28px;
  transition:transform .4s var(--ease), border-color .4s var(--ease);
}
.cat-card:hover{ transform:translateY(-4px); border-color:rgba(210,165,87,0.4); }
.cat-icon{ width:46px; height:46px; border-radius:12px; margin-bottom:18px; background:var(--gold-soft); border:1px solid var(--navy-line); display:flex; align-items:center; justify-content:center; }
.cat-icon svg{ width:23px; height:23px; stroke:var(--gold); fill:none; stroke-width:1.7; }
.cat-card h3{ font-family:var(--font-display); font-weight:700; font-size:1.06rem; color:var(--white); margin-bottom:9px; letter-spacing:-0.01em; }
.cat-card p{ font-size:0.88rem; color:var(--muted); }

/* Compare traditional vs MYKV */
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:52px; }
.compare-col{ border:1px solid var(--navy-line); border-radius:var(--r-lg); padding:32px; }
.compare-col.trad{ background:var(--navy-deep); }
.compare-col.mykv{ background:linear-gradient(160deg,var(--navy-panel),var(--navy-deep)); border-color:rgba(210,165,87,0.4); }
.compare-col h4{ font-family:var(--font-display); font-weight:700; font-size:0.78rem; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:22px; }
.compare-col.trad h4{ color:var(--muted); }
.compare-col.mykv h4{ color:var(--gold); }
.compare-steps{ display:flex; flex-direction:column; gap:12px; }
.compare-steps .cs{ display:flex; align-items:center; gap:12px; font-size:0.92rem; color:var(--text); }
.compare-steps .cs i{ width:24px; height:24px; flex-shrink:0; border-radius:7px; background:var(--gold-soft); border:1px solid var(--navy-line); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:0.68rem; font-weight:700; color:var(--gold); font-style:normal; }
.compare-col.trad .cs i{ background:rgba(255,255,255,0.05); color:var(--muted); }

/* Waitlist / CTA section (shared, app-focused) */
.waitlist{
  position:relative; overflow:hidden; text-align:center;
  background:radial-gradient(circle at 50% -10%, rgba(210,165,87,0.14), transparent 55%), var(--navy);
}
.waitlist .kv-mark{ width:60px; height:60px; margin:0 auto 24px; }
.waitlist h2{ font-family:var(--font-brand); font-weight:400; letter-spacing:0.02em; line-height:1.08; font-size:clamp(2rem,4.4vw,3.2rem); color:var(--white); max-width:18ch; margin:0 auto 16px; }
.waitlist h2 .accent{ color:var(--gold); }
.waitlist p{ color:var(--muted); max-width:52ch; margin:0 auto 34px; }
.waitlist-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.contact-link{
  display:inline-flex; align-items:center; gap:9px; font-size:0.86rem; font-weight:600;
  color:var(--text); padding:14px 20px; border:1px solid var(--navy-line); border-radius:var(--r-md);
  transition:border-color .25s, color .25s, background .25s;
}
.contact-link:hover{ border-color:var(--gold); color:var(--gold-bright); background:var(--gold-soft); }
.contact-link svg{ width:16px; height:16px; }

@media (max-width:900px){
  .roles-grid{ grid-template-columns:1fr; }
  .plans{ grid-template-columns:1fr; max-width:460px; margin-inline:auto; }
  .cat-grid{ grid-template-columns:1fr 1fr; }
  .why-price-grid{ grid-template-columns:1fr; }
  .compare{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .cat-grid{ grid-template-columns:1fr; }
  .page-hero{ padding:120px 0 60px; }
}

/* =====================================================
   LOGO WITHOUT PLATE — drop-shadow for contrast on dark bg
===================================================== */
.logo-plate{
  display:flex; align-items:center; justify-content:center;
  width:fit-content; margin-left:auto; margin-right:auto;
}
.logo-plate img{
  width:100%; height:100%; object-fit:contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.55)) drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

/* Footer plate: doubled symbol (46 -> 92) */
.foot-plate{ width:184px; height:184px; margin:0 auto 20px; }

/* Isolated CTA symbol: +200% (60 -> 180) */
.kv-plate{ width:180px; height:180px; margin:0 auto 30px; }
@media (max-width:560px){
  .kv-plate{ width:132px; height:132px; }
  .foot-plate{ width:140px; height:140px; margin:0 auto 18px; }
}
