/* =====================================================
   Howdy - 21st.dev-style components & animations
   (aurora, spotlight, bento, moving cards, gradient text)
   ===================================================== */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  z-index: 300; background: linear-gradient(90deg, var(--lime-light), var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(130,67,246,0.6);
}

/* ---- Animated gradient / shimmer text ---- */
.gradient-text {
  background: linear-gradient(100deg, #B6E293, #FFEBF0, #BBADE0, #B6E293);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

/* ---- Aurora background (hero) ---- */
.aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.aurora span {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.55; mix-blend-mode: screen; will-change: transform;
}
.aurora span:nth-child(1) { width: 520px; height: 520px; background: #8243F6; top: -120px; left: -80px; animation: drift1 20s ease-in-out infinite; }
.aurora span:nth-child(2) { width: 460px; height: 460px; background: #B6E293; top: 20%; right: -100px; animation: drift2 24s ease-in-out infinite; }
.aurora span:nth-child(3) { width: 400px; height: 400px; background: #BBADE0; bottom: -140px; left: 30%; animation: drift3 26s ease-in-out infinite; }
.aurora span:nth-child(4) { width: 320px; height: 320px; background: #FFEBF0; top: 40%; left: 50%; opacity: 0.35; animation: drift1 30s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,60px) scale(1.15); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-90px,40px) scale(1.1); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,-70px) scale(1.2); } }

/* ---- Spotlight (cursor-tracked light over hero) ---- */
.hero__spotlight {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(550px circle at var(--mx, 70%) var(--my, 25%), rgba(182,226,147,0.20), transparent 55%);
  transition: background 0.25s ease;
}

/* ---- Magnetic button helper ---- */
.btn { will-change: transform; }

/* ---- Glow / spotlight product cards ---- */
.product-card { position: relative; overflow: hidden; }
.product-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
              color-mix(in srgb, var(--accent) 26%, transparent), transparent 62%);
  opacity: 0; transition: opacity 0.35s ease; z-index: 0;
}
.product-card:hover::before { opacity: 1; }
.product-card > * { position: relative; z-index: 1; }

/* ---- Bento grid ---- */
.bento { background: var(--white); }
.bento-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto); gap: 18px;
}
.bento-tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; justify-content: flex-start;
  box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid #ece8f7;
}
.bento-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bento-tile h3 { font-size: 1.4rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.bento-tile p { color: var(--ink-soft); font-size: 0.98rem; }
.bento-tile__icon {
  width: 50px; height: 50px; margin-bottom: 18px; flex: 0 0 auto;
  border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem;
  background: color-mix(in srgb, var(--violet) 12%, white);
}

.bento-tile--feature {
  grid-column: 1 / 3; grid-row: 1 / 3; color: var(--white);
  background: radial-gradient(circle at 75% 25%, #6a2ff0, #1a0a4d);
  justify-content: space-between;
}
.bento-tile--feature .bento-leaf {
  position: absolute; inset: 0; opacity: 0.7;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23c9a8ff' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M100 178 L100 92'/%3E%3Cpath d='M100 92 C100 56 100 26 100 16 C92 33 88 54 92 80'/%3E%3Cpath d='M100 100 C73 80 52 53 45 32 C56 60 71 83 96 101'/%3E%3Cpath d='M100 106 C68 96 42 80 24 60 C43 88 67 105 98 111'/%3E%3Cpath d='M100 120 C70 120 42 113 21 100 C46 124 71 132 100 130'/%3E%3Cpath d='M100 100 C127 80 148 53 155 32 C144 60 129 83 104 101'/%3E%3Cpath d='M100 106 C132 96 158 80 176 60 C157 88 133 105 102 111'/%3E%3Cpath d='M100 120 C130 120 158 113 179 100 C154 124 129 132 100 130'/%3E%3C/g%3E%3C/svg%3E") right -20px top 40px/300px no-repeat;
  animation: sway 7s ease-in-out infinite;
}
.bento-tile--feature .script { font-family: "Allura", cursive; font-size: 2.6rem; color: var(--lime-light); position: relative; }
.bento-tile--feature p { color: rgba(255,255,255,0.85); position: relative; max-width: 280px; }
.bento-tile--wide { grid-column: 3 / 5; grid-row: 1 / 2; background: var(--cream); }
.bento-tile--stat { background: var(--white); }
.bento-tile--stat .bento-num {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bento-tile--accent { background: var(--lime-light); border-color: transparent; }
.bento-tile--accent h3, .bento-tile--accent p { color: var(--ink); }

/* ---- Infinite moving cards (reviews) ---- */
.moving-cards {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.moving-cards__track {
  display: flex; gap: 24px; width: max-content; padding: 8px 0;
  animation: scrollX 40s linear infinite;
}
.moving-cards:hover .moving-cards__track { animation-play-state: paused; }
.moving-cards .review { width: 380px; flex: 0 0 auto; margin: 0; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Centered hero + animated background pattern ---- */
.hero--center { min-height: 92vh; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.hero--center .hero__inner {
  grid-template-columns: 1fr; flex: 1; align-content: center; justify-items: center;
  padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(60px, 8vw, 110px);
}
.hero--center .hero__copy { max-width: 780px; }
.hero--center .hero__lede { margin-left: auto; margin-right: auto; }
.hero--center .hero__actions { justify-content: center; }
.hero__fineprint { margin-top: 28px; font-size: 0.84rem; opacity: 0.7; max-width: 520px; margin: 28px auto 0; }

.hero__pattern {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1.5px, transparent 1.7px);
  background-size: 28px 28px;
  -webkit-mask: radial-gradient(circle at 50% 35%, #000, transparent 80%);
  mask: radial-gradient(circle at 50% 35%, #000, transparent 80%);
  animation: patternDrift 45s linear infinite;
}
@keyframes patternDrift { to { background-position: 280px 280px; } }
.hero__leaves {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M110 160 L110 86'/%3E%3Cpath d='M110 86 C110 60 110 40 110 32 C103 45 100 62 103 82'/%3E%3Cpath d='M110 94 C88 76 70 54 63 38 C73 62 88 84 106 98'/%3E%3Cpath d='M110 94 C132 76 150 54 157 38 C147 62 132 84 114 98'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px; animation: patternDrift2 70s linear infinite;
}
@keyframes patternDrift2 { to { background-position: 220px 440px; } }

/* ===== Decorative section patterns ===== */
:root {
  --leaf-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M110 160 L110 86'/%3E%3Cpath d='M110 86 C110 60 110 40 110 32 C103 45 100 62 103 82'/%3E%3Cpath d='M110 94 C88 76 70 54 63 38 C73 62 88 84 106 98'/%3E%3Cpath d='M110 94 C132 76 150 54 157 38 C147 62 132 84 114 98'/%3E%3C/g%3E%3C/svg%3E");
  --leaf-violet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%238243f6' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M110 160 L110 86'/%3E%3Cpath d='M110 86 C110 60 110 40 110 32 C103 45 100 62 103 82'/%3E%3Cpath d='M110 94 C88 76 70 54 63 38 C73 62 88 84 106 98'/%3E%3Cpath d='M110 94 C132 76 150 54 157 38 C147 62 132 84 114 98'/%3E%3C/g%3E%3C/svg%3E");
}
.section { position: relative; }
.container { position: relative; z-index: 1; }

/* Dark / gradient sections: white dot grid + drifting leaves */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.4px, transparent 1.5px);
  background-size: 30px 30px;
}
.cta::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.06;
  background-image: var(--leaf-white); background-size: 240px;
  animation: patternDrift2 80s linear infinite;
}

/* Light sections: faint violet dot grid */
.how::before, .paths::before, .faq::before, .about::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background-image: radial-gradient(rgba(130,67,246,0.10) 1.4px, transparent 1.5px);
  background-size: 30px 30px;
  -webkit-mask: radial-gradient(circle at 50% 40%, #000, transparent 90%);
  mask: radial-gradient(circle at 50% 40%, #000, transparent 90%);
}

/* Footer: subtle white dots + corner leaf */
.footer { position: relative; overflow: hidden; }
.footer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.35;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.3px, transparent 1.4px);
  background-size: 32px 32px;
}
.footer .container { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .how::after, .cta::after { animation: none !important; }
}

/* ===== Mild comic styling (outlines + hard offset shadows) ===== */
:root { --ink-line: #1b0b3a; }

/* Buttons: chunky outline + sticker shadow + press effect */
.btn { border: 2.5px solid var(--ink-line) !important; box-shadow: 3px 3px 0 var(--ink-line); }
.btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink-line); }
.btn--ghost-light { background: rgba(255,255,255,0.1); }

/* Light-section cards: bold outline + hard shadow */
.audience__tabs { border: 2.5px solid var(--ink-line); box-shadow: 4px 4px 0 var(--ink-line); }
.audience__panel.is-active { border: 2.5px solid var(--ink-line); box-shadow: 7px 7px 0 var(--ink-line); }
.about__card { border: 2.5px solid var(--ink-line); box-shadow: 8px 8px 0 var(--ink-line); }
.about-stat { border: 2.5px solid var(--ink-line); box-shadow: 5px 5px 0 var(--ink-line); }
.about-stat:hover { box-shadow: 7px 7px 0 var(--ink-line); }
.faq__list { background: #fff; border: 2.5px solid var(--ink-line); border-radius: var(--radius); box-shadow: 6px 6px 0 var(--ink-line); padding: 4px 30px; }
.faq__item:last-child { border-bottom: none; }
.about__badge { border-width: 2px; }

/* Dark-section elements: light outline + soft-dark hard shadow */
.journey__node { border: 3px solid #fff; box-shadow: 0 0 0 6px rgba(130,67,246,0.25); }
.journey__step:hover .journey__node { box-shadow: 0 0 0 8px rgba(182,226,147,0.32); }
.journey__card { border: 2.5px solid rgba(255,255,255,0.55); box-shadow: none; background: rgba(255,255,255,0.1); }
.contact-card { border: 2.5px solid rgba(255,255,255,0.55); box-shadow: none; }

/* ===== Legal pages (Terms / Privacy) ===== */
.legal-nav { background: var(--grad); padding: 16px 0; border-bottom: 2.5px solid var(--ink-line); }
.legal-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.legal-nav__logo img { height: 30px; width: auto; display: block; }
.legal-nav__back { color: #fff; font-weight: 600; opacity: 0.92; }
.legal-nav__back:hover { opacity: 1; }
.legal { padding: clamp(40px, 7vw, 88px) 0 clamp(40px, 6vw, 70px); background: linear-gradient(180deg, #f7f4ff, #ffffff 320px); }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 8px; }
.legal__updated { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 26px; }
.legal__intro { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 10px; }
.legal__note { background: var(--cream); border: 2.5px solid var(--ink-line); border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0 8px; box-shadow: 4px 4px 0 var(--ink-line); }
.legal__note p { margin: 0; font-size: 0.92rem; }
.legal h2 { font-size: 1.32rem; font-weight: 800; letter-spacing: -0.01em; margin: 36px 0 10px; }
.legal h3 { font-size: 1.05rem; font-weight: 700; margin: 18px 0 6px; }
.legal p, .legal li { color: var(--ink); line-height: 1.72; margin-bottom: 12px; font-size: 0.97rem; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--violet); text-decoration: underline; }
.legal__footer-links a { color: var(--lime-light); text-decoration: underline; }

/* Age-gate typewriter */
.age-gate__title { min-height: 1.3em; }
.age-gate__tagline { min-height: 1.3em; margin: -2px 0 14px; font-size: 1.05rem; font-weight: 600; color: var(--violet); }
.type-cursor {
  display: inline-block; width: 3px; height: 1.05em; margin-left: 3px; vertical-align: -2px;
  background: var(--violet); border-radius: 2px; animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-cursor { display: none; } }

/* Age-gate policy links */
.age-gate__links { margin-top: 16px; font-size: 0.8rem; color: var(--ink-soft); }
.age-gate__links a { color: var(--violet); text-decoration: underline; }

/* Enquiry form */
.enq-form { display: grid; gap: 18px; max-width: 720px; margin-top: 8px; }
.enq-field { display: grid; gap: 6px; }
.enq-field label { font-weight: 600; font-size: 0.9rem; }
.enq-field label .req { color: #c0392b; }
.enq-field .hint { font-size: 0.78rem; color: var(--ink-soft); }
.enq-form input, .enq-form select, .enq-form textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); width: 100%;
  padding: 12px 14px; border: 2px solid var(--ink-line); border-radius: 12px;
  background: #fff; box-shadow: 2px 2px 0 rgba(27,11,58,0.12); transition: box-shadow 0.2s, border-color 0.2s;
}
.enq-form textarea { min-height: 110px; resize: vertical; }
.enq-form input:focus, .enq-form select:focus, .enq-form textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 3px 3px 0 var(--violet);
}
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enq-actions { margin-top: 8px; }
.enq-success {
  display: none; background: var(--lime-light); border: 2.5px solid var(--ink-line);
  border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: 4px 4px 0 var(--ink-line); margin-bottom: 16px;
}
.enq-success.show { display: block; }
.enq-success strong { display: block; margin-bottom: 4px; }
@media (max-width: 560px) { .enq-row { grid-template-columns: 1fr; } }

/* Headline pop (kept off the cursive script so it stays crisp) */
.hero h1 { text-shadow: 3px 3px 0 rgba(15,5,40,0.2); }
.h2 { text-shadow: 2px 2px 0 rgba(27,11,58,0.1); }
.h2--light, .cta h2 { text-shadow: 2px 2px 0 rgba(0,0,0,0.22); }
.script { text-shadow: none !important; }

/* Eyebrows → comic sticker tags (unifies every section header) */
.eyebrow {
  display: inline-block; padding: 6px 15px; border-radius: var(--radius-pill);
  border: 2px solid var(--ink-line); box-shadow: 2px 2px 0 var(--ink-line);
  background: #fff; color: var(--violet) !important;
}

/* Marquee = comic tape with bold edges */
.marquee { border-top: 3px solid var(--ink-line); border-bottom: 3px solid var(--ink-line); }

/* Nav: hard divider instead of soft shadow when scrolled */
.nav.scrolled { box-shadow: none; border-bottom: 2.5px solid var(--ink-line); }

/* Mobile menu fix: drop backdrop-filter while open so the fixed menu panel
   is sized to the viewport (not trapped inside the scrolled nav bar) */
.nav.nav-open, .nav.scrolled.nav-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--indigo);
}
body.menu-open { overflow: hidden; }

/* Age-gate modal card */
.age-gate__card { border: 2.5px solid var(--ink-line); box-shadow: 10px 10px 0 var(--ink-line); }

/* FAQ toggle → comic circle button */
.faq__item summary::after {
  content: "+"; width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto;
  border: 2px solid var(--ink-line); border-radius: 50%; background: #fff; color: var(--violet);
  box-shadow: 2px 2px 0 var(--ink-line); font-size: 1.25rem; line-height: 1;
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }

/* Checklist bullets get the comic outline */
.check-list li::before { border: 2px solid var(--ink-line); box-shadow: 1px 1px 0 var(--ink-line); }

/* TGA link → comic chip button */
.about__link a {
  display: inline-block; padding: 9px 18px; border: 2px solid var(--ink-line); border-radius: var(--radius-pill);
  background: #fff; box-shadow: 3px 3px 0 var(--ink-line); transition: transform 0.2s, box-shadow 0.2s;
}
.about__link a:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink-line); }

/* Footer: bold lime "tape" stripe on top + outlined chips */
.footer { border-top: 5px solid var(--lime-light); }
.footer__col h5 {
  display: inline-block; padding: 4px 12px; border: 2px solid var(--lime-light); border-radius: var(--radius-pill);
  color: var(--ink); background: var(--lime-light); box-shadow: 2px 2px 0 rgba(0,0,0,0.35);
}

/* Avatars / contact email link emphasis */
.cta__links a, .cta__email a { text-decoration-thickness: 2px; }

/* Audience selector — mild comic */
.audience__tab { border: 2px solid transparent; }
.audience__tab.is-active { border-color: var(--ink-line); box-shadow: 2px 2px 0 var(--ink-line); }
.audience__visual { border-left: 3px solid var(--ink-line); }
.audience__icon {
  box-sizing: border-box; width: 72px; height: 72px; padding: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.14); border: 2.5px solid #fff; box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
@media (max-width: 760px) {
  .audience__visual { border-left: none; border-bottom: 3px solid var(--ink-line); }
}

/* ---- Audience selector (tabs + swapping panel) ---- */
.paths { background: var(--cream); }
.btn--grad { background: var(--grad); color: #fff; box-shadow: 0 12px 26px -12px rgba(79,18,220,0.6); }
.btn--grad:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(79,18,220,0.7); }

.audience { text-align: center; }
.audience__tabs {
  display: inline-flex; gap: 6px; background: var(--white); border: 1px solid #e7e2f3;
  padding: 6px; border-radius: var(--radius-pill); box-shadow: var(--shadow-soft);
  margin: 0 auto clamp(28px, 4vw, 44px); flex-wrap: wrap; justify-content: center;
}
.audience__tab {
  border: none; background: transparent; cursor: pointer; font-family: inherit;
  padding: 12px 26px; border-radius: var(--radius-pill); font-weight: 600; font-size: 1rem;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.audience__tab:hover { color: var(--ink); }
.audience__tab.is-active { background: var(--grad); color: #fff; box-shadow: 0 10px 22px -10px rgba(79,18,220,0.6); }

.audience__panels { position: relative; }
.audience__panel { display: none; }
.audience__panel.is-active {
  display: grid; grid-template-columns: 1.05fr 0.95fr; text-align: left;
  background: var(--white); border: 1px solid #ece8f7; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); animation: panelIn 0.45s var(--ease);
}
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.audience__body { padding: clamp(34px, 4vw, 56px); }
.audience__body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.01em; margin-bottom: 14px; }
.audience__body p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 24px; max-width: 46ch; }
.check-list--dark { margin-bottom: 30px; }
.check-list--dark li { color: var(--ink); }
.check-list--dark li::before { background: color-mix(in srgb, var(--accent) 22%, white); color: var(--accent); }

.audience__visual {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, var(--accent), #1c0a52);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: clamp(34px, 4vw, 56px);
}
.audience__tab .tab-ic { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.audience__icon { width: 54px; height: 54px; color: var(--lime-light); position: relative; }
.audience__visual .script { font-family: "Allura", cursive; font-size: 2.8rem; color: var(--lime-light); position: relative; }
.audience__leaf {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M90 140 L90 72'/%3E%3Cpath d='M90 72 C90 48 90 30 90 23 C84 35 81 50 84 68'/%3E%3Cpath d='M90 80 C70 64 54 44 48 30 C57 52 70 72 86 84'/%3E%3Cpath d='M90 80 C110 64 126 44 132 30 C123 52 110 72 94 84'/%3E%3C/g%3E%3C/svg%3E") 120% 20%/200px no-repeat;
}

@media (max-width: 760px) {
  .audience__panel.is-active { grid-template-columns: 1fr; }
  .audience__visual { order: -1; min-height: 180px; }
}

/* ---- How it works: light comic step cards ---- */
.how { background: #f4f1fc; position: relative; overflow: hidden; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  position: relative; overflow: hidden; background: #fff; border-radius: var(--radius);
  border: 2.5px solid var(--ink-line); box-shadow: 5px 5px 0 var(--ink-line);
  padding: 30px 26px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink-line); }
.step-card__num {
  display: block; font-size: 3.6rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  color: var(--lime-light); -webkit-text-stroke: 2px var(--ink-line);
  paint-order: stroke; margin-bottom: 12px;
}
.step-card__icon { width: 40px; height: 40px; color: var(--violet); display: block; margin-bottom: 14px; }
.step-card h4 { font-size: 1.22rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.step-card p { color: var(--ink-soft); font-size: 0.97rem; }

@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---- FAQ accordion ---- */
.faq__inner { max-width: 860px; margin: 0 auto; }
.section-head--left { text-align: left; margin: 0 0 clamp(30px, 4vw, 50px); max-width: none; }
.faq__item { border-bottom: 1px solid #e7e2f3; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 24px 0; font-weight: 600; font-size: 1.12rem;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--violet); font-size: 1.6rem; font-weight: 400; transition: transform 0.3s; flex: 0 0 auto; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 24px; color: var(--ink-soft); max-width: 72ch; line-height: 1.7; }

/* ---- Contact cards ---- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 10px auto 26px; }
.contact-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm); padding: 24px; text-align: left; transition: 0.25s var(--ease);
}
.contact-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.contact-card strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.contact-card span { opacity: 0.7; font-size: 0.9rem; }
.cta__email { opacity: 0.85; margin-top: 4px; }
.cta__email a { color: var(--lime-light); text-decoration: underline; }
.cta__links { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; font-size: 0.95rem; }
.cta__links a { color: var(--lime-light); text-decoration: underline; }
.cta__links span { opacity: 0.4; }
.about__link { margin: 6px 0 0; }
.about__link a { color: var(--violet); font-weight: 600; }

/* ---- About: beautified ---- */
.about { background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%); }
.about__grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.about__content .h2 { margin-bottom: 22px; }
.about__content p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 18px; }
.about__ethos { font-size: 1.15rem; color: var(--ink); }
.about__ethos strong { color: var(--violet); }

.about__visual { display: flex; }
.about__card {
  position: relative; overflow: hidden; width: 100%; min-height: 380px; border-radius: var(--radius);
  background: radial-gradient(circle at 72% 20%, #6f33f2, #190a4d);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  padding: 44px; box-shadow: var(--shadow);
}
.about__logo { width: min(230px, 72%); position: relative; z-index: 1; }
.about__tagline { font-family: "Allura", cursive; font-size: 2.1rem; color: var(--lime-light); position: relative; z-index: 1; line-height: 1; }
.about__badge {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); color: #fff;
  padding: 9px 18px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem;
  backdrop-filter: blur(6px);
}
.about__badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-light); box-shadow: 0 0 8px var(--lime-light); }
.about__leaf {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M100 150 L100 78'/%3E%3Cpath d='M100 78 C100 52 100 32 100 25 C94 38 90 56 94 74'/%3E%3Cpath d='M100 86 C78 70 60 48 54 32 C64 56 78 78 96 90'/%3E%3Cpath d='M100 86 C122 70 140 48 146 32 C136 56 122 78 104 90'/%3E%3C/g%3E%3C/svg%3E") 115% -12%/240px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M100 150 L100 78'/%3E%3Cpath d='M100 78 C100 52 100 32 100 25 C94 38 90 56 94 74'/%3E%3Cpath d='M100 86 C78 70 60 48 54 32 C64 56 78 78 96 90'/%3E%3Cpath d='M100 86 C122 70 140 48 146 32 C136 56 122 78 104 90'/%3E%3C/g%3E%3C/svg%3E") -18% 112%/180px no-repeat;
  animation: sway 9s ease-in-out infinite;
}

