/* ─── APARTOPH MARKETING SITE ───────────────────────── */
:root{
  /* Brand teal palette */
  --teal-900:#064E48;
  --teal-800:#0A6C63;
  --teal-700:#0D9488;
  --teal-600:#14B8A6;
  --teal-500:#2DD4BF;
  --teal-100:#CCFBF1;
  --teal-50:#F0FDFA;

  /* Neutrals */
  --ink:#0B1F1D;
  --ink-2:#1F3633;
  --slate-700:#334E4B;
  --slate-500:#5C7572;
  --slate-400:#8AA29F;
  --slate-200:#D7E2E0;
  --slate-100:#E9EFEE;
  --bg:#FAF8F4;
  --bg-2:#F2EEE6;
  --white:#FFFFFF;

  /* Accent (warm cream tan) */
  --tan:#E8D2B0;
  --tan-deep:#C8A878;
  --amber:#F59E0B;

  /* System */
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;
  --shadow-card:0 1px 0 rgba(11,31,29,0.04), 0 18px 40px -24px rgba(11,31,29,0.18);
  --shadow-pop:0 30px 80px -30px rgba(6,78,72,0.45), 0 8px 24px -10px rgba(6,78,72,0.25);
  --max:1200px;
  --pad:28px;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:"DM Sans","Inter",system-ui,-apple-system,sans-serif;
  font-feature-settings:"ss01","cv11";
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}

/* Reset typography to a clean editorial scale */
h1,h2,h3,h4,h5,p{margin:0;}
h1{font-size:clamp(44px, 6vw, 84px); line-height:1.02; letter-spacing:-0.025em; font-weight:700;}
h2{font-size:clamp(32px, 4vw, 52px); line-height:1.08; letter-spacing:-0.02em; font-weight:700;}
h3{font-size:24px; line-height:1.2; letter-spacing:-0.01em; font-weight:700;}
h4{font-size:17px; line-height:1.3; font-weight:700;}
p{font-size:17px; line-height:1.6; color:var(--slate-700);}

.eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--teal-700);
}

/* ─── LAYOUT ─── */
.wrap{max-width:var(--max); margin:0 auto; padding:0 var(--pad);}
section{padding:96px 0;}
.section-tight{padding:64px 0;}

/* ─── HEADER ─── */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(250,248,244,0.82);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid rgba(11,31,29,0.06);
}
.site-header .row{
  height:68px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; font-size:19px; letter-spacing:-0.01em; color:var(--ink);}
.brand-mark{width:32px; height:32px; border-radius:9px; background:var(--teal-700); display:flex; align-items:center; justify-content:center; box-shadow:0 4px 12px -4px rgba(13,148,136,0.5);}

.nav{display:flex; gap:32px;}
.nav a{font-size:14.5px; font-weight:500; color:var(--slate-700); transition:color 0.15s;}
.nav a:hover, .nav a.active{color:var(--ink);}
.nav a.active{font-weight:600;}

