:root{
  --bg:#0A0A0F;
  --bg-2:#0F1016;
  --bg-card:#13141B;
  --bg-card-2:#181922;
  --ink:#F5F5FA;
  --ink-soft:#B8BACB;
  --muted:#7A7D91;
  --muted-2:#5A5D72;
  --line:rgba(255,255,255,0.08);
  --line-strong:rgba(255,255,255,0.14);
  --accent:#A78BFA;
  --accent-2:#8B5CF6;
  --accent-glow:rgba(167,139,250,0.18);
  --cyan:#22D3EE;
  --green:#10B981;
  --amber:#F59E0B;
  --font:'Geist',-apple-system,BlinkMacSystemFont,sans-serif;
  --mono:'Geist Mono','SF Mono',Consolas,monospace;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  font-feature-settings:'cv11','ss01','ss03';
}

/* Nav */
nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,15,0.72);
  backdrop-filter:blur(16px) saturate(180%);
  -webkit-backdrop-filter:blur(16px) saturate(180%);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1240px;
  margin:0 auto;
  padding:16px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
  font-size:15px;
  letter-spacing:-0.01em;
}
.logo-mark{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:15px;
  font-weight:800;
  letter-spacing:-0.03em;
  color:var(--accent);
  background:rgba(167,139,250,0.1);
  border:1px solid rgba(167,139,250,0.25);
  padding:5px 11px;
  border-radius:6px;
}
.nav-links{
  display:flex;
  gap:32px;
  align-items:center;
}
.nav-links a{
  color:var(--ink-soft);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  transition:color 0.15s;
}
.nav-links a:hover{color:var(--ink)}
.nav-links a.active{color:var(--ink)}
.nav-links a.active::after{
  content:"";
  display:block;
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--cyan));
  border-radius:2px;
  margin-top:4px;
}
.nav-cta{
  background:var(--ink);
  color:var(--bg)!important;
  padding:9px 16px;
  border-radius:8px;
  font-weight:500;
  transition:all 0.15s;
}
.nav-cta:hover{background:#E8E9F5!important}
.nav-cta.active::after{display:none}

/* Hero with glow */
.hero{
  position:relative;
  padding:120px 32px 120px;
  overflow:hidden;
}
.hero.hero-vertical{
  padding:88px 32px 64px;
}
.hero::before{
  content:"";
  position:absolute;
  top:-200px;
  left:50%;
  transform:translateX(-50%);
  width:900px;
  height:700px;
  background:radial-gradient(ellipse at center,var(--accent-glow) 0%,transparent 60%);
  pointer-events:none;
  z-index:1;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--line) 1px,transparent 1px),
    linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 70% 50% at 50% 30%,#000 30%,transparent 70%);
  -webkit-mask-image:radial-gradient(ellipse 70% 50% at 50% 30%,#000 30%,transparent 70%);
  pointer-events:none;
  z-index:1;
  opacity:0.7;
}
.hero-inner{
  max-width:1240px;
  margin:0 auto;
  position:relative;
  z-index:2;
  text-align:center;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px 6px 6px;
  background:rgba(19,20,27,0.6);
  border:1px solid var(--line-strong);
  border-radius:999px;
  font-size:13px;
  font-weight:500;
  color:var(--ink-soft);
  margin-bottom:36px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.hero-badge-tag{
  background:linear-gradient(135deg,var(--accent) 0%,var(--accent-2) 100%);
  color:#FFF;
  padding:3px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.02em;
  box-shadow:0 0 12px rgba(167,139,250,0.4);
}
.hero-title{
  font-size:clamp(44px,7vw,84px);
  line-height:1.02;
  font-weight:600;
  letter-spacing:-0.035em;
  color:var(--ink);
  margin-bottom:28px;
  max-width:880px;
  margin-left:auto;
  margin-right:auto;
}
.hero-vertical .hero-title{
  font-size:clamp(36px,5.5vw,60px);
  margin-bottom:20px;
}
.hero-title .gradient{
  background:linear-gradient(120deg,var(--accent) 0%,var(--cyan) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-sub{
  font-size:clamp(17px,1.5vw,20px);
  line-height:1.55;
  color:var(--ink-soft);
  max-width:620px;
  margin:0 auto 44px;
  font-weight:400;
}
.hero-vertical .hero-sub{margin-bottom:32px}
.hero-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-primary{
  background:var(--ink);
  color:var(--bg);
  padding:13px 24px;
  border-radius:10px;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  letter-spacing:-0.01em;
  transition:all 0.15s;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:0 0 0 1px var(--ink),0 8px 24px rgba(167,139,250,0.15);
}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 0 0 1px var(--ink),0 12px 32px rgba(167,139,250,0.25)}
.btn-primary .arrow{transition:transform 0.15s}
.btn-primary:hover .arrow{transform:translateX(3px)}
.btn-ghost{
  color:var(--ink);
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  padding:13px 24px;
  border-radius:10px;
  border:1px solid var(--line-strong);
  background:rgba(19,20,27,0.4);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:all 0.15s;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-ghost:hover{background:rgba(19,20,27,0.8);border-color:var(--ink-soft)}

/* Stats bar */
.stats-bar{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px 80px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  position:relative;
  z-index:2;
}
@media(max-width:820px){.stats-bar{grid-template-columns:repeat(2,1fr);margin:0 24px 64px}}
.stat{
  background:var(--bg-card);
  padding:28px 24px;
}
.stat-val{
  font-size:28px;
  font-weight:600;
  letter-spacing:-0.03em;
  color:var(--ink);
  margin-bottom:4px;
}
.stat-lbl{
  font-family:var(--mono);
  font-size:11px;
  font-weight:500;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--muted);
}

/* Section */
.section{
  max-width:1240px;
  margin:0 auto;
  padding:100px 32px;
  position:relative;
  z-index:2;
}
.section-tight{padding:60px 32px 100px}
.section-header{
  text-align:center;
  margin-bottom:64px;
}
.section-label{
  font-family:var(--mono);
  font-size:12px;
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:16px;
}
.section-title{
  font-size:clamp(34px,4.5vw,52px);
  line-height:1.08;
  font-weight:600;
  letter-spacing:-0.03em;
  color:var(--ink);
  margin-bottom:18px;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.section-intro{
  font-size:17px;
  line-height:1.55;
  color:var(--ink-soft);
  max-width:560px;
  margin:0 auto;
}

/* Products / Verticals — shared card grid */
.products{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.products-three{grid-template-columns:repeat(3,1fr)}
@media(max-width:820px){.products,.products-three{grid-template-columns:1fr}}
.product-single{
  max-width:620px;
  margin:0 auto;
}
.product-more{
  grid-column:1 / -1;
  max-width:620px;
  justify-self:center;
  width:100%;
}
@media(max-width:820px){
  .product-more{grid-column:auto}
}
.product{
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:32px 32px 28px;
  position:relative;
  transition:all 0.25s;
  overflow:hidden;
}
.product::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
  opacity:0;
  transition:opacity 0.25s;
}
.product:hover{
  border-color:var(--line-strong);
  transform:translateY(-2px);
  background:var(--bg-card-2);
}
.product:hover::before{opacity:0.8}
.product-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:24px;
}
.product-icon{
  width:44px;
  height:44px;
  border-radius:10px;
  background:rgba(167,139,250,0.12);
  border:1px solid rgba(167,139,250,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
}
.product-status{
  font-family:var(--mono);
  font-size:10px;
  font-weight:500;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:5px;
  background:rgba(245,158,11,0.15);
  color:var(--amber);
  border:1px solid rgba(245,158,11,0.25);
  display:inline-flex;
  align-items:center;
  gap:5px;
}
.product-status::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--amber);
  box-shadow:0 0 8px var(--amber);
}
.product-status.live{
  background:rgba(16,185,129,0.15);
  color:var(--green);
  border-color:rgba(16,185,129,0.25);
}
.product-status.live::before{background:var(--green);box-shadow:0 0 8px var(--green)}
.product-name{
  font-size:22px;
  font-weight:600;
  letter-spacing:-0.02em;
  color:var(--ink);
  margin-bottom:8px;
  text-align:center;
}
.product-domain{
  font-family:var(--mono);
  font-size:12px;
  font-weight:500;
  color:var(--muted);
  margin-bottom:16px;
  text-align:center;
}
.product-desc{
  font-size:14px;
  line-height:1.6;
  color:var(--ink-soft);
  margin-bottom:20px;
  text-align:center;
}
.product-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}
.meta-tag{
  font-family:var(--mono);
  font-size:11px;
  font-weight:500;
  color:var(--ink-soft);
  padding:4px 9px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:5px;
}

