*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0D1117;
  --navy-mid:#141B24;
  --navy-soft:#1C2735;
  --navy-border:#243044;
  --cream:#F5F0EB;
  --cream-dim:#E8E2DA;
  --teal:#3ECFCF;
  --teal-dim:#2BA8A8;
  --teal-pale:rgba(62,207,207,0.08);
  --teal-glow:rgba(62,207,207,0.15);
  --copper:#D4876A;
  --copper-light:#E8A882;
  --copper-pale:rgba(212,135,106,0.12);
  --white-text:#F0EDE8;
  --muted:#8B9BAD;
  --muted-soft:#6B7D8F;
  --border:rgba(255,255,255,0.08);
  --border-strong:rgba(255,255,255,0.14);
  --green:#4CAF7A;
  --yellow:#D4A84B;
  --red:#CF6E6E;
  --font-serif:"Cormorant Garamond",Georgia,serif;
  --font-sans:"DM Sans",system-ui,sans-serif;
  --font-mono:"DM Mono","Courier New",monospace;
  --max:1120px;
}
html{scroll-behavior:smooth}
body{font-family:var(--font-sans);background:var(--navy);color:var(--white-text);line-height:1.65;font-size:18px;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{cursor:pointer;font-family:var(--font-sans)}

/* LAYOUT */
.container{max-width:var(--max);margin:0 auto;padding:0 2rem}
.section{padding:6rem 0}
.section--sm{padding:4rem 0}
.section--lg{padding:8rem 0}
.section--bordered{border-top:1px solid var(--border)}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}

