/* =========================================================
   HelpsYouToo — design tokens
   Indigo-black base · teal + pink "connection" accents
========================================================= */
:root{
  --bg:            #120E1A;
  --bg-elevated:   #1A1526;
  --bg-elevated-2: #221C31;
  --bg-elevated-3: #2A233C;

  --teal:      #4BE8E0;
  --teal-dark: #22B8AE;
  --pink:      #FF6F9C;
  --pink-dark: #E8507D;

  --text:        #F1EEF7;
  --text-muted:  #A79FBD;
  --text-faint:  #6B6380;

  --border:        rgba(241,238,247,0.08);
  --border-strong: rgba(241,238,247,0.16);

  --font-display: 'Rubik', system-ui, sans-serif;
  --font-body:    'Mulish', system-ui, sans-serif;
  --font-mono:    'Fira Mono', 'SFMono-Regular', monospace;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

/* =========================================================
   Reset
========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin:0; }
h1,h2,h3,p,ul,ol,figure{ margin:0; }
ul,ol{ padding:0; list-style:none; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input{ font:inherit; color:inherit; }
svg{ display:block; }

/* =========================================================
   Base
========================================================= */
body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection{ background: var(--teal); color: #0C1F1D; }

.container{ max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--narrow{ max-width: 760px; }

.skip-link{
  position:absolute; left:12px; top:-60px;
  background:var(--teal); color:#0C1F1D; padding:10px 16px;
  border-radius: 8px; font-weight:600; z-index:999;
  transition: top .2s var(--ease-soft);
}
.skip-link:focus{ top:12px; }

.noise-overlay{
  position: fixed; inset:0; pointer-events:none; z-index: 2;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* =========================================================
   Custom cursor
========================================================= */
.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0; z-index: 999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-dot{ width:8px; height:8px; background: var(--teal); }
.cursor-ring{
  width:36px; height:36px; border: 1.5px solid var(--border-strong);
  transition: width .25s var(--ease-soft), height .25s var(--ease-soft),
              border-color .25s var(--ease-soft), background-color .25s var(--ease-soft);
}
.cursor-ring.is-hover{ width:64px; height:64px; border-color: var(--pink); background: rgba(255,111,156,0.08); }
@media (hover:none), (pointer:coarse){ .cursor-dot, .cursor-ring{ display:none; } }
@media (prefers-reduced-motion: reduce){ .cursor-dot, .cursor-ring{ display:none; } }

/* =========================================================
   Typography
========================================================= */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before{ content:""; width:6px; height:6px; border-radius:50%; background: var(--pink); flex-shrink:0; }

.section-title{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: -0.01em;
  margin-top: 14px; max-width: 16ch;
}
.section-lead{ margin-top: 16px; font-size: 17px; color: var(--text-muted); max-width: 46ch; }
.section-head{ margin-bottom: 56px; }

/* =========================================================
   Buttons
========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-body); font-weight:700; font-size:15px;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s var(--ease-soft);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--teal), var(--pink));
  color: #120E1A;
  box-shadow: 0 10px 30px -12px rgba(255,111,156,0.5);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(255,111,156,0.65); }
.btn-primary:active{ transform: translateY(0px); }
.btn-lg{ padding: 17px 34px; font-size:16px; }
.btn-sm{ padding: 10px 20px; font-size:14px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.6; cursor:default; transform:none !important; }

/* =========================================================
   Header
========================================================= */
.site-header{
  position: sticky; top:0; z-index: 100; padding: 18px 0;
  transition: background-color .35s var(--ease-soft), border-color .35s var(--ease-soft), padding .35s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(18,14,26,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.header-inner{ display:flex; align-items:center; gap: 32px; }
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-mark{ border-radius: 8px; }
.brand-name{ font-family: var(--font-display); font-weight:600; font-size:18px; letter-spacing: -0.01em; }
.main-nav{ display:flex; gap:30px; font-size:15px; color: var(--text-muted); }
.main-nav a{ transition: color .2s; position:relative; }
.main-nav a:hover{ color: var(--text); }
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:1px;
  background: var(--teal); transition: width .25s var(--ease-soft);
}
.main-nav a:hover::after{ width:100%; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:8px; }
.nav-toggle span{ width:22px; height:2px; background: var(--text); border-radius:2px; }
.mobile-nav{ display:none; flex-direction:column; gap: 2px; padding: 8px 24px 20px; }
.mobile-nav a{ padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.mobile-nav .btn{ margin-top:14px; }

@media (max-width: 860px){
  .main-nav, .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .mobile-nav.is-open{ display:flex; }
}

/* =========================================================
   Hero
========================================================= */
.hero{ position:relative; padding: 84px 0 96px; overflow:hidden; }
.hero-glow{
  position:absolute; inset: -20% -10% auto -10%; height: 620px; z-index:-1;
  background:
    radial-gradient(420px 320px at 18% 20%, rgba(75,232,224,0.14), transparent 70%),
    radial-gradient(480px 380px at 82% 10%, rgba(255,111,156,0.14), transparent 70%);
  filter: blur(10px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(-2%, 3%) scale(1.06); }
}

.hero-grid{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items:center; }
.hero-title{
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 50px); line-height: 1.12; letter-spacing: -0.01em;
  margin-top: 20px; max-width: 16ch;
}
.hero-sub{ margin-top: 22px; font-size: 18px; color: var(--text-muted); max-width: 48ch; }
.hero-actions{ margin-top: 34px; }
.hero-microcopy{ margin-top: 14px; font-size: 13.5px; color: var(--text-faint); font-family: var(--font-mono); }

/* --- session preview card (signature element) --- */
.session-card{
  background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  transform: rotate(1.2deg);
}
.session-card__head{ display:flex; align-items:center; justify-content:space-between; }
.session-card__label{ font-family: var(--font-mono); font-size:12.5px; color: var(--text-muted); }
.session-card__dots{ display:flex; gap:5px; }
.session-card__dots i{ width:6px; height:6px; border-radius:50%; background: var(--border-strong); }
.session-card__dots i:first-child{ background: var(--teal); }

.session-card__topic{
  margin-top:18px; font-size:14px; color: var(--text-faint);
  padding-bottom:16px; border-bottom:1px solid var(--border);
}

.checklist{ margin-top: 18px; display:flex; flex-direction:column; gap:13px; }
.checklist-item{ display:flex; align-items:center; gap:12px; }
.checklist-item__mark{ position:relative; width:20px; height:20px; flex-shrink:0; color: var(--text-faint); }
.checklist-item__mark svg{ position:absolute; inset:0; width:20px; height:20px; }
.checklist-item__mark .mark-done{ color: var(--teal); opacity:0; transform: scale(0.5); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.checklist-item.is-checked .mark-empty{ opacity:0; }
.checklist-item.is-checked .mark-done{ opacity:1; transform: scale(1); }
.checklist-item__text{ font-size: 14.5px; color: var(--text); transition: color .3s, opacity .3s; }
.checklist-item.is-checked .checklist-item__text{ color: var(--text-faint); text-decoration: line-through; text-decoration-color: var(--border-strong); }

.session-card__progress{ margin-top: 20px; display:flex; align-items:center; gap:12px; }
.progress-track{ flex:1; height:6px; border-radius:99px; background: var(--bg-elevated-3); overflow:hidden; }
.progress-fill{
  height:100%; width: 0%; border-radius:99px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  transition: width .5s var(--ease);
}
.progress-label{ font-family: var(--font-mono); font-size:12px; color: var(--text-faint); flex-shrink:0; }

.session-card__typing{
  margin-top:18px; display:flex; align-items:center; gap:10px;
  font-family: var(--font-mono); font-size:12.5px; color: var(--text-faint);
}
.typing-dots{ display:inline-flex; gap:3px; }
.typing-dots i{ width:4px; height:4px; border-radius:50%; background: var(--pink); animation: typing-pulse 1.2s ease-in-out infinite; }
.typing-dots i:nth-child(2){ animation-delay:.15s; }
.typing-dots i:nth-child(3){ animation-delay:.3s; }
@keyframes typing-pulse{ 0%,60%,100%{ opacity:.25; } 30%{ opacity:1; } }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .session-card{ transform:none; }
}

/* =========================================================
   Marquee
========================================================= */
.marquee{
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; background: var(--bg-elevated); padding: 18px 0;
}
.marquee__track{
  display:flex; gap: 28px; width: max-content;
  font-family: var(--font-mono); font-size: 14px; color: var(--text-muted);
  animation: marquee 32s linear infinite;
}
.marquee__track span:nth-child(odd){ color: var(--teal); }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; overflow-x:auto; }
  .hero-glow{ animation:none; }
}

/* =========================================================
   Steps
========================================================= */
.section{ padding: 108px 0; }
.section--muted{ background: var(--bg-elevated); }

.steps{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: step; }
.step__num{ font-family: var(--font-mono); font-size:14px; color: var(--teal); display:block; margin-bottom: 18px; }
.step__title{ font-family: var(--font-display); font-weight:600; font-size:20px; margin-bottom:12px; }
.step__text{ color: var(--text-muted); font-size:15.5px; }
.step{ padding-top: 26px; border-top: 1px solid var(--border-strong); }

@media (max-width: 780px){ .steps{ grid-template-columns: 1fr; gap:32px; } }

/* =========================================================
   Bento grid
========================================================= */
.bento{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card{
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .4s var(--ease), border-color .3s var(--ease-soft), background-color .3s var(--ease-soft);
}
.bento-card:hover{ transform: translateY(-4px); border-color: var(--border-strong); background: var(--bg-elevated-3); }
.bento-card--wide{ grid-column: span 2; }
.bento-icon{ width:34px; height:34px; color: var(--teal); margin-bottom: 20px; }
.bento-card h3{ font-family: var(--font-display); font-weight:600; font-size:17px; margin-bottom:10px; }
.bento-card p{ color: var(--text-muted); font-size:15px; }

@media (max-width: 780px){
  .bento{ grid-template-columns: 1fr; }
  .bento-card--wide{ grid-column: span 1; }
}

/* =========================================================
   Format section
========================================================= */
.format-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
.check-list{ margin-top: 30px; display:flex; flex-direction:column; gap:16px; }
.check-list li{ display:flex; align-items:center; gap:12px; font-size:15.5px; color: var(--text); }
.check-list svg{ width:20px; height:20px; color: var(--teal); flex-shrink:0; }

.glass-panel{
  background: rgba(34,28,49,0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.schedule-mock{ padding: 28px; }
.schedule-mock__row{ display:grid; grid-template-columns: repeat(7, 1fr); gap:8px; }
.schedule-mock__row--head{ font-family: var(--font-mono); font-size:12px; color: var(--text-faint); text-align:center; margin-bottom:12px; }
.schedule-mock__row--head span{ text-align:center; }
.slot{
  height: 44px; border-radius: 10px; background: var(--bg-elevated);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-size:11px; color: transparent;
}
.slot--active{
  background: linear-gradient(135deg, rgba(75,232,224,0.2), rgba(255,111,156,0.18));
  color: var(--teal); border: 1px solid rgba(75,232,224,0.4);
}
.schedule-mock__caption{ margin-top:18px; font-size:13px; color: var(--text-faint); text-align:center; }

@media (max-width: 900px){ .format-grid{ grid-template-columns: 1fr; } }
@media (max-width: 480px){
  .schedule-mock__row{ grid-template-columns: repeat(7, minmax(0,1fr)); gap:4px; }
  .slot{ height:36px; font-size:9px; }
}

/* =========================================================
   Accordion / FAQ
========================================================= */
.accordion-item{ border-bottom: 1px solid var(--border-strong); }
.accordion-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 24px 0; text-align:left;
  font-family: var(--font-display); font-weight:500; font-size:16.5px;
}
.accordion-trigger svg{ width:20px; height:20px; color: var(--text-muted); flex-shrink:0; transition: transform .3s var(--ease-soft); }
.accordion-trigger[aria-expanded="true"] svg{ transform: rotate(180deg); color: var(--teal); }

.accordion-panel{
  display:grid; grid-template-rows: 0fr; overflow:hidden;
  transition: grid-template-rows .35s var(--ease-soft);
}
.accordion-panel > p{
  grid-row: 1; align-self: start; min-height:0; overflow:hidden;
  color: var(--text-muted); font-size:15.5px; padding-right: 40px;
}
.accordion-item.is-open .accordion-panel{ grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p{ padding-bottom: 22px; }

/* =========================================================
   Subscribe
========================================================= */
.subscribe-card{
  background: linear-gradient(160deg, var(--bg-elevated-2), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  position: relative; overflow:hidden;
}
.subscribe-card::before{
  content:""; position:absolute; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,111,156,0.14), transparent 70%);
  top:-140px; right:-120px; pointer-events:none;
}

.field{ margin-top: 20px; display:flex; flex-direction:column; gap:8px; }
.field label{ font-size: 13.5px; color: var(--text-muted); font-family: var(--font-mono); }
.optional{ color: var(--text-faint); }
.field input{
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 12px;
  padding: 14px 16px; font-size:15.5px;
  transition: border-color .2s var(--ease-soft), box-shadow .2s var(--ease-soft);
}
.field input:focus{ border-color: var(--teal); outline:none; box-shadow: 0 0 0 4px rgba(75,232,224,0.14); }
.field input:invalid:not(:placeholder-shown):not(:focus){ border-color: #C05656; }
.field-error{ font-size:12.5px; color:#E08383; min-height:15px; display:block; }

.consent{ margin-top: 22px; display:flex; align-items:flex-start; gap:12px; font-size: 13.5px; color: var(--text-muted); cursor:pointer; }
.consent input{ margin-top:3px; width:16px; height:16px; accent-color: var(--teal); flex-shrink:0; }
.consent a{ color: var(--teal); text-decoration: underline; text-underline-offset:2px; }

#subscribe-form .btn{ margin-top: 20px; }
.form-note{ margin-top:14px; font-size:12.5px; color: var(--text-faint); text-align:center; }

.subscribe-success{ text-align:center; padding: 20px 0; animation: fade-up .5s var(--ease); }
.success-icon{ width:56px; height:56px; color: var(--teal); margin: 0 auto 20px; }
.subscribe-success h3{ font-family: var(--font-display); font-weight:600; font-size:22px; margin-bottom:12px; }
.subscribe-success p{ color: var(--text-muted); max-width: 42ch; margin-inline:auto; }
@keyframes fade-up{ from{ opacity:0; transform: translateY(10px); } to{ opacity:1; transform:none; } }

@media (max-width: 640px){ .subscribe-card{ padding: 36px 22px; } }

/* =========================================================
   Footer
========================================================= */
.site-footer{ border-top: 1px solid var(--border); padding-top: 56px; }
.footer-inner{ display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p{ margin-top:14px; color: var(--text-muted); font-size:14.5px; max-width:32ch; }
.footer-nav{ display:flex; flex-direction:column; gap:12px; font-size:14.5px; color: var(--text-muted); }
.footer-nav a:hover{ color: var(--text); }
.footer-label{ display:block; font-family: var(--font-mono); font-size:12px; color: var(--text-faint); margin-bottom:8px; }
.footer-contact a{ font-size:15.5px; color: var(--teal); }
.footer-copy{ padding: 22px 0; border-top: 1px solid var(--border); font-size:13px; color: var(--text-faint); }

@media (max-width: 700px){ .footer-inner{ grid-template-columns: 1fr; gap:28px; } }

/* =========================================================
   Scroll reveal
========================================================= */
[data-reveal]{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1; transform:none; transition:none; } }

/* =========================================================
   Legal page
========================================================= */
.legal{ padding: 64px 0 100px; }
.legal-header{ margin-bottom: 48px; }
.legal-updated{ font-family: var(--font-mono); font-size:13px; color: var(--text-faint); margin-top:10px; }
.legal-body h2{ font-family: var(--font-display); font-weight:600; font-size:20px; margin-top: 42px; margin-bottom: 14px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color: var(--text-muted); font-size:15.5px; margin-bottom:12px; }
.legal-body ul{ padding-left: 20px; list-style: disc; }
.legal-body a{ color: var(--teal); text-decoration:underline; text-underline-offset:2px; }
.legal-body strong{ color: var(--text); }
