/*!
 * Supernova Longevity — main design system
 * Color palette sourced from brand kit (supernova-longevity.html reference build).
 */

:root{
  --bg:#FFFFFF;
  --bg-alt:#F7F6FC;
  --bg-dark:#100E28;
  --ink:#15132E;
  --purple:#7C3AED;
  --purple-light:#B9A4F5;
  --purple-dark:#5B21B6;
  /* Legacy multi-color tokens — kept only so nothing errors if referenced;
     the design now uses --purple as the single accent throughout for a
     cleaner, more minimal feel (closer to the Karpa Health reference). */
  --magenta:#7C3AED;
  --blue:#7C3AED;
  --cyan:#B9A4F5;
  --muted:#5B5675;
  --muted-dim:#8B86A6;
  --line: rgba(21,19,46,0.10);
  --line-dark: rgba(248,247,255,0.12);
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(21,19,46,0.05);
  --shadow-md: 0 12px 32px rgba(21,19,46,0.09);
  --shadow-cta: 0 10px 30px rgba(124,58,237,0.24);
}

*{box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  /* Belt-and-braces fix for mobile horizontal scroll: a handful of
     decorative elements (the hero glow, the orbit visual) are deliberately
     wider than their container and rely on an ancestor's overflow:hidden to
     get clipped. This guarantees the document never scrolls sideways even
     if a plugin or a future edit introduces an overflow.

     Deliberately NOT applied to <body> as well: setting overflow-x on body
     turns it into a scroll container (overflow-y silently computes to
     "auto" per the CSS overflow spec when only one axis is set), and any
     position:sticky descendant — our nav bar — then sticks relative to
     that new container instead of the real viewport, which breaks the
     sticky header entirely. html-only avoids that trap.
  */
  overflow-x:hidden;
  max-width:100%;
}
body.supernova-longevity{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  margin:0;
}
h1,h2,h3,h4{font-family:'Manrope',sans-serif; font-weight:600; letter-spacing:-0.015em; margin:0;}
p{margin:0 0 1em;}
img{max-width:100%; height:auto; display:block;}
picture{
  /* NOT display:contents — its interaction with grid/flex item promotion
     is inconsistent across browsers and was silently collapsing the
     GLP/Peptide page intros from 2 columns to 1. A plain block box behaves
     identically to a bare <img> here and is far more predictable. */
  display:block; line-height:0;
}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
a{color:inherit; text-decoration:none;}
.screen-reader-text{position:absolute; left:-9999px;}
.skip-link{position:fixed; top:-60px; left:12px; z-index:9999; background:#fff; color:var(--ink); padding:10px 16px; border-radius:8px; transition:top .2s ease;}
.skip-link:focus{top:12px;}

.eyebrow{
  font-family:'Inter',sans-serif; font-size:12px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--purple); font-weight:500; display:inline-flex; align-items:center; gap:8px;
}
.eyebrow::before{content:''; width:14px; height:1px; background:var(--purple); display:inline-block;}
.eyebrow.on-dark{color:var(--cyan);}
.eyebrow.on-dark::before{background:var(--cyan);}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 32px; border-radius:999px; font-weight:600; font-size:15.5px; line-height:1;
  cursor:pointer; border:1px solid transparent; transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  font-family:'Manrope',sans-serif;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--purple); color:#fff; box-shadow:var(--shadow-cta);}
.btn-primary:hover{background:var(--purple-dark); box-shadow:0 14px 38px rgba(124,58,237,0.34);}
.btn-ghost{border-color:var(--line); color:var(--ink); background:#fff;}
.btn-ghost:hover{border-color:rgba(21,19,46,0.28); background:var(--bg-alt);}
.btn-ghost.on-dark{color:#fff; border-color:var(--line-dark); background:rgba(255,255,255,0.04);}
.btn-ghost.on-dark:hover{border-color:rgba(255,255,255,0.35); background:rgba(255,255,255,0.08);}
.btn-small{padding:10px 20px; font-size:13.5px;}

/* NAV */
.site-nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.9); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  margin:0;
}
/* GeneratePress (the parent theme) applies its own default vertical
   rhythm to elements named/classed like a typical content wrapper. Our
   <main class="site-main"> collides with that naming, which can push the
   very first section down and show as a gap under the nav border. Force
   it back to zero regardless of what the parent stylesheet does. */
