/* ============================================================
   Sexy Jutsu — landing styles
   Vanilla CSS, no build step. Dark neon-plum system.
   Display: Unbounded (self-hosted). Body: Inter (self-hosted).
   ============================================================ */

/* === Fonts (self-hosted, latin + cyrillic subsets) === */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/public/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/public/fonts/inter-cyr-400.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/public/fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/public/fonts/inter-cyr-600.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/public/fonts/inter-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/public/fonts/inter-cyr-700.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/public/fonts/unbounded-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/public/fonts/unbounded-cyr-700.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/public/fonts/unbounded-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/public/fonts/unbounded-cyr-800.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* === Tokens === */
:root {
  --bg: #0b0712;
  --bg-2: #110a1e;
  --bg-3: #07040d;          /* deepest band, anchors the page */
  --card: #1a1029;
  --card-hi: #221634;       /* elevated card surface */
  --line: #2a1d3f;
  --line-soft: rgba(255,61,139,0.18); /* accent-soft border for live cards */
  --text: #f4eef9;
  --muted: #a294be;
  --muted-2: #6f6088;
  --accent: #ff3d8b;
  --accent-2: #b46bff;
  --grad: linear-gradient(120deg, var(--accent), var(--accent-2));
  --glow: 0 0 120px 10px rgba(255,61,139,0.28);
  --shadow: 0 20px 60px rgba(255,61,139,0.15);
  --shadow-card: 0 18px 50px -20px rgba(0,0,0,0.7);
  --radius: 18px;
  --radius-lg: 26px;

  /* spacing scale */
  --space-1: .5rem;
  --space-2: .85rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;

  --container: 1100px;
  --container-wide: 1240px;

  /* motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  /* one continuous page-wide gradient: a vertical plum wash spanning the whole
     document, with soft neon radial accents anchored near the top. No per-section
     bands — sections are transparent and separate via spacing, cards and hairlines. */
  background:
    radial-gradient(1100px 700px at 12% 0%, rgba(180,107,255,0.20), transparent 55%),
    radial-gradient(1100px 800px at 92% 4%, rgba(255,61,139,0.20), transparent 55%),
    linear-gradient(178deg, #140b22 0%, #0e0819 32%, #0b0712 64%, #07040d 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .18s var(--ease-out); }
a:hover { color: var(--accent-2); }

img, svg { max-width: 100%; display: block; }

::selection { background: rgba(255,61,139,0.32); color: #fff; }

/* === Age Gate === */
.age-gate[hidden] { display: none !important; }
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(7,4,13,0.82);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1.25rem;
}
.age-gate__card {
  max-width: 460px;
  width: 100%;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 40%),
    var(--card-hi);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}
.age-gate__badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .9rem;
  letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(255,61,139,0.4);
}
.age-gate__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -.01em;
  margin: 1.1rem 0 .6rem;
}
.age-gate__text { color: var(--muted); font-size: 1rem; line-height: 1.55; }
.age-gate__actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s var(--ease-out), box-shadow .2s var(--ease-out),
              border-color .2s var(--ease-out), background .2s var(--ease-out);
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary {
  background: var(--grad);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(255,61,139,0.55);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(255,61,139,0.65);
}
.btn-ghost {
  background: rgba(255,255,255,0.02);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { color: var(--text); border-color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { animation: btnShift 2.4s var(--ease-in-out) infinite alternate; }
}
@keyframes btnShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

/* === Layout primitives === */
section, header, footer { padding: var(--space-6) 1.25rem; }
.wrap { max-width: var(--container); margin: 0 auto; }
.wrap-wide { max-width: var(--container-wide); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255,61,139,0.08);
  border: 1px solid rgba(255,61,139,0.28);
  padding: .4rem .9rem;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* === Nav === */
.hero { position: relative; max-width: var(--container-wide); margin: 0 auto; padding-bottom: var(--space-6); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 var(--space-5);
}
.logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}
.logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo--sm { font-size: 1.1rem; }
.nav__right { display: flex; align-items: center; gap: 1.1rem; }
.nav__cta {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), transform .16s var(--ease-out);
}
.nav__cta:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.lang-switch { display: inline-flex; align-items: center; gap: .35rem; font-size: .9rem; }
.lang-switch__current { color: var(--text); font-weight: 700; }
.lang-switch__sep { color: var(--muted); opacity: .5; }
.lang-switch__alt { color: var(--muted); }
.lang-switch__alt:hover { color: var(--accent); }