/* TYPOGRAPHY */
h1,h2,h3,h4{font-family:var(--font-serif);font-weight:400;line-height:1.15}
h1{font-size:clamp(2.8rem,5.5vw,4.4rem);letter-spacing:-0.02em}
h2{font-size:clamp(2rem,4vw,3.2rem);letter-spacing:-0.015em}
h3{font-size:clamp(1.25rem,2.2vw,1.6rem)}
p{color:var(--muted)}
.lead{font-size:1.2rem;line-height:1.75;color:var(--muted);max-width:640px}
.mono{font-family:var(--font-mono);font-size:0.82rem}
.label{font-family:var(--font-sans);font-size:0.72rem;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:var(--teal)}
.italic{font-style:italic}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.75rem 1.75rem;border-radius:3px;font-size:0.88rem;font-weight:600;letter-spacing:0.02em;transition:all 0.18s ease;border:1.5px solid transparent;white-space:nowrap}
.btn-primary{background:var(--teal);color:var(--navy);border-color:var(--teal)}
.btn-primary:hover{background:#4DDEDE;box-shadow:0 0 24px rgba(62,207,207,0.3)}
.btn-outline{background:transparent;color:var(--white-text);border-color:var(--border-strong)}
.btn-outline:hover{border-color:var(--teal);color:var(--teal)}
.btn-copper{background:var(--copper);color:white;border-color:var(--copper)}
.btn-copper:hover{background:var(--copper-light)}
.btn-ghost{background:transparent;color:var(--muted);border-color:transparent;padding-left:0}
.btn-ghost:hover{color:var(--teal)}
.btn-sm{padding:0.5rem 1.1rem;font-size:0.78rem}
.btn-lg{padding:1rem 2.25rem;font-size:0.95rem}
.btn-stripe{background:#635BFF;color:white;border-color:#635BFF;gap:0.6rem}
.btn-stripe:hover{background:#7B74FF}

/* NAV */
.nav{position:sticky;top:0;z-index:100;background:rgba(13,17,23,0.92);backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.nav__inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.nav__logo{display:flex;align-items:center;gap:0.75rem;font-family:var(--font-serif);font-size:1.3rem;color:var(--white-text)}
.nav__logo-img{height:44px;width:auto;border-radius:4px;object-fit:contain}
.nav__links{display:flex;align-items:center;gap:0.1rem}
.nav__link{font-size:0.88rem;font-weight:500;color:var(--muted);padding:0.4rem 0.8rem;border-radius:3px;transition:color 0.15s}
.nav__link:hover{color:var(--white-text)}
.nav__cta{margin-left:1rem}
.nav__mobile{display:none;background:none;border:none;padding:0.5rem;color:var(--white-text);font-size:1.4rem}

/* FOOTER */
.footer{background:var(--navy-mid);border-top:1px solid var(--border);padding:4rem 0 2rem}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer__logo{display:flex;align-items:center;gap:0.75rem;margin-bottom:1rem}
.footer__logo-img{height:44px;width:auto;border-radius:4px;object-fit:contain}
.footer__logo-text{font-family:var(--font-serif);font-size:1.4rem;color:var(--white-text)}
.footer__tagline{font-size:0.875rem;color:var(--muted-soft);line-height:1.65;max-width:260px}
.footer__col h5{font-family:var(--font-sans);font-size:0.7rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--muted-soft);margin-bottom:1rem}
.footer__col a{display:block;font-size:0.875rem;color:var(--muted);margin-bottom:0.5rem;transition:color 0.15s}
.footer__col a:hover{color:var(--teal)}
.footer__bottom{border-top:1px solid var(--border);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center}
.footer__copy{font-size:0.78rem;color:var(--muted-soft)}
.footer__trust{font-size:0.72rem;color:var(--muted-soft);font-family:var(--font-mono)}

/* CARDS */
.card{background:var(--navy-soft);border:1px solid var(--border);border-radius:4px;padding:2rem}
.card--teal{border-color:var(--teal);background:var(--teal-pale)}
.card--copper{border-color:var(--copper);background:var(--copper-pale)}
.card--glass{background:rgba(255,255,255,0.03);border:1px solid var(--border)}

/* STRIP */
.strip{background:var(--navy-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:1rem 0;overflow:hidden}
.strip__inner{display:flex;gap:3rem;animation:scroll 25s linear infinite;width:max-content}
.strip__item{font-family:var(--font-mono);font-size:0.78rem;color:var(--muted);white-space:nowrap}
.strip__dot{color:var(--teal)}
@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* PAGE VISIBILITY */
.page{display:none;animation:fadeIn 0.35s ease}
.page.active{display:block}
@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}

/* HERO */
.hero{padding:7rem 0 5rem;position:relative;overflow:hidden}
.hero::before{content:"";position:absolute;top:-200px;right:-200px;width:600px;height:600px;background:radial-gradient(circle,rgba(62,207,207,0.06) 0%,transparent 65%);pointer-events:none}
.hero__eyebrow{display:flex;align-items:center;gap:0.75rem;margin-bottom:1.5rem}
.hero__eyebrow-line{width:32px;height:1px;background:var(--teal)}
.hero__ctas{display:flex;gap:1rem;margin-top:2.5rem;flex-wrap:wrap}
.hero__trust{margin-top:2rem;font-family:var(--font-mono);font-size:0.75rem;color:var(--muted-soft);display:flex;gap:2rem;flex-wrap:wrap}
.hero__trust span::before{content:"·";margin-right:0.5rem;color:var(--teal)}

/* GLOW ACCENT */
.teal-glow{color:var(--teal)}
.copper-glow{color:var(--copper)}

/* STEPS */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border:1px solid var(--border)}
.step{padding:2.5rem;border-right:1px solid var(--border)}
.step:last-child{border-right:none}
.step__num{font-family:var(--font-mono);font-size:0.72rem;color:var(--teal);margin-bottom:1.5rem;display:block}
.step__icon{font-size:1.5rem;margin-bottom:1rem}
.step__title{font-family:var(--font-serif);font-size:1.25rem;margin-bottom:0.5rem;color:var(--white-text)}

/* MODES */
.modes{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border)}
.mode{background:var(--navy);padding:2.5rem;transition:background 0.2s}
.mode:hover{background:var(--navy-soft)}
.mode__badge{display:inline-block;font-family:var(--font-mono);font-size:0.68rem;font-weight:500;letter-spacing:0.08em;text-transform:uppercase;padding:0.25rem 0.6rem;border-radius:2px;margin-bottom:1rem}
.mode__badge--zen{background:rgba(76,175,122,0.12);color:var(--green);border:1px solid rgba(76,175,122,0.2)}
.mode__badge--flow{background:rgba(62,207,207,0.1);color:var(--teal);border:1px solid rgba(62,207,207,0.2)}
.mode__badge--legend{background:rgba(212,135,106,0.12);color:var(--copper);border:1px solid rgba(212,135,106,0.2)}

/* PRICING */
.pricing-toggle{display:flex;align-items:center;gap:1rem;margin-bottom:3rem}
.pricing-toggle__label{font-size:0.9rem;font-weight:500;color:var(--white-text)}
.toggle{position:relative;display:inline-block;width:48px;height:26px}
.toggle input{opacity:0;width:0;height:0}
.toggle__slider{position:absolute;cursor:pointer;inset:0;background:var(--navy-border);border-radius:26px;transition:0.3s}
.toggle__slider::before{content:"";position:absolute;height:18px;width:18px;left:4px;bottom:4px;background:var(--muted);border-radius:50%;transition:0.3s}
.toggle input:checked+.toggle__slider{background:var(--teal)}
.toggle input:checked+.toggle__slider::before{transform:translateX(22px);background:var(--navy)}
.founding-badge{background:var(--copper);color:white;font-size:0.68rem;font-weight:600;padding:0.2rem 0.5rem;border-radius:2px;margin-left:0.5rem;vertical-align:middle}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.pricing-card{border:1px solid var(--border);border-radius:4px;padding:2.5rem;background:var(--navy-soft);position:relative;transition:border-color 0.2s}
.pricing-card:hover{border-color:var(--border-strong)}
.pricing-card--popular{border-color:var(--teal);background:var(--teal-pale)}
.pricing-card__popular{position:absolute;top:-1px;right:1.5rem;background:var(--teal);color:var(--navy);font-size:0.68rem;font-weight:700;padding:0.25rem 0.75rem;border-radius:0 0 3px 3px;letter-spacing:0.06em;text-transform:uppercase}
.pricing-card__tier{font-size:0.72rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--muted);margin-bottom:0.75rem}
.pricing-card__price{font-family:var(--font-serif);font-size:3rem;line-height:1;color:var(--white-text);margin:0.5rem 0 0.25rem}
.pricing-card__period{font-size:0.82rem;color:var(--muted);margin-bottom:1.75rem}
.pricing-card__features{list-style:none;margin-bottom:2rem}
.pricing-card__features li{display:flex;gap:0.6rem;font-size:0.875rem;color:var(--muted);padding:0.4rem 0;border-bottom:1px solid var(--border)}
.pricing-card__features li:last-child{border-bottom:none}
.pricing-card__features li::before{content:"✓";color:var(--teal);flex-shrink:0;font-weight:600}
.stripe-badge{display:flex;align-items:center;gap:0.75rem;margin-top:2.5rem;padding:1.25rem 1.5rem;background:rgba(99,91,255,0.08);border:1px solid rgba(99,91,255,0.2);border-radius:3px}
.stripe-badge__icon{font-size:1.2rem}
.stripe-badge p{font-size:0.85rem;color:var(--muted);margin:0}
.stripe-badge strong{color:var(--white-text)}