.site-main{margin:0 !important; padding:0 !important;}
.site-main > *:first-child{margin-top:0 !important;}
.site-nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 32px; gap:20px; flex-wrap:nowrap; line-height:1;
}
.logo{display:flex; align-items:center; min-width:0; flex-shrink:1;}
.logo-link{display:flex; align-items:center; gap:10px; font-family:'Manrope',sans-serif; font-weight:700; font-size:16px; line-height:1; letter-spacing:0.01em; color:var(--ink); min-width:0;}

/* Constrain any custom logo uploaded via Appearance > Customize so it never
   overpowers the nav bar or footer, regardless of the source image's dimensions. */
.logo img, .logo .custom-logo{
  max-height:38px; width:auto; height:auto; display:block;
}
.custom-logo-link{display:flex; align-items:center;}
.foot-logo{margin-bottom:16px;}
.foot-logo img, .foot-logo .custom-logo{max-height:32px; filter:none;}

.logo-mark{
  width:28px; height:28px; border-radius:50%; background:var(--purple); position:relative; flex-shrink:0;
  box-shadow:0 4px 14px rgba(124,58,237,0.35);
}
.logo-mark::after{content:'\2733'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:13px; color:#fff;}
.logo-text{white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:44vw; min-width:0; display:inline-block;}
.logo-sub{display:block; font-family:'Inter',sans-serif; font-size:9px; letter-spacing:0.14em; color:var(--muted-dim); font-weight:400; text-transform:uppercase; margin-top:1px; white-space:normal;}

.nav-links-wrap{display:flex; align-items:center; gap:clamp(14px,2vw,32px); flex-shrink:1; min-width:0;}
.nav-links{
  display:flex; align-items:center; gap:clamp(12px,1.6vw,30px); font-size:14px; color:var(--muted);
  font-weight:600; list-style:none; margin:0; padding:0; flex-wrap:nowrap; line-height:1;
}
.nav-links li{position:relative;}
.nav-links a{white-space:nowrap;}
.nav-links a:hover, .nav-links .current-menu-item > a{color:var(--ink);}
.nav-links ul.sub-menu{list-style:none; margin:0; padding:12px; position:absolute; top:100%; left:0; background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-md); min-width:220px; display:none;}
.nav-links li:hover > ul.sub-menu, .nav-links li:focus-within > ul.sub-menu{display:block;}
.nav-links ul.sub-menu li{padding:6px 8px;}
.nav-cta{display:flex; align-items:center; gap:16px; flex-shrink:0;}
.nav-mobile-hide{display:flex;}
.nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; flex-shrink:0;}
.nav-toggle-bar{width:22px; height:2px; background:var(--ink); display:block; transition:transform .2s ease, opacity .2s ease;}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){opacity:0;}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(4){transform:translateY(-7px) rotate(-45deg);}

/* Tighten spacing progressively before the nav ever needs to wrap. */
@media (max-width:1180px){
  .site-nav .wrap{padding:14px 24px;}
}
@media (max-width:1024px){
  .logo-sub{display:none;}
}

/* Collapse to the mobile menu once there isn't comfortable room for every
   nav item + the CTA on one line (long custom logos included). */
@media (max-width:900px){
  .site-nav .wrap{flex-wrap:wrap; row-gap:0;}
  .nav-links-wrap{
    order:3; width:100%;
    flex-direction:column; align-items:flex-start;
    max-height:0; overflow:hidden; gap:0;
    transition:max-height .28s ease;
  }
  .nav-links-wrap.is-open{max-height:70vh; overflow-y:auto; padding-top:18px;}
  .nav-links{
    flex-direction:column; align-items:flex-start; gap:2px; width:100%;
  }
  .nav-links li{width:100%;}
  .nav-links a{display:block; padding:12px 4px; border-top:1px solid var(--line); width:100%;}
  .nav-links li:first-child a{border-top:none;}
  .nav-links ul.sub-menu{position:static; box-shadow:none; border:none; padding:0 0 0 16px; display:block;}
  .nav-cta{width:100%; padding:16px 4px 4px; flex-direction:column; align-items:stretch;}
  .nav-cta .btn{width:100%;}
  .nav-toggle{display:flex;}
  .logo-text{max-width:60vw;}
}
@media (max-width:480px){
  .site-nav .wrap{padding:12px 18px;}
  .logo-link{gap:8px; font-size:14px;}
  .logo-text{max-width:52vw;}
  .logo img, .logo .custom-logo{max-height:30px;}
}