/* More products card - distinct visual */
.product-more{
  background:
    linear-gradient(180deg,rgba(167,139,250,0.04) 0%,transparent 100%),
    var(--bg-card);
  border:1px dashed var(--line-strong);
}
.product-more:hover{
  background:
    linear-gradient(180deg,rgba(167,139,250,0.07) 0%,transparent 100%),
    var(--bg-card-2);
  border-style:dashed;
}
.product-more .product-icon{
  background:rgba(167,139,250,0.08);
  border-color:rgba(167,139,250,0.18);
}
.product-more .product-status{
  background:rgba(167,139,250,0.12);
  color:var(--accent);
  border-color:rgba(167,139,250,0.25);
}
.product-more .product-status::before{
  background:var(--accent);
  box-shadow:0 0 8px var(--accent);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{opacity:1}
  50%{opacity:0.4}
}

/* Soft/dashed companion card — for "more coming" within a 2-col grid */
.product-soft{
  background:
    linear-gradient(180deg,rgba(167,139,250,0.04) 0%,transparent 100%),
    var(--bg-card);
  border:1px dashed var(--line-strong);
}
.product-soft:hover{
  background:
    linear-gradient(180deg,rgba(167,139,250,0.07) 0%,transparent 100%),
    var(--bg-card-2);
  border-style:dashed;
}
.product-soft .product-icon{
  background:rgba(167,139,250,0.08);
  border-color:rgba(167,139,250,0.18);
}
.product-soft .product-status{
  background:rgba(167,139,250,0.12);
  color:var(--accent);
  border-color:rgba(167,139,250,0.25);
}
.product-soft .product-status::before{
  background:var(--accent);
  box-shadow:0 0 8px var(--accent);
  animation:pulse 2s ease-in-out infinite;
}