/* QUIZ */
.quiz-wrap{max-width:680px;margin:0 auto}
.quiz-progress{height:2px;background:var(--border);border-radius:2px;margin-bottom:3rem;overflow:hidden}
.quiz-progress__bar{height:100%;background:linear-gradient(90deg,var(--teal),var(--copper-light));border-radius:2px;transition:width 0.5s ease}
.quiz-question{display:none}
.quiz-question.active{display:block}
.quiz-question__num{font-family:var(--font-mono);font-size:0.72rem;color:var(--teal);margin-bottom:1rem;display:block}
.quiz-question__text{font-family:var(--font-serif);font-size:1.6rem;color:var(--white-text);margin-bottom:2rem;line-height:1.3}
.quiz-scale{display:flex;gap:0.75rem}
.quiz-scale__option{flex:1}
.quiz-scale__btn{width:100%;padding:1.2rem 0.5rem;border:1.5px solid var(--border);background:var(--navy-soft);border-radius:3px;font-size:0.82rem;font-weight:500;color:var(--muted);transition:all 0.15s;display:flex;flex-direction:column;align-items:center;gap:0.3rem}
.quiz-scale__btn:hover{border-color:var(--teal);color:var(--teal);background:var(--teal-pale)}
.quiz-scale__btn.selected{border-color:var(--teal);background:var(--teal-glow);color:var(--teal)}
.quiz-scale__num{font-family:var(--font-mono);font-size:1.1rem}
.quiz-scale__label{font-size:0.68rem}
.quiz-email__input{width:100%;padding:0.85rem 1.1rem;border:1.5px solid var(--border);border-radius:3px;font-size:1rem;font-family:var(--font-sans);color:var(--white-text);background:var(--navy-soft);margin-bottom:1rem}
.quiz-email__input:focus{outline:none;border-color:var(--teal)}
.quiz-result{text-align:center;max-width:560px;margin:0 auto;padding:3rem;border:1px solid var(--border);border-radius:4px;background:var(--navy-soft)}
.quiz-result__badge{width:72px;height:72px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.8rem;margin:0 auto 1.5rem}
.quiz-result--green .quiz-result__badge{background:rgba(76,175,122,0.15);border:1px solid rgba(76,175,122,0.3)}
.quiz-result--yellow .quiz-result__badge{background:rgba(212,168,75,0.15);border:1px solid rgba(212,168,75,0.3)}
.quiz-result--red .quiz-result__badge{background:rgba(207,110,110,0.15);border:1px solid rgba(207,110,110,0.3)}
.quiz-result__level{font-family:var(--font-mono);font-size:0.72rem;letter-spacing:0.12em;text-transform:uppercase;margin-bottom:0.5rem}
.quiz-result--green .quiz-result__level{color:var(--green)}
.quiz-result--yellow .quiz-result__level{color:var(--yellow)}
.quiz-result--red .quiz-result__level{color:var(--red)}