.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 5vw, 60px); }
.about-stat {
  position: relative; overflow: hidden; background: var(--white); border: 1px solid #ece8f7;
  border-radius: var(--radius-sm); padding: 30px 28px; box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.about-stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.about-stat strong {
  display: block; font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-stat span { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; }
  .about__card { min-height: 300px; }
}

/* ---- Footer compliance ---- */
.reviews { background: var(--cream); }
.footer__ack, .footer__disclaimer, .footer__entities { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__ack p, .footer__disclaimer p { opacity: 0.55; font-size: 0.8rem; max-width: 95ch; line-height: 1.7; }

/* Labelled corporate/legal info (footer + age gate) */
.legal-info { display: grid; gap: 10px; text-align: left; max-width: 620px; }
.legal-info__row { display: grid; grid-template-columns: 168px 1fr; gap: 6px 16px; align-items: baseline; }
.legal-info__label { margin: 0; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.legal-info__val { margin: 0; font-size: 0.86rem; line-height: 1.45; }
.legal-info a { text-decoration: underline; }

.footer__entities .legal-info__label { color: var(--ashley); }
.footer__entities .legal-info__val { color: rgba(255,255,255,0.72); }
.footer__entities .legal-info a { color: var(--lime-light); }

.legal-info--gate { margin: 22px auto 0; padding-top: 18px; border-top: 2px solid #ece8f7; }
.legal-info--gate .legal-info__row { grid-template-columns: 130px 1fr; }
.legal-info--gate .legal-info__val { font-size: 0.8rem; }
.age-gate .legal-info__label { color: var(--violet); }
.age-gate .legal-info__val { color: var(--ink-soft); }
.age-gate .legal-info a { color: var(--violet); }

@media (max-width: 560px) {
  .legal-info__row, .legal-info--gate .legal-info__row { grid-template-columns: 1fr; gap: 2px; }
  .legal-info__label { opacity: 0.85; }
}

@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- Count-up emphasis ---- */
.stat strong[data-count] { font-variant-numeric: tabular-nums; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .aurora span, .gradient-text, .moving-cards__track, .bento-leaf { animation: none !important; }
  .gradient-text { -webkit-text-fill-color: var(--lime-light); color: var(--lime-light); }
}

/* ---- Responsive bento ---- */
@media (max-width: 940px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-tile--feature { grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
  .bento-tile--wide { grid-column: 1 / 3; grid-row: auto; }
  .moving-cards .review { width: 300px; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-tile--feature, .bento-tile--wide { grid-column: 1; }
}