/* === Hero === */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero__content { max-width: 640px; }
.hero__badge { /* legacy alias kept; styled like eyebrow */
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--accent);
  background: rgba(255,61,139,0.08); border: 1px solid rgba(255,61,139,0.28);
  padding: .4rem .9rem; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
}
.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.15rem, 4.7vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 1.4rem 0 1.25rem;
}
.hero__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 1.9rem;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero__hint { color: var(--muted); margin-top: 1.4rem; font-size: .95rem; }
.hero__hint strong { color: var(--text); }

/* hero visual: tall, glowing, slots any aspect via explicit box */
.hero__media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 440px;
  display: flex; /* lets the image fill the box height on desktop */
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: -8% -6% -10% -6%;
  background: radial-gradient(60% 60% at 60% 35%, rgba(255,61,139,0.5), transparent 70%),
              radial-gradient(55% 55% at 30% 70%, rgba(180,107,255,0.45), transparent 70%);
  filter: blur(36px);
  z-index: -1;
  opacity: .8;
}
.hero__image {
  width: 100%;
  aspect-ratio: 4 / 5; /* mobile / single-column: keep a portrait box */
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,61,139,0.12);
}
.hero__tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(7,4,13,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: .4rem .8rem;
  border-radius: 999px;
}
.hero__tag::before {
  content: "";
  width: .5rem; height: .5rem; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

@media (min-width: 860px) {
  /* stretch both columns to equal height so the image bottom lines up with
     the bottom of the text module (user verdict: image was too tall) */
  .hero__layout { grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 4rem; align-items: stretch; }
  .hero__media { justify-self: end; max-width: 460px; }
  /* image fills the text-column height; aspect-ratio yields to the flex stretch */
  .hero__image {
    height: 100%;
    aspect-ratio: auto;
    min-height: 320px; /* never collapse if the text column is unusually short */
  }
}

/* === Section headings === */
.section__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 0 0 .9rem;
  text-align: center;
}
.section__lead {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2.75rem;
  font-size: 1.08rem;
  line-height: 1.55;
  text-wrap: balance;
}
.section__hint {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  margin-top: 2rem;
}

/* === Trust strip === */
.trust {
  background: rgba(7,4,13,0.28); /* faint tint over the page gradient, not a hard band */
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.75rem 1.25rem;
}
.trust__row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.25rem;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
  font-weight: 600;
  font-size: .98rem;
}
.trust__item svg { width: 1.2rem; height: 1.2rem; color: var(--accent); flex: none; }
.trust__sep { width: 1px; height: 1.4rem; background: var(--line); }

/* === How it works === */
.how { background: transparent; }
.how__steps {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.step {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 45%),
    var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.6rem;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out);
}
.step:hover { transform: translateY(-3px); border-color: var(--line-soft); }
.step__num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  width: 2.6rem; height: 2.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 22px -8px rgba(255,61,139,0.6);
  margin-bottom: 1rem;
}
.step h3 { margin: 0 0 .4rem; font-size: 1.18rem; font-weight: 700; }
.step p { color: var(--muted); margin: 0; font-size: .97rem; line-height: 1.5; }
.step code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(255,61,139,0.12);
  color: var(--accent);
  padding: .1em .4em;
  border-radius: 6px;
  font-size: .9em;
}
@media (min-width: 760px) {
  .how__steps { grid-template-columns: repeat(3, 1fr); }
}

/* === Features === */
.features { background: transparent; }
.features__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
/* flagship: image + text side by side, full row */
.feature {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 40%),
    var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--line-soft);
  box-shadow: var(--shadow-card);
}
.feature__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__body { padding: 1.4rem 1.5rem 1.7rem; }
.feature__body h3 { margin: 0 0 .55rem; font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; }
.feature__body p { color: var(--muted); margin: 0; font-size: 1rem; line-height: 1.55; }
.feature__chips { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.feature__chips li {
  font-size: .82rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: .35rem .8rem;
  border-radius: 999px;
}
.feature--flag .feature__media { aspect-ratio: 3 / 2; }

/* vertical cards: image on top (uncropped 3:2), text below; 3 across on desktop */
@media (min-width: 820px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
}

/* === Rules (trust/safety) === */
.rules { background: transparent; }
.rules__grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.rule {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.rule__icon {
  flex: none;
  width: 2.4rem; height: 2.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255,61,139,0.1);
  border: 1px solid rgba(255,61,139,0.22);
}
.rule__icon svg { width: 1.25rem; height: 1.25rem; }
.rule p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.5; }
.rule strong { color: var(--text); }
@media (min-width: 720px) {
  .rules__grid { grid-template-columns: 1fr 1fr; }
}