/* TEAMS */
.teams-hero{background:var(--navy-mid);border-bottom:1px solid var(--border);padding:7rem 0 5rem;position:relative;overflow:hidden}
.teams-hero::before{content:"";position:absolute;top:-300px;left:-200px;width:700px;height:700px;background:radial-gradient(circle,rgba(62,207,207,0.04) 0%,transparent 65%);pointer-events:none}

/* FAQ */
.faq-item{border-top:1px solid var(--border)}
.faq-item:last-child{border-bottom:1px solid var(--border)}
.faq-btn{width:100%;text-align:left;background:none;border:none;padding:1.25rem 0;display:flex;justify-content:space-between;align-items:center;font-family:var(--font-sans);font-size:0.95rem;font-weight:500;color:var(--white-text)}
.faq-btn::after{content:"+";font-size:1.2rem;font-weight:300;color:var(--teal);flex-shrink:0;transition:transform 0.2s}
.faq-item.open .faq-btn::after{transform:rotate(45deg)}
.faq-body{display:none;padding-bottom:1.25rem;color:var(--muted);font-size:0.9rem;line-height:1.75;max-width:680px}
.faq-item.open .faq-body{display:block}

/* RESEARCH */
.loads-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1px solid var(--border);margin:3rem 0}
.load-card{background:var(--navy);padding:2.5rem}
.load-card__num{font-family:var(--font-mono);font-size:0.7rem;color:var(--teal);margin-bottom:1rem;display:block}
.load-card__name{font-family:var(--font-serif);font-size:1.3rem;color:var(--white-text);margin-bottom:0.75rem}
.tag{display:inline-block;font-family:var(--font-mono);font-size:0.68rem;padding:0.2rem 0.5rem;background:var(--navy-soft);border:1px solid var(--border);border-radius:2px;color:var(--muted);margin:0.2rem}