/* HERO — kept deliberately plain/minimal (single soft glow, no starfield,
   no rainbow gradient) to match the clean Karpa Health reference. */
header.hero{position:relative; padding:88px 0 76px; overflow:hidden; background:var(--bg-dark); color:#fff;}
header.hero.hero-inner{padding:72px 0 56px;}
/* Homepage hero only: fill the first viewport so it reads as a full-screen
   opening section, the way example.karpahealth.com's hero does. A real photo
   sits behind the content with a dark, muted vignette scrim so the copy
   stays readable and the whole thing reads as a calm, professional backdrop
   rather than a bright stock photo competing with the text. Content is
   centered and wide, not confined to a narrow column. */
header.hero.hero-full{
  min-height:100vh; min-height:100svh;
  display:flex; align-items:center; justify-content:center;
  padding-top:56px; padding-bottom:56px;
  text-align:center;
  background-image:
    radial-gradient(ellipse at center, rgba(13,11,32,0.86) 0%, rgba(13,11,32,0.74) 45%, rgba(13,11,32,0.62) 100%),
    url('../img/hero-galaxy.jpg');
  background-size:cover;
  background-position:center;
}
header.hero.hero-full .wrap{max-width:1280px; margin:0 auto;}
header.hero.hero-full .wrap > *{max-width:920px; margin-left:auto; margin-right:auto;}
header.hero.hero-full .eyebrow{justify-content:center;}
header.hero.hero-full .hero-ctas{max-width:none; justify-content:center;}
header.hero.hero-full .hero-trust{justify-content:center;}
@media (max-width:640px){
  header.hero.hero-full{
    padding-top:56px; padding-bottom:56px;
    background-image:
      radial-gradient(ellipse at center, rgba(13,11,32,0.90) 0%, rgba(13,11,32,0.88) 100%),
      url('../img/hero-galaxy.jpg');
  }
}
.hero-glow{
  position:absolute; top:-260px; left:50%; transform:translateX(-50%);
  width:760px; height:760px; border-radius:50%;
  background:radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 68%);
  filter:blur(10px); z-index:0; pointer-events:none;
}
.hero-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; position:relative; z-index:1;}
@media (max-width:960px){ .hero-grid{grid-template-columns:1fr;} }
.hero h1{font-size:clamp(38px,6vw,72px); line-height:1.06; font-weight:700; margin:18px 0 22px; color:#fff; position:relative; z-index:1;}
.hero h1 .grad{color:var(--purple-light);}
.hero p.sub{font-size:18.5px; color:rgba(255,255,255,0.75); max-width:560px; margin-bottom:30px; position:relative; z-index:1;}
header.hero.hero-full p.sub{max-width:720px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:22px; align-items:center; position:relative; z-index:1;}
.hero-risk{font-size:12.5px; color:rgba(255,255,255,0.55); margin-bottom:26px; max-width:720px; line-height:1.6;}
.hero-risk a{text-decoration:underline; color:rgba(255,255,255,0.75);}
.hero-trust{display:flex; gap:20px; flex-wrap:wrap; font-family:'Inter',sans-serif; font-size:11.5px; color:rgba(255,255,255,0.55); letter-spacing:0.03em; position:relative; z-index:1;}
.hero-trust span{display:flex; align-items:center; gap:7px;}
.hero-trust span::before{content:''; width:5px; height:5px; border-radius:50%; background:var(--cyan);}

/* ORBIT (homepage visual) */
.orbit-stage{position:relative; width:100%; aspect-ratio:1/1; max-width:440px; margin:0 auto;}
.orbit-ring{position:absolute; border:1px solid rgba(255,255,255,0.14); border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%);}
.ring1{width:100%; height:100%;}
.ring2{width:70%; height:70%;}
.orbit-core{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:128px; height:128px; border-radius:50%; background:var(--purple);
  display:flex; align-items:center; justify-content:center; text-align:center;
  box-shadow:0 0 60px rgba(124,58,237,0.55), inset 0 0 30px rgba(255,255,255,0.18); z-index:3;
}
.orbit-core-inner{font-family:'Inter',sans-serif; font-size:10.5px; letter-spacing:0.06em; font-weight:500; color:#fff; line-height:1.3; padding:0 10px;}
.orbit-spin{position:absolute; inset:0; animation:snl-spin 42s linear infinite;}
@keyframes snl-spin{ from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.node{
  position:absolute; width:96px; padding:9px 10px; border-radius:12px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16);
  font-size:11px; font-weight:600; text-align:center; color:#fff;
  backdrop-filter:blur(6px); animation:snl-counter-spin 42s linear infinite;
}
@keyframes snl-counter-spin{ from{transform:rotate(0deg);} to{transform:rotate(-360deg);} }
.node .dot{width:6px; height:6px; border-radius:50%; margin:0 auto 5px;}
@media (prefers-reduced-motion: reduce){ .orbit-spin, .node{animation:none !important;} }

/* TRUST STRIP */
.strip{border-bottom:1px solid var(--line); padding:22px 0; background:var(--bg-alt);}
.strip .wrap{display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; font-family:'Inter',sans-serif; font-size:12px; color:var(--muted); letter-spacing:0.03em;}
.strip .wrap div{display:flex; align-items:center; gap:8px;}
.strip .wrap div::before{content:''; width:6px; height:6px; border-radius:50%; background:var(--purple);}

.section, section{padding:84px 0; position:relative;}
.section-alt{background:var(--bg-alt);}
.section-head{max-width:660px; margin-bottom:48px;}
.section-head h2{font-size:clamp(26px,3.2vw,36px); font-weight:600; margin:14px 0 16px; line-height:1.16; color:var(--ink);}
.section-head p{color:var(--muted); font-size:16.5px;}

/* HOW IT WORKS */
.steps-row{display:grid; grid-template-columns:repeat(3,1fr); gap:0; position:relative;}
@media (max-width:860px){ .steps-row{grid-template-columns:1fr; gap:36px;} }
.steps-row::before{content:''; position:absolute; top:26px; left:8%; right:8%; height:1px; background:var(--line);}
@media (max-width:860px){ .steps-row::before{display:none;} }
.step{padding:0 26px; position:relative;}
.step:first-child{padding-left:0;}
.step:last-child{padding-right:0;}
.step-index{
  width:52px; height:52px; border-radius:50%; background:#fff; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-family:'Inter',sans-serif; font-size:14px; color:var(--purple);
  margin-bottom:22px; position:relative; z-index:1; box-shadow:var(--shadow-sm);
}
.step h4{font-size:18px; font-weight:600; margin-bottom:10px;}
.step p{color:var(--muted); font-size:14.5px;}

/* SERVICE / PATHWAY CARDS */
.pathways-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:860px){ .pathways-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .pathways-grid{grid-template-columns:1fr;} }
.pathways-grid--single{grid-template-columns:1fr; max-width:520px; margin:0 auto;}
@media (max-width:860px){ .pathways-grid--single{grid-template-columns:1fr;} }
.pathways-grid--two{grid-template-columns:1fr 1fr; max-width:920px; margin:0 auto;}
@media (max-width:640px){ .pathways-grid--two{grid-template-columns:1fr;} }