/* === FAQ === */
.faq { max-width: 780px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: .75rem; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .25rem 1.4rem;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.faq__item[open] { border-color: var(--line-soft); background: var(--card-hi); }
.faq__item summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  width: 1.6rem; height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,61,139,0.12);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  transition: background .2s var(--ease-out), transform .2s var(--ease-out);
}
.faq__item[open] summary::after { content: "−"; background: rgba(255,61,139,0.22); transform: rotate(180deg); }
.faq__item p {
  color: var(--muted);
  padding-bottom: 1.1rem;
  margin: 0;
  line-height: 1.55;
}

/* === Styles & kinks teaser chips === */
.teaser { background: transparent; }
.teaser__chips {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}
.teaser__chips a {
  display: inline-block;
  padding: .6rem 1.15rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 600;
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), transform .16s var(--ease-out);
}
.teaser__chips a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* === Final CTA — loudest band === */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  /* loud accent glow over the shared page gradient — no opaque band, blends in */
  background:
    radial-gradient(70% 130% at 50% 100%, rgba(255,61,139,0.28), transparent 68%),
    radial-gradient(60% 120% at 50% 0%, rgba(180,107,255,0.16), transparent 70%);
  border-top: 1px solid rgba(255,61,139,0.18);
}
.cta__inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.04;
  margin: 0 0 .9rem;
}
.cta p { color: var(--muted); margin-bottom: 1.9rem; font-size: 1.15rem; }
.cta .btn-lg { padding: 1.15rem 2.4rem; font-size: 1.12rem; }

/* === Footer === */
.footer {
  background: rgba(7,4,13,0.35); /* faint deepening at the page foot, gradient still shows */
  border-top: 1px solid var(--line);
  padding: 3.5rem 1.25rem 4.5rem;
}
.footer__cols {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer h4 { font-size: .95rem; margin: 0 0 .85rem; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent); }
.footer__copy { color: var(--muted); font-size: .9rem; margin: .85rem 0 .25rem; }
.footer__warn { color: var(--muted-2); font-size: .85rem; margin: 0; max-width: 480px; line-height: 1.5; }

/* === Sticky mobile CTA === */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(7,4,13,0), rgba(7,4,13,0.92) 35%);
  display: none;
}
.sticky-cta .btn { width: 100%; box-shadow: 0 -2px 30px -6px rgba(255,61,139,0.5), 0 10px 30px -8px rgba(255,61,139,0.55); }
@media (max-width: 760px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 4.5rem; }
}

/* === Generated style/kink pages (.prog*) === */
.prog { max-width: 820px; margin: 0 auto; padding: var(--space-6) 1.25rem; }
.prog__breadcrumb {
  font-size: .85rem;
  color: var(--muted);
  padding-bottom: 2rem;
}
.prog__breadcrumb a { color: var(--muted); }
.prog__breadcrumb a:hover { color: var(--accent); }
.prog__age {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--accent);
  background: rgba(255,61,139,0.08);
  border: 1px solid rgba(255,61,139,0.28);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.prog__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 1.25rem;
}
.prog__prose { color: var(--text); }
.prog__prose p { color: var(--muted); margin: 0 0 1.1rem; line-height: 1.6; }
.prog__prose h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 2.5rem 0 1rem;
}
.prog__cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.prog__related {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.prog__related li a {
  display: inline-block;
  padding: .55rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), transform .16s var(--ease-out);
}
.prog__related li a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* === Motion: entrance + scroll reveal === */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); }
  /* hero + above-the-fold: animate immediately on load with stagger */
  .load-in { opacity: 0; transform: translateY(16px); animation: riseIn .7s var(--ease-out) forwards; }
  .load-in.d1 { animation-delay: .05s; }
  .load-in.d2 { animation-delay: .12s; }
  .load-in.d3 { animation-delay: .2s; }
  .load-in.d4 { animation-delay: .28s; }
  .load-in.d5 { animation-delay: .36s; }

  @keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

  /* scroll-driven reveal where supported */
  @supports (animation-timeline: view()) {
    .reveal {
      animation: riseIn .7s var(--ease-out) forwards;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
  /* fallback for browsers without scroll-driven animations: just show */
  @supports not (animation-timeline: view()) {
    .reveal { opacity: 1; transform: none; }
  }
}

/* === Responsive === */
@media (max-width: 860px) {
  section, header, footer { padding: var(--space-5) 1.25rem; }
  .nav { padding: 1.1rem 0 2rem; }
  .hero { padding-bottom: var(--space-5); }
}
@media (max-width: 720px) {
  .footer__cols { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero__title { margin-top: 1.1rem; }
}
@media (max-width: 420px) {
  .nav__cta { display: none; } /* sticky CTA covers the conversion on small phones */
}