/* ABOUT */
.team-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem}
.team-card{border-top:none;padding-top:0}
.team-card__photo{width:100%;aspect-ratio:4/5;overflow:hidden;margin-bottom:1.75rem;border-radius:3px;position:relative}
.team-card__photo::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--teal)}
.team-card__photo img{width:100%;height:100%;object-fit:cover;object-position:center top;filter:grayscale(12%)}
.team-card__role{font-size:0.72rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--teal);margin-bottom:0.4rem}
.team-card__name{font-family:var(--font-serif);font-size:1.75rem;color:var(--white-text);margin-bottom:0.3rem}
.team-card__title{font-size:0.875rem;color:var(--muted);margin-bottom:1.25rem}

/* PRIVACY */
.privacy-never{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:var(--border);border:1px solid var(--border)}
.privacy-never__item{background:var(--navy-soft);padding:1.5rem;display:flex;gap:0.75rem;align-items:flex-start}
.privacy-never__icon{font-size:1.1rem;flex-shrink:0}

/* CONTACT */
.contact-tiles{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.contact-tile{border:1px solid var(--border);border-radius:4px;padding:2.5rem;background:var(--navy-soft);transition:border-color 0.2s}
.contact-tile:hover{border-color:var(--teal)}
.contact-tile__icon{font-size:1.8rem;margin-bottom:1rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:0.82rem;font-weight:500;margin-bottom:0.4rem;color:var(--muted)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:0.75rem 1rem;border:1.5px solid var(--border);border-radius:3px;font-family:var(--font-sans);font-size:0.9rem;color:var(--white-text);background:var(--navy-soft)}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--teal)}
.form-group select option{background:var(--navy-mid)}
.form-group textarea{min-height:120px;resize:vertical}

/* CTA BAND */
.cta-band{background:var(--navy-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:5rem 0;text-align:center;position:relative;overflow:hidden}
.cta-band::before{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:500px;height:500px;background:radial-gradient(circle,rgba(62,207,207,0.05) 0%,transparent 65%);pointer-events:none}
.cta-band h2{max-width:600px;margin:0 auto 1.5rem;color:var(--white-text)}

/* LOGO MARK — SVG fallback when no image */
.logo-mark{width:32px;height:32px;border-radius:50%;background:conic-gradient(var(--teal),var(--copper),var(--teal));opacity:0.9}

/* RESPONSIVE */
@media(max-width:900px){
  .grid-2,.grid-3,.grid-4,.steps,.modes,.pricing-grid,.loads-grid,.privacy-never{grid-template-columns:1fr}
  .step{border-right:none;border-bottom:1px solid var(--border)}
  .step:last-child{border-bottom:none}
  .contact-tiles{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:1fr}
  .nav__links,.nav__cta{display:none}
  .nav__mobile{display:block}
  .hero__trust{flex-direction:column;gap:0.4rem}
  .quiz-scale{flex-wrap:wrap}
  .quiz-scale__option{flex:0 0 calc(20% - 0.6rem)}
}
@media(max-width:600px){
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;gap:0.75rem;text-align:center}
  .hero{padding:4rem 0 3rem}
  .container{padding:0 1.25rem}
  .section{padding:4rem 0}
  h1{font-size:2.2rem}
  h2{font-size:1.7rem}
  .pricing-grid{grid-template-columns:1fr}
  .pricing-card{padding:1.75rem}
  .btn-lg{padding:0.875rem 1.5rem;font-size:0.9rem}
}