/* SINGLE-SERVICE FEATURE PANEL — a wide, substantial card (photo + content)
   used in place of a lonely small grid card now that there's one service. */
.service-feature{
  display:grid; grid-template-columns:1fr 1fr; align-items:stretch;
  border:1px solid var(--line); border-radius:28px; overflow:hidden;
  background:#fff; box-shadow:var(--shadow-md);
}
.service-feature-media{position:relative; min-height:360px;}
.service-feature-media picture{height:100%;}
.service-feature-media img{width:100%; height:100%; object-fit:cover; display:block;}
.service-feature-body{padding:52px; display:flex; flex-direction:column; justify-content:center;}
.service-feature-body .panel-tag{margin-bottom:2px;}
.service-feature-body h3{font-size:clamp(24px,2.6vw,30px); font-weight:600; margin:14px 0 16px; line-height:1.2; color:var(--ink);}
.service-feature-body > p{color:var(--muted); font-size:15.5px; margin-bottom:6px;}
.service-feature-body .core-list{margin:14px 0 26px;}
.service-feature-body .btn{align-self:flex-start;}
@media (max-width:860px){
  .service-feature{grid-template-columns:1fr; border-radius:22px;}
  .service-feature-media{min-height:260px;}
  .service-feature-body{padding:36px 30px;}
}
@media (max-width:480px){
  .service-feature-body{padding:28px 22px;}
}
.path-card{
  border:1px solid var(--line); border-radius:var(--radius); background:#fff; overflow:hidden;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.path-card:hover{transform:translateY(-4px); border-color:rgba(124,58,237,0.3); box-shadow:var(--shadow-md);}
.path-card-body{padding:24px 24px 28px;}
.path-mark{width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:17px;}
.path-card h4{font-size:17px; font-weight:600; margin-bottom:8px;}
.path-card p{font-size:14px; color:var(--muted-dim); line-height:1.6; margin-bottom:0;}
.path-tag{font-family:'Inter',sans-serif; font-size:10px; letter-spacing:0.08em; color:var(--muted-dim); text-transform:uppercase; display:block; margin-top:14px;}

/* Branded placeholder used anywhere the design calls for a real photo. */
.snl-img-placeholder{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  background:rgba(124,58,237,0.06);
  border:1px dashed rgba(124,58,237,0.3); border-radius:var(--radius);
  color:var(--purple); text-align:center; padding:20px;
}
.snl-img-placeholder .snl-icon{opacity:0.7;}
.snl-img-placeholder-label{font-family:'Inter',sans-serif; font-size:11px; letter-spacing:0.04em; color:var(--muted); max-width:220px; line-height:1.5;}
.snl-img-placeholder--wide{aspect-ratio:16/10;}
.snl-img-placeholder--square{aspect-ratio:1/1;}
.snl-img-placeholder--tall{aspect-ratio:4/5;}
.path-card .snl-img-placeholder{border-radius:0; border-width:0 0 1px;}
.path-image{width:100%; aspect-ratio:16/10; object-fit:cover; display:block;}

/* Real photography used in two-column intro sections (GLP / Peptide pages). */
.snl-intro-image{
  width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:var(--radius);
  box-shadow:var(--shadow-md); border:1px solid var(--line);
}
@media (max-width:900px){ .snl-intro-image{aspect-ratio:16/9;} }

/* Inline SVG icon set — replaces emoji/dingbat glyphs everywhere. */
.snl-icon{display:block; flex-shrink:0;}
.g-icon .snl-icon{width:18px; height:18px;}
.contact-card .g-icon .snl-icon{width:20px; height:20px;}

/* PANEL VISUAL */
.panel-visual{
  border-radius:24px; border:1px solid var(--line); background:#fff; box-shadow:var(--shadow-md);
  padding:32px; position:relative; overflow:hidden;
}
.panel-visual::before{
  content:''; position:absolute; width:240px; height:240px; border-radius:50%;
  background:radial-gradient(circle, rgba(124,58,237,0.08), transparent 70%);
  top:-70px; right:-70px;
}
.panel-row{display:flex; justify-content:space-between; align-items:center; padding:13px 0; border-bottom:1px dashed var(--line); font-size:14px; position:relative; z-index:1;}
.panel-row:last-child{border-bottom:none;}
.panel-row .lbl{color:var(--muted);}
.panel-row .val{color:var(--ink); font-weight:600; display:flex; align-items:center; gap:8px;}
.status-dot{width:6px; height:6px; border-radius:50%; background:var(--purple);}
.panel-tag{display:inline-block; font-family:'Inter',sans-serif; font-size:10.5px; letter-spacing:0.08em; color:var(--purple); border:1px solid rgba(124,58,237,0.3); padding:5px 10px; border-radius:999px; margin-bottom:18px; position:relative; z-index:1;}

/* CORE GRID (two-column feature blocks) */
.core-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;}
@media (max-width:900px){ .core-grid{grid-template-columns:1fr; gap:40px;} }
.core-grid h2{font-size:clamp(26px,3.2vw,34px); font-weight:600; margin:14px 0 18px; line-height:1.16;}
.core-grid p{color:var(--muted); font-size:16px; margin-bottom:18px;}
.core-list{list-style:none; margin:0; padding:0;}
.core-list li{display:flex; gap:14px; padding:14px 0; border-top:1px solid var(--line); font-size:15px; color:var(--muted);}
.core-list li:last-child{border-bottom:1px solid var(--line);}
.core-list li::before{content:'\2713'; color:var(--purple); font-weight:700; flex-shrink:0;}