.nav-cta{display:flex; align-items:center; gap:12px;}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  height:44px; padding:0 20px;
  border-radius:999px;
  font-size:14.5px; font-weight:600;
  border:none;
  transition:transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space:nowrap;
}
.btn-primary{background:var(--ink); color:var(--bg);}
.btn-primary:hover{background:var(--teal-700); transform:translateY(-1px);}
.btn-teal{background:var(--teal-700); color:#fff;}
.btn-teal:hover{background:var(--teal-800); transform:translateY(-1px);}
.btn-ghost{background:transparent; color:var(--ink); border:1px solid rgba(11,31,29,0.14);}
.btn-ghost:hover{border-color:var(--ink); background:rgba(11,31,29,0.03);}
.btn-lg{height:54px; padding:0 28px; font-size:16px;}
.btn-sm{height:38px; padding:0 16px; font-size:13px;}

@media (max-width:780px){
  .nav{display:none;}
}

/* ─── HERO ─── */
.hero{
  position:relative;
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(20,184,166,0.10), transparent 65%),
    radial-gradient(800px 500px at 0% 100%, rgba(6,78,72,0.07), transparent 60%),
    var(--bg);
  padding:80px 0 120px;
  overflow:hidden;
}
.hero.teal-hero{
  background:
    radial-gradient(1200px 700px at 50% -10%, var(--teal-600), var(--teal-800));
  color:#fff;
}
.hero.teal-hero h1, .hero.teal-hero .eyebrow{color:#fff;}
.hero.teal-hero .eyebrow{color:var(--teal-100); opacity:0.9;}
.hero.teal-hero p{color:rgba(255,255,255,0.78);}
.hero.teal-hero .btn-primary{background:#fff; color:var(--ink);}
.hero.teal-hero .btn-primary:hover{background:var(--teal-50);}
.hero.teal-hero .btn-ghost{color:#fff; border-color:rgba(255,255,255,0.32);}
.hero.teal-hero .btn-ghost:hover{background:rgba(255,255,255,0.10); border-color:#fff;}
.hero.teal-hero .pattern-grain{
  position:absolute; inset:0; pointer-events:none;
  opacity:0.4; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:64px;
  align-items:center;
  position:relative;
  z-index:2;
}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr; gap:80px;}
}
.hero-copy h1{margin-top:18px;}
.hero-copy h1 em{font-style:normal; color:var(--teal-100);}
.hero:not(.teal-hero) .hero-copy h1 em{color:var(--teal-700);}
.hero-copy p.lede{font-size:19px; line-height:1.55; margin-top:24px; max-width:520px;}
.hero.teal-hero .hero-copy p.lede{color:rgba(255,255,255,0.85);}
.hero-cta{display:flex; gap:12px; margin-top:36px; flex-wrap:wrap;}
.hero-meta{display:flex; gap:24px; margin-top:36px; flex-wrap:wrap; font-size:13.5px; color:var(--slate-700);}
.hero.teal-hero .hero-meta{color:rgba(255,255,255,0.7);}
.hero-meta span{display:inline-flex; align-items:center; gap:8px;}
.dot{width:6px; height:6px; border-radius:50%; background:var(--teal-500);}

/* Floating screens (no frame) */
.screens-stage{
  position:relative;
  height:620px;
  perspective:1400px;
}
.screen{
  position:absolute;
  width:280px;
  border-radius:36px;
  background:#fff;
  box-shadow:
    0 60px 120px -30px rgba(6,40,38,0.5),
    0 30px 60px -20px rgba(6,40,38,0.35),
    0 0 0 1px rgba(11,31,29,0.04);
  overflow:hidden;
  transform-origin:center;
}
.screen-1{ left:6%;  top:20px;  transform:rotate(-6deg) translateZ(0); z-index:2;}
.screen-2{ right:0;  top:80px;  transform:rotate(4deg) translateZ(0); z-index:3;}
.screen-3{ left:30%; top:300px; transform:rotate(-2deg) translateZ(0); z-index:4;}

@keyframes float-a { 0%,100%{transform:rotate(-6deg) translateY(0);} 50%{transform:rotate(-6deg) translateY(-10px);} }
@keyframes float-b { 0%,100%{transform:rotate(4deg) translateY(0);} 50%{transform:rotate(4deg) translateY(-14px);} }
@keyframes float-c { 0%,100%{transform:rotate(-2deg) translateY(0);} 50%{transform:rotate(-2deg) translateY(-8px);} }
.screen-1{animation:float-a 7s ease-in-out infinite;}
.screen-2{animation:float-b 8s ease-in-out infinite 0.5s;}
.screen-3{animation:float-c 6s ease-in-out infinite 1s;}

@media (max-width:980px){
  .screens-stage{height:520px;}
  .screen{width:220px;}
  .screen-1{left:2%;}
  .screen-2{right:2%;}
  .screen-3{left:25%; top:240px;}
}
@media (max-width:520px){
  .screens-stage{height:440px;}
  .screen{width:190px;}
  .screen-3{display:none;}
}

/* ─── FEATURE GRID ─── */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:56px;
}
@media (max-width:880px){
  .feature-grid{grid-template-columns:1fr; gap:18px;}
}
.feature-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(11,31,29,0.04);
  transition:transform 0.2s, box-shadow 0.2s;
  position:relative;
  overflow:hidden;
}
.feature-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-pop);}
.feature-icon{
  width:44px; height:44px; border-radius:12px;
  background:var(--teal-50); color:var(--teal-700);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.feature-card h3{margin-bottom:10px;}
.feature-card p{font-size:15.5px;}

/* ─── SECTION HEADERS ─── */
.section-head{
  max-width:680px;
  margin:0 auto 0;
  text-align:center;
}
.section-head.left{text-align:left; margin:0;}
.section-head h2{margin-top:14px;}
.section-head p{margin-top:18px; font-size:18px;}

/* ─── BRAND STORY (mascot moments) ─── */
.brand-story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
@media (max-width:880px){.brand-story{grid-template-columns:1fr; gap:48px;}}

.story-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:48px;
  box-shadow:var(--shadow-card);
  position:relative;
}
.story-card.tan{background:var(--tan); color:var(--ink);}
.story-card.dark{background:var(--ink); color:#fff;}
.story-card.dark p{color:rgba(255,255,255,0.7);}

.mascot-tile{
  background:linear-gradient(160deg, var(--teal-50), #fff);
  border-radius:var(--radius-lg);
  height:420px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
  border:1px solid var(--slate-100);
}
.mascot-tile.dark{
  background:radial-gradient(circle at 30% 20%, var(--teal-700), var(--ink));
}

/* ─── HOW IT WORKS ─── */
.steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  counter-reset:step;
  margin-top:56px;
}
@media (max-width:880px){.steps{grid-template-columns:1fr;}}
.step{
  position:relative;
  padding:32px 28px 28px;
  background:#fff;
  border-radius:var(--radius-md);
  border:1px solid var(--slate-100);
}
.step::before{
  counter-increment:step;
  content:"0" counter(step);
  position:absolute; top:24px; right:28px;
  font-size:42px; font-weight:700;
  color:var(--teal-100);
  letter-spacing:-0.02em; line-height:1;
}
.step h4{margin-bottom:8px; padding-right:48px;}
.step p{font-size:14.5px;}

/* ─── STATS STRIP ─── */
.stats{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:48px;
  padding:56px 0;
  border-top:1px solid var(--slate-100);
  border-bottom:1px solid var(--slate-100);
}
@media (max-width:880px){.stats{grid-template-columns:repeat(2, 1fr); gap:36px;}}
.stat .num{font-size:44px; font-weight:700; letter-spacing:-0.02em; color:var(--ink); line-height:1;}
.stat .lbl{font-size:13.5px; color:var(--slate-500); margin-top:8px;}

/* ─── CTA STRIP ─── */
.cta-strip{
  background:var(--ink);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:64px;
  display:grid; grid-template-columns:1.4fr 1fr;
  gap:48px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.cta-strip::before{
  content:""; position:absolute; right:-100px; top:-100px;
  width:400px; height:400px;
  background:radial-gradient(circle, var(--teal-600), transparent 70%);
  opacity:0.4; pointer-events:none;
}
.cta-strip h2{color:#fff;}
.cta-strip p{color:rgba(255,255,255,0.75); margin-top:14px;}
.cta-strip .badges{display:flex; gap:12px; flex-wrap:wrap;}
@media (max-width:880px){
  .cta-strip{grid-template-columns:1fr; padding:40px;}
}

.store-badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px;
  background:#fff; color:var(--ink);
  border-radius:14px;
  text-decoration:none;
  transition:transform 0.15s;
}
.store-badge:hover{transform:translateY(-2px);}
.store-badge .small{font-size:10px; color:var(--slate-500); display:block; margin-bottom:1px;}
.store-badge .big{font-size:15px; font-weight:700;}

/* ─── PRICING ─── */
.price-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:48px;
}
.price-grid.four{grid-template-columns:repeat(4, 1fr); gap:20px;}
.price-grid.four .price-amount{font-size:44px;}
@media (max-width:1180px){.price-grid.four{grid-template-columns:repeat(2, 1fr);}}
@media (max-width:980px){.price-grid{grid-template-columns:1fr;} .price-grid.four{grid-template-columns:1fr;}}
.price-sub{font-size:13px; color:var(--slate-500); margin-top:4px;}
.price-card.featured .price-sub{color:rgba(255,255,255,0.55);}

/* compare table */
.compare-table{width:100%; border-collapse:collapse; font-size:14.5px;}
.compare-table thead th{padding:18px 14px; font-weight:700; text-align:center; vertical-align:bottom; border-bottom:2px solid var(--ink);}
.compare-table thead th small{display:block; font-size:12px; font-weight:500; color:var(--slate-500); margin-top:4px; letter-spacing:0;}
.compare-table thead th.hl{color:var(--teal-700);}
.compare-table thead th.hl small{color:var(--teal-700);}
.compare-table tbody td{padding:16px 14px; text-align:center; color:var(--slate-700); border-bottom:1px solid var(--slate-100);}
.compare-table tbody td:first-child{text-align:left; color:var(--ink); font-weight:500;}
.compare-table tbody td small{display:block; font-size:12px; font-weight:400; color:var(--slate-500); margin-top:2px;}
.compare-table tbody td.hl{background:rgba(13,148,136,0.06); color:var(--teal-800); font-weight:600;}
.compare-table tbody tr:last-child td{border-bottom:none;}

/* ─── PHASE 1 / WAITLIST ─── */
.phase-banner{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(13,148,136,0.08);
  border:1px solid rgba(13,148,136,0.25);
  color:var(--teal-800);
  padding:8px 14px; border-radius:999px;
  font-size:13px; font-weight:600; letter-spacing:0.02em;
}
.phase-banner .pulse{
  width:8px; height:8px; border-radius:50%;
  background:var(--teal-600);
  box-shadow:0 0 0 0 rgba(20,184,166,0.6);
  animation:pulse 2s ease-out infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(20,184,166,0.5);}
  70%{box-shadow:0 0 0 12px rgba(20,184,166,0);}
  100%{box-shadow:0 0 0 0 rgba(20,184,166,0);}
}
.phase-strip{
  background:linear-gradient(90deg, var(--teal-50), #fff, var(--teal-50));
  border-top:1px solid rgba(13,148,136,0.18);
  border-bottom:1px solid rgba(13,148,136,0.18);
  padding:14px 0;
  text-align:center;
}
.phase-strip strong{color:var(--teal-800);}
.phase-strip span{color:var(--slate-700); font-size:14px;}

/* Phase 1 / Free hero card (replaces .featured for Free tier) */
.price-card.phase1{
  border:2px solid var(--teal-600);
  box-shadow:0 30px 80px -30px rgba(13,148,136,0.4), var(--shadow-card);
  position:relative;
}
.price-card.phase1 .price-tier{color:var(--teal-700);}
.price-card.phase1 .price-amount{color:var(--ink);}
.price-card.phase1 .price-amount small{color:var(--slate-500); font-size:15px; font-weight:500; margin-left:6px;}

/* Phase banner — version that reads on dark teal hero */
.phase-banner.on-dark{
  background:rgba(255,255,255,0.14);
  border-color:rgba(255,255,255,0.28);
  color:#fff;
  backdrop-filter:blur(8px);
}
.phase-banner.on-dark .pulse{background:#5EEAD4; box-shadow:0 0 0 0 rgba(94,234,212,0.7);}
@keyframes pulse-light{
  0%{box-shadow:0 0 0 0 rgba(94,234,212,0.6);}
  70%{box-shadow:0 0 0 12px rgba(94,234,212,0);}
  100%{box-shadow:0 0 0 0 rgba(94,234,212,0);}
}
.phase-banner.on-dark .pulse{animation:pulse-light 2s ease-out infinite;}
.lifetime-pill{
  position:absolute; top:18px; right:18px;
  background:var(--teal-50); color:var(--teal-800);
  border:1px solid var(--teal-100);
  padding:5px 11px; border-radius:999px;
  font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
}

/* Coming Soon — faded paid cards */
.price-card.locked{
  opacity:0.78;
  background:#FBFAF7;
  border:1.5px dashed var(--slate-200);
  position:relative;
}
.price-card.locked::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 0%, transparent 50%, rgba(250,248,244,0.55) 100%);
  border-radius:inherit;
  pointer-events:none;
}
.price-card.locked .price-amount,
.price-card.locked .price-tier,
.price-card.locked .price-list b,
.price-card.locked p{color:var(--slate-500);}
.price-card.locked .price-list li{color:var(--slate-500);}
.price-card.locked .price-list li::before{
  background:var(--slate-200);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M5 7h4M7 5v4' stroke='white' stroke-width='1.6' stroke-linecap='round'/></svg>");
}
.coming-tag{
  position:absolute; top:18px; right:18px;
  background:var(--ink); color:#fff;
  padding:5px 11px; border-radius:999px;
  font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
}
.lock-pill{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--slate-500);
  margin-top:-4px; margin-bottom:8px;
}