/* TikTok / social row on vertical pages */
.social-row{
  max-width:620px;
  margin:24px auto 0;
  display:flex;
  justify-content:center;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:10px;
  text-decoration:none;
  color:var(--ink-soft);
  font-size:14px;
  font-weight:500;
  transition:all 0.15s;
}
.social-link:hover{background:rgba(255,255,255,0.06);border-color:var(--line-strong);color:var(--ink)}
.social-link .handle{font-family:var(--mono);color:var(--accent)}

/* Principles */
.principles-section{
  background:var(--bg-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:100px 32px;
  position:relative;
  z-index:2;
}
.principles-inner{
  max-width:1240px;
  margin:0 auto;
}
.principles{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:56px;
}
@media(max-width:820px){.principles{grid-template-columns:1fr;gap:16px}}
.principle{
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:28px;
  transition:all 0.2s;
}
.principle:hover{border-color:var(--line-strong);background:var(--bg-card-2)}
.principle-num{
  font-family:var(--mono);
  font-size:12px;
  font-weight:500;
  color:var(--accent);
  margin-bottom:18px;
  letter-spacing:0.05em;
}
.principle-head{
  font-size:17px;
  font-weight:600;
  color:var(--ink);
  letter-spacing:-0.01em;
  margin-bottom:10px;
}
.principle-text{
  font-size:14px;
  line-height:1.6;
  color:var(--ink-soft);
}

/* Contact */
.contact-section{
  padding:100px 32px;
  max-width:1240px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.contact-card{
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%,rgba(167,139,250,0.18) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%,rgba(34,211,238,0.12) 0%,transparent 60%),
    var(--bg-card);
  border:1px solid var(--line-strong);
  border-radius:20px;
  padding:60px 56px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
@media(max-width:820px){.contact-card{grid-template-columns:1fr;padding:40px 32px;gap:40px}}
.contact-heading{
  font-size:clamp(30px,3.5vw,40px);
  line-height:1.1;
  font-weight:600;
  letter-spacing:-0.025em;
  margin-bottom:16px;
  color:var(--ink);
  text-align:center;
}
.contact-sub{
  font-size:15px;
  line-height:1.6;
  color:var(--ink-soft);
  text-align:center;
}
.contact-card .section-label{
  text-align:center;
}
.contact-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.contact-row{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:18px 20px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:10px;
  transition:all 0.15s;
  text-decoration:none;
  text-align:center;
  align-items:center;
}
.contact-row:hover{background:rgba(255,255,255,0.06);border-color:var(--line-strong)}
.contact-lbl{
  font-family:var(--mono);
  font-size:11px;
  font-weight:500;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.contact-val{
  font-size:15px;
  color:var(--ink);
  font-weight:500;
  letter-spacing:-0.01em;
  line-height:1.45;
}

/* Compact contact strip for vertical pages */
.contact-strip{
  max-width:720px;
  margin:0 auto;
  padding:32px;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:14px;
  text-align:center;
}
.contact-strip-text{
  font-size:15px;
  color:var(--ink-soft);
  margin-bottom:12px;
}
.contact-strip a{
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}
.contact-strip a:hover{color:var(--cyan)}

/* Footer */
footer{
  border-top:1px solid var(--line);
  padding:40px 32px 32px;
  background:var(--bg-2);
}
.footer-inner{
  max-width:1240px;
  margin:0 auto;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  color:var(--ink);
  letter-spacing:-0.01em;
  font-size:15px;
}
.footer-mark{
  font-family:var(--mono);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.15em;
  color:var(--accent);
  background:rgba(167,139,250,0.1);
  border:1px solid rgba(167,139,250,0.25);
  padding:5px 10px;
  border-radius:6px;
}
.footer-copy{
  font-size:13px;
  color:var(--muted);
}
.footer-disclaimer{
  padding-top:24px;
  font-size:11px;
  line-height:1.65;
  color:var(--muted);
}

/* Animations */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-badge,.hero-title,.hero-sub,.hero-cta{
  opacity:0;
  animation:fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-badge{animation-delay:0.05s}
.hero-title{animation-delay:0.15s}
.hero-sub{animation-delay:0.25s}
.hero-cta{animation-delay:0.35s}

@media(max-width:640px){
  .nav-links{gap:18px}
  .nav-links a:not(.nav-cta){font-size:13px}
  .hero{padding:60px 24px 80px}
  .hero.hero-vertical{padding:56px 24px 48px}
  .stats-bar{padding:0 24px 60px}
  .section{padding:72px 24px}
  .principles-section{padding:72px 24px}
  .contact-section{padding:72px 24px}
  .nav-inner{padding:14px 20px}
}

/* ─────────────────────────────────────────────
   Vertical color systems
   "Coming soon" / "in development" status badges
   and product names adopt each vertical's
   secondary brand color (matching avatars).
   Live products keep neutral styling.
   ───────────────────────────────────────────── */

/* Finance — deep amber secondary */
body.v-finance .product .product-status:not(.live),
.card-finance .product-status:not(.live){
  background:rgba(217,119,6,0.15);
  color:#D97706;
  border-color:rgba(217,119,6,0.25);
}
body.v-finance .product .product-status:not(.live)::before,
.card-finance .product-status:not(.live)::before{
  background:#D97706;
  box-shadow:0 0 8px #D97706;
}
/* Vertical page: only color the name on non-live cards */
body.v-finance .product:has(.product-status:not(.live)) .product-name{
  color:#D97706;
}
/* Home card: always color the name to match vertical brand */
.card-finance .product-name{
  color:#D97706;
}

/* Expat — sky blue secondary */
body.v-expat .product .product-status:not(.live),
.card-expat .product-status:not(.live){
  background:rgba(96,165,250,0.15);
  color:#60A5FA;
  border-color:rgba(96,165,250,0.25);
}
body.v-expat .product .product-status:not(.live)::before,
.card-expat .product-status:not(.live)::before{
  background:#60A5FA;
  box-shadow:0 0 8px #60A5FA;
}
body.v-expat .product:has(.product-status:not(.live)) .product-name{
  color:#60A5FA;
}
.card-expat .product-name{
  color:#60A5FA;
}

/* Prep — red secondary */
body.v-prep .product .product-status:not(.live),
.card-prep .product-status:not(.live){
  background:rgba(239,68,68,0.15);
  color:#EF4444;
  border-color:rgba(239,68,68,0.25);
}
body.v-prep .product .product-status:not(.live)::before,
.card-prep .product-status:not(.live)::before{
  background:#EF4444;
  box-shadow:0 0 8px #EF4444;
}
body.v-prep .product:has(.product-status:not(.live)) .product-name{
  color:#EF4444;
}
.card-prep .product-name{
  color:#EF4444;
}

/* Single-card centered layout */
.products.product-single{
  grid-template-columns:1fr;
}