/* BENEFITS / PROMISE LIST */
.chip-list{display:flex; flex-wrap:wrap; gap:12px; margin:0; padding:0; list-style:none;}
.chip-list li{
  padding:12px 20px; border-radius:999px; border:1.5px solid var(--line); background:#fff;
  font-size:14px; font-weight:600; color:var(--ink);
}

/* GUARANTEE / TRUST GRID */
.guarantee-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media (max-width:860px){ .guarantee-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .guarantee-grid{grid-template-columns:1fr;} }
.guarantee-card{
  border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px; background:#fff;
  box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.guarantee-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:rgba(124,58,237,0.25);}
.guarantee-icon{width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; background:rgba(124,58,237,0.10); color:var(--purple);}
.guarantee-card h4{font-size:15.5px; font-weight:600; margin-bottom:6px;}
.guarantee-card p{font-size:13.5px; color:var(--muted-dim); line-height:1.6; margin:0;}

.g-icon{width:36px; height:36px; border-radius:50%; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0;}

/* COMPLIANCE NOTE CALLOUT */
.compliance-note{border:1px solid var(--line); border-radius:var(--radius); background:var(--bg-alt); padding:28px 32px; font-size:14.5px; color:var(--muted); line-height:1.7;}

/* FAQ */
.faq-item{border-top:1px solid var(--line); transition:background-color .15s ease;}
.faq-item:last-child{border-bottom:1px solid var(--line);}