/* ─── PRIVACY-FIRST + OFFLINE-FIRST PAIRED TILES ─── */
.duo{
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
  margin-top:48px;
}
@media (max-width:880px){.duo{grid-template-columns:1fr;}}
.duo-tile{
  background:#fff; border:1px solid var(--slate-100);
  border-radius:var(--radius-lg);
  padding:36px;
  display:flex; flex-direction:column; gap:18px;
  position:relative; overflow:hidden;
  box-shadow:var(--shadow-card);
}
.duo-tile.dark{
  background:linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color:#fff; border-color:transparent;
}
.duo-tile.dark p{color:rgba(255,255,255,0.78);}
.duo-tile.dark .eyebrow{color:var(--teal-500);}
.duo-icon{
  width:54px; height:54px; border-radius:14px;
  background:var(--teal-50); color:var(--teal-700);
  display:flex; align-items:center; justify-content:center;
}
.duo-tile.dark .duo-icon{background:rgba(45,212,191,0.15); color:var(--teal-500);}
.duo-tile h3{font-size:26px; line-height:1.18;}
.duo-bullets{list-style:none; padding:0; margin:8px 0 0; display:flex; flex-direction:column; gap:10px;}
.duo-bullets li{display:flex; gap:10px; font-size:14.5px; align-items:flex-start;}
.duo-bullets li::before{
  content:""; flex:none; width:18px; height:18px; border-radius:50%;
  background:var(--teal-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.5l2 2 5-5' stroke='%230D9488' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
  margin-top:1px;
}
.duo-tile.dark .duo-bullets li{color:rgba(255,255,255,0.85);}
.duo-tile.dark .duo-bullets li::before{
  background-color:rgba(45,212,191,0.18);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.5l2 2 5-5' stroke='%232DD4BF' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* No-signal illustration */
.no-signal{
  position:relative;
  background:radial-gradient(120% 80% at 30% 20%, rgba(20,184,166,0.18) 0%, transparent 60%), #0E2A28;
  border-radius:18px;
  padding:24px; height:160px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.no-signal-grid{
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(45,212,191,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(45,212,191,0.08) 1px, transparent 1px);
  background-size:22px 22px;
  mask-image:radial-gradient(circle at center, #000 30%, transparent 70%);
}

/* ─── PHASE TIMELINE (roadmap page) ─── */
.phase-timeline{display:flex; flex-direction:column; gap:0;}
.phase-timeline-item{display:grid; grid-template-columns:40px 1fr; gap:0 20px; position:relative;}
.ptl-marker{display:flex; flex-direction:column; align-items:center;}
.ptl-dot{
  width:18px; height:18px; border-radius:50%; flex-shrink:0; margin-top:4px;
  background:var(--slate-200); border:3px solid var(--bg-2);
  box-shadow:0 0 0 2px var(--slate-200);
}
.ptl-dot.done{background:var(--teal-600); box-shadow:0 0 0 2px var(--teal-100);}
.ptl-dot.active{
  background:var(--teal-500); box-shadow:0 0 0 2px var(--teal-100);
  animation:ptl-pulse 2s ease-out infinite;
}
@keyframes ptl-pulse{
  0%{box-shadow:0 0 0 2px var(--teal-100);}
  60%{box-shadow:0 0 0 8px rgba(45,212,191,0);}
  100%{box-shadow:0 0 0 2px var(--teal-100);}
}
.ptl-line{flex:1; width:2px; background:var(--slate-100); margin:6px 0;}
.ptl-body{padding:0 0 40px;}
.ptl-when{font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--slate-400); margin-bottom:6px;}
.ptl-when.done{color:var(--teal-700);}
.ptl-when.active{color:var(--teal-600);}
.phase-timeline-item:last-child .ptl-body{padding-bottom:0;}

/* Roadmap (Phase 2) */
.roadmap{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
  margin-top:32px;
}
@media (max-width:880px){.roadmap{grid-template-columns:1fr;}}
.roadmap-card{
  background:#fff; border:1px solid var(--slate-100);
  border-radius:var(--radius-md); padding:22px;
}
.roadmap-card .when{
  font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--slate-500);
}
.roadmap-card.next .when{color:var(--teal-700);}
.roadmap-card h4{margin-top:6px;}
.roadmap-card p{font-size:14px; margin-top:6px;}

/* ─── VERTICAL TIMELINE (about page) ─── */
.timeline{
  list-style:none; padding:0; margin:64px 0 0;
  position:relative;
  display:flex; flex-direction:column; gap:8px;
}
.timeline::before{
  content:""; position:absolute;
  left:140px; top:8px; bottom:8px; width:2px;
  background:linear-gradient(180deg, rgba(45,212,191,0.4) 0%, rgba(45,212,191,0.15) 100%);
}
.timeline-item{
  position:relative;
  display:grid; grid-template-columns:140px 1fr; gap:32px;
  padding:14px 0 14px 0;
}
.timeline-when{
  font-size:13px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(255,255,255,0.5);
  padding-top:6px;
  text-align:right;
  padding-right:24px;
}
.timeline-item.active .timeline-when{color:var(--teal-500);}
.timeline-item.future .timeline-when{color:#fff;}
.timeline-body{position:relative; padding-left:34px;}
.timeline-body::before{
  content:""; position:absolute;
  left:-7px; top:14px; width:14px; height:14px; border-radius:50%;
  background:var(--ink); border:2px solid rgba(255,255,255,0.25);
}
.timeline-item.active .timeline-body::before{
  background:var(--teal-500); border-color:var(--teal-500);
  box-shadow:0 0 0 4px rgba(45,212,191,0.18);
}
.timeline-item.future .timeline-body::before{
  background:#fff; border-color:#fff;
}
.timeline-body h4{font-size:22px; line-height:1.25; color:#fff;}
.timeline-body p{color:rgba(255,255,255,0.7); font-size:15.5px; margin-top:10px; max-width:560px;}

@media (max-width:720px){
  .timeline::before{left:8px;}
  .timeline-item{grid-template-columns:1fr; gap:6px; padding-left:32px;}
  .timeline-when{text-align:left; padding-right:0; padding-top:0;}
  .timeline-body{padding-left:0;}
  .timeline-body::before{left:-32px;}
}

/* ─── SOLO FOUNDER CARD ─── */
.builder-card{
  display:grid; grid-template-columns:auto 1fr; gap:40px;
  background:#fff; border:1px solid var(--slate-100);
  border-radius:var(--radius-lg);
  padding:48px;
  margin-top:48px;
  align-items:flex-start;
  box-shadow:var(--shadow-card);
}
.builder-portrait{
  width:160px; height:160px; border-radius:50%;
  background:linear-gradient(160deg, var(--teal-50), var(--teal-100));
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.builder-body h3{font-size:26px; line-height:1.25; letter-spacing:-0.01em;}
.builder-meta{
  display:flex; gap:36px; flex-wrap:wrap;
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--slate-100);
}
.builder-stat{font-size:30px; font-weight:700; letter-spacing:-0.02em; color:var(--ink);}
.builder-lbl{font-size:13px; color:var(--slate-500); margin-top:2px;}
@media (max-width:720px){
  .builder-card{grid-template-columns:1fr; padding:32px; gap:24px; text-align:center;}
  .builder-portrait{margin:0 auto;}
  .builder-meta{justify-content:center;}
}
.price-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:36px 32px;
  border:1px solid var(--slate-100);
  display:flex; flex-direction:column;
  position:relative;
  transition:transform 0.2s, box-shadow 0.2s;
}
.price-card.featured{
  background:var(--ink); color:#fff;
  border-color:var(--ink);
  transform:scale(1.02);
  box-shadow:var(--shadow-pop);
}
.price-card.featured p, .price-card.featured li{color:rgba(255,255,255,0.75);}
.price-tier{font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--teal-700);}
.price-card.featured .price-tier{color:var(--teal-500);}
.price-amount{font-size:56px; font-weight:700; letter-spacing:-0.02em; line-height:1; margin:14px 0 6px;}
.price-amount small{font-size:16px; font-weight:500; color:var(--slate-500); margin-left:4px;}
.price-card.featured .price-amount small{color:rgba(255,255,255,0.6);}
.price-list{list-style:none; padding:0; margin:24px 0 28px; display:flex; flex-direction:column; gap:10px;}
.price-list li{font-size:14.5px; color:var(--slate-700); display:flex; gap:10px; align-items:flex-start;}
.price-list li::before{
  content:""; flex-shrink:0; margin-top:6px;
  width:14px; height:14px; border-radius:50%;
  background:var(--teal-100);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.5l2 2 5-5' stroke='%230D9488' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size:14px;
}
.price-card.featured .price-list li::before{
  background:var(--teal-700);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.5l2 2 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.price-list-locked{color:var(--slate-400) !important; font-style:italic;}
.price-list-locked::before{
  background:var(--slate-100) !important;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M4.5 4.5l5 5M9.5 4.5l-5 5' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round'/></svg>") !important;
  background-size:14px !important;
}
.featured-tag{
  position:absolute; top:18px; right:18px;
  background:var(--teal-600); color:#fff;
  font-size:11px; font-weight:700; letter-spacing:0.06em;
  padding:6px 12px; border-radius:999px;
}

/* ─── FAQ ─── */
.faq-list{margin-top:40px;}
.faq{
  border-bottom:1px solid var(--slate-100);
  padding:24px 0;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  font-size:18px; font-weight:600;
}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{
  content:"+";
  font-size:24px; color:var(--teal-700);
  transition:transform 0.2s;
}
.faq[open] summary::after{transform:rotate(45deg);}
.faq p{margin-top:14px; font-size:15.5px;}

/* ─── ABOUT ─── */
.team-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
  margin-top:56px;
}
@media (max-width:880px){.team-grid{grid-template-columns:repeat(2,1fr);}}
.member{
  text-align:center;
}
.member-avatar{
  width:100%; aspect-ratio:1;
  border-radius:var(--radius-md);
  background:linear-gradient(160deg, var(--tan), var(--teal-100));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.member h4{font-size:16px;}
.member span{font-size:13px; color:var(--slate-500);}

/* ─── FOOTER ─── */
.site-footer{
  background:var(--ink);
  color:#fff;
  padding:80px 0 36px;
  margin-top:96px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:48px;
  margin-bottom:64px;
}
@media (max-width:880px){.footer-grid{grid-template-columns:repeat(2,1fr);}}
.footer-brand p{color:rgba(255,255,255,0.6); margin-top:20px; font-size:14.5px; max-width:280px;}
.footer-col h5{font-size:13px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.5); margin-bottom:18px; font-weight:600;}
.footer-col a{display:block; color:rgba(255,255,255,0.78); font-size:14.5px; padding:5px 0; transition:color 0.15s;}
.footer-col a:hover{color:#fff;}
.footer-bot{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:32px; border-top:1px solid rgba(255,255,255,0.08);
  font-size:13px; color:rgba(255,255,255,0.5); flex-wrap:wrap; gap:12px;
}
.footer-bot .brand{color:#fff;}
.site-footer .brand-mark{background:var(--teal-600);}

/* ─── PAGE HEADER (sub-pages) ─── */
.page-header{
  padding:120px 0 80px;
  background:
    radial-gradient(900px 500px at 80% 10%, var(--teal-50), transparent 60%),
    var(--bg);
  text-align:center;
}
.page-header .eyebrow{margin-bottom:14px;}
.page-header p{margin:24px auto 0; max-width:640px; font-size:19px;}

/* ─── DOWNLOAD PAGE HERO ─── */
.dl-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
  padding:96px 0;
}
@media (max-width:880px){.dl-hero{grid-template-columns:1fr; padding:64px 0;}}
.dl-screens{
  position:relative; height:580px;
}

/* ─── PHONE FRAME (static screenshot showcase) ─── */
.phone-frame{
  border-radius:36px;
  overflow:hidden;
  box-shadow:
    0 60px 120px -30px rgba(6,40,38,0.4),
    0 30px 60px -20px rgba(6,40,38,0.25),
    0 0 0 1px rgba(11,31,29,0.04);
  max-width:280px;
  margin:0 auto;
  background:#fff;
}
.phone-frame img{
  width:100%; display:block; height:auto;
}
.phone-duo{
  display:flex; gap:16px; align-items:flex-start; justify-content:center;
}
.phone-duo .phone-frame{flex:1; max-width:220px;}
@media (max-width:520px){
  .phone-duo{gap:10px;}
  .phone-duo .phone-frame{max-width:160px;}
}

/* utility */
.center{text-align:center;}
.muted{color:var(--slate-500);}
.spacer-sm{height:48px;}
.spacer-md{height:96px;}
.divider{height:1px; background:var(--slate-100); margin:96px 0;}

/* logo strip */
.logos{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:32px;
  padding:32px 0;
  opacity:0.6;
}
.logos span{font-weight:700; font-size:18px; color:var(--slate-500); letter-spacing:-0.01em;}

/* tweaks button (floating) */
.tweaks-fab{
  position:fixed; bottom:24px; right:24px; z-index:80;
  width:44px; height:44px; border-radius:50%;
  background:var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 40px -10px rgba(11,31,29,0.4);
  border:none;
}

/* ─── COMPLIANCE / PRE-LAUNCH ADDITIONS ─── */
.badge-phase2{
  display:inline-block;
  font-size:10px; font-weight:700; letter-spacing:0.08em;
  padding:3px 9px; border-radius:99px;
  background:#FEF3C7; color:#92400E;
  vertical-align:middle; margin-left:8px;
  text-transform:uppercase;
}

.disclaimer{
  font-size:12px; font-style:italic;
  color:var(--slate-400);
  margin-top:10px;
  line-height:1.5;
}

.disclosure{
  font-size:13px;
  color:var(--slate-700);
  background:var(--bg-2);
  border:1px solid var(--slate-200);
  border-radius:var(--radius-sm);
  padding:14px 18px;
  margin:24px 0;
  line-height:1.6;
}

.pricing-notice{
  font-size:14px;
  color:#1D4ED8;
  background:#EFF6FF;
  border:1px solid #BFDBFE;
  border-radius:var(--radius-sm);
  padding:14px 18px;
  margin-bottom:32px;
  line-height:1.6;
}

/* Blurred Phase 2 upcoming features */
.price-list-preview{
  list-style:none; padding:0; margin:0 0 4px;
  display:flex; flex-direction:column; gap:10px;
  filter:blur(5px);
  pointer-events:none;
  user-select:none;
  opacity:0.45;
  max-height:110px;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(180deg, black 0%, transparent 100%);
  mask-image:linear-gradient(180deg, black 0%, transparent 100%);
}
.price-list-preview li{
  font-size:14.5px; color:var(--slate-700);
  display:flex; gap:10px; align-items:flex-start;
}
.price-list-preview li::before{
  content:""; flex-shrink:0; margin-top:6px;
  width:14px; height:14px; border-radius:50%;
  background:var(--slate-100);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.5l2 2 5-5' stroke='%2394a3b8' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size:14px;
}
.price-coming-soon-tag{
  display:flex; align-items:center; justify-content:center; gap:5px;
  font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--slate-400);
  padding:6px 14px;
  background:var(--bg-2);
  border-radius:999px;
  border:1px solid var(--slate-100);
  align-self:center;
  margin:4px 0 20px;
}