/* Reset every interactive state explicitly — GeneratePress (the parent
   theme) applies its own default background/color to <button> on
   hover/focus, which will otherwise show through as an unstyled full-bleed
   dark box since a bare .faq-q rule only covers the resting state. */
.faq-q,
.faq-q:hover,
.faq-q:focus,
.faq-q:active{
  width:100%; text-align:left; background:transparent; border:none; margin:0;
  -webkit-appearance:none; appearance:none; border-radius:0;
  color:var(--ink); box-shadow:none; outline:none;
}
.faq-q{
  font-family:'Manrope',sans-serif; font-size:17px; font-weight:600; line-height:1.4;
  padding:22px 4px; display:flex; justify-content:space-between; align-items:center;
  gap:20px; cursor:pointer; transition:color .15s ease;
}
.faq-q:hover, .faq-item.open .faq-q{color:var(--purple);}
.faq-q:focus-visible{outline:2px solid var(--purple); outline-offset:-2px; border-radius:6px;}
.faq-q .plus{font-family:'Inter',sans-serif; font-size:20px; color:var(--purple); transition:transform .25s ease; flex-shrink:0;}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{color:var(--muted); font-size:14.5px; padding:0 4px 24px; max-width:720px; line-height:1.65; margin:0;}

/* CTA BAND — deliberately narrower than the full 1180px wrap so the dark
   card reads as a focused, designed panel rather than a stretched-out
   empty rectangle; every text element inside shares one center alignment. */
.cta-band{
  text-align:center; border-radius:28px; padding:72px 48px; position:relative; overflow:hidden;
  background:var(--bg-dark); color:#fff; max-width:1080px; margin:0 auto;
}
.cta-band .hero-glow{top:-160px;}
.cta-band h2{font-size:clamp(26px,3.6vw,38px); margin:0 auto 16px; max-width:720px; position:relative; z-index:1; color:#fff;}
.cta-band p{color:rgba(255,255,255,0.7); max-width:620px; margin:0 auto 30px; font-size:16px; text-align:center; position:relative; z-index:1;}
.cta-band .btn{position:relative; z-index:1;}
.cta-band .hero-risk{position:relative; z-index:1; margin:18px auto 0; text-align:center; max-width:640px;}
.cta-band .snl-mini-disclaimer{
  position:relative; z-index:1; margin:18px auto 0; text-align:center; max-width:640px;
  color:rgba(255,255,255,0.55);
}
.cta-band .snl-mini-disclaimer a{color:rgba(255,255,255,0.85);}
.cta-band .snl-mini-disclaimer a:hover{color:#fff;}
@media (max-width:640px){ .cta-band{padding:56px 28px;} }

/* CONTACT PAGE */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
@media (max-width:640px){ .contact-grid{grid-template-columns:1fr;} }
.contact-card{border:1px solid var(--line); border-radius:var(--radius); padding:32px 28px; background:#fff; text-align:center; box-shadow:var(--shadow-sm);}
.contact-card .g-icon{width:44px; height:44px; font-size:19px; margin:0 auto 16px;}
.contact-card h3{font-size:18px; font-weight:600; margin-bottom:8px;}
.contact-card p{color:var(--muted); font-size:14.5px; margin-bottom:20px;}

/* ABOUT PAGE */
.about-founders{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center;}
@media (max-width:860px){ .about-founders{grid-template-columns:1fr;} }
.about-photo{border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-md); background:var(--bg-alt); aspect-ratio:4/5; display:flex; align-items:center; justify-content:center; color:var(--muted-dim); font-family:'Inter',sans-serif; font-size:12px; text-align:center; padding:20px;}
.about-founders blockquote{font-family:'Manrope',sans-serif; font-size:22px; line-height:1.45; color:var(--ink); margin:0 0 20px; font-weight:600;}
.about-founders .signature{font-family:'Inter',sans-serif; font-size:13px; color:var(--muted-dim);}
.value-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:16px;}
@media (max-width:860px){ .value-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .value-grid{grid-template-columns:1fr;} }
.value-card{border:1px solid var(--line); border-radius:var(--radius); padding:24px; background:#fff; text-align:center;}
.value-card .g-icon{margin:0 auto 14px;}

/* FOOTER */
.site-footer{border-top:1px solid var(--line); padding:64px 0 32px; font-size:13px; color:var(--muted-dim); background:var(--bg-alt); text-align:left;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px;}
@media (max-width:760px){ .foot-grid{grid-template-columns:1fr 1fr; row-gap:32px;} }
@media (max-width:480px){ .foot-grid{grid-template-columns:1fr; row-gap:28px;} }
.foot-grid h5{font-family:'Inter',sans-serif; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); margin-bottom:16px;}
.foot-grid ul{list-style:none; margin:0; padding:0;}
.foot-grid li{margin-bottom:10px;}
.foot-grid a{color:var(--muted); font-weight:500;}
.foot-grid a:hover{color:var(--ink);}
.foot-legal{border-top:1px solid var(--line); padding-top:28px; font-size:12px; line-height:1.75; color:var(--muted); width:100%; max-width:none;}
/* Legal micro-copy under primary CTAs. Default (light-background) styling
   first; the .cta-band override further down repaints it for dark panels.
   Kept as its own unambiguous class — never combined with .hero-risk — so
   there's no cascade tie between light and dark contexts. */
.snl-mini-disclaimer{color:var(--muted); font-size:12px; line-height:1.7; margin:0; max-width:none;}
.snl-mini-disclaimer a{text-decoration:underline; color:var(--purple); font-weight:600;}
.snl-mini-disclaimer a:hover{color:var(--magenta);}
.foot-bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; margin-top:28px; font-size:12px; color:var(--muted);}
.foot-bottom-links{display:flex; gap:18px; flex-wrap:wrap;}
.foot-bottom-links a{color:var(--muted); font-weight:500;}
.foot-bottom-links a:hover{color:var(--ink);}

/* LEGAL PAGE PROSE */
.snl-legal-wrap{max-width:860px;}
.snl-prose h2{font-size:22px; font-weight:600; margin:36px 0 14px;}
.snl-prose h2:first-child{margin-top:0;}
.snl-prose h3{font-size:18px; font-weight:600; margin:26px 0 10px;}
.snl-prose p{color:var(--muted); font-size:15.5px; line-height:1.75; margin:0 0 16px;}
.snl-prose ul, .snl-prose ol{color:var(--muted); font-size:15.5px; line-height:1.75; padding-left:22px; margin:0 0 16px;}
.snl-prose li{margin-bottom:8px;}
.snl-prose a{text-decoration:underline; color:var(--purple);}
.snl-legal-updated{font-family:'Inter',sans-serif; font-size:12px; color:var(--muted-dim); letter-spacing:0.04em; margin-bottom:32px; display:block;}

/* BLOG */
.snl-post-card{border-bottom:1px solid var(--line); padding-bottom:32px; margin-bottom:32px;}
.snl-post-card h2{font-size:22px; margin-bottom:8px;}
.snl-post-meta{font-family:'Inter',sans-serif; font-size:12px; color:var(--muted-dim); margin-bottom:10px;}
.snl-post-excerpt{color:var(--muted); font-size:15px; line-height:1.7;}

#faq{padding-bottom:36px;}
#start{padding-top:36px;}

::selection{background:var(--purple); color:#fff;}
a:focus-visible, button:focus-visible{outline:2px solid var(--purple); outline-offset:3px;}

@media (max-width:640px){
  .section, section{padding:60px 0;}
  .wrap{padding:0 20px;}
}
