/* WOW KOLAGEN — Landing page styles
   Brand: JoKaPRO / JOKA & CO
   Colors: #5b267d (purple) / #d1fd51 (lime) / off-white base
*/

:root {
  --purple: #5b267d;
  --purple-deep: #3e1856;
  --purple-soft: #f3ecf6;
  --purple-tint: rgba(91, 38, 125, 0.08);
  --lime: #d1fd51;
  --lime-soft: #ecffb0;
  --bg: #faf8f3;
  --bg-card: #ffffff;
  --bg-warm: #f4efe6;
  --ink: #1c1420;
  --ink-soft: #5a4d5e;
  --ink-mute: #8a7f8e;
  --line: rgba(28, 20, 32, 0.08);
  --line-strong: rgba(28, 20, 32, 0.16);
  --shadow-sm: 0 1px 2px rgba(28, 20, 32, 0.04), 0 2px 8px rgba(28, 20, 32, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 20, 32, 0.06), 0 12px 32px rgba(91, 38, 125, 0.06);
  --shadow-lg: 0 8px 24px rgba(91, 38, 125, 0.12), 0 24px 64px rgba(28, 20, 32, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Typography ===== */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--purple);
}
.h-display em { font-style: italic; color: var(--purple-deep); }

.h-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--purple);
}

.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 60ch;
}

/* ===== Layout ===== */
.section {
  padding: clamp(64px, 9vw, 120px) var(--pad);
  position: relative;
}
.section--tight { padding-top: clamp(40px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--purple); color: #fff; }
.section--dark .h-display { color: #fff; }
.section--dark .h-display em { color: var(--lime); font-style: italic; }
.section--dark .h-eyebrow { color: var(--lime); }
.section--dark .lede { color: rgba(255, 255, 255, 0.78); }

.container { max-width: var(--max); margin: 0 auto; }
.container--narrow { max-width: 920px; }

.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lede { margin-top: 4px; }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 26px; width: auto; }
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.nav__links a:hover { color: var(--purple); }
.nav__cta { font-size: 14px; padding: 10px 18px; }
@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(91, 38, 125, 0.28);
}
.btn--primary:hover {
  background: var(--purple-deep);
  box-shadow: 0 0 0 3px var(--lime), 0 6px 20px rgba(91, 38, 125, 0.32);
  transform: translateY(-1px);
}
.btn--lime {
  background: var(--lime);
  color: var(--purple);
  box-shadow: 0 4px 14px rgba(209, 253, 81, 0.4);
}
.btn--lime:hover { transform: translateY(-1px); background: #ddff70; }
.btn--ghost {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--purple); background: var(--purple-soft); }
.btn--dark-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--dark-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn__arrow { transition: transform 0.2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--lime);
  color: var(--purple);
  white-space: nowrap;
}
.badge--ghost { background: transparent; color: var(--purple); border: 1px solid var(--purple); }
.badge--outline { background: var(--bg-card); color: var(--purple); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); }
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }

/* ===== HERO ===== */
.hero {
  padding: clamp(40px, 5vw, 60px) var(--pad) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero__eyebrow-line { width: 36px; height: 1px; background: var(--purple); opacity: 0.4; }
.hero__title {
  font-size: clamp(38px, 4.8vw, 64px);
  margin-bottom: 24px;
  line-height: 1.02;
  text-wrap: balance;
}
.hero__title .accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 0; bottom: 0;
  background: var(--lime);
  z-index: -1;
  transform: skewX(-8deg);
  border-radius: 4px;
}
.hero__title .accent-color { color: var(--purple-deep); }
.hero__subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 52ch;
  text-wrap: pretty;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__trust-stars { display: flex; gap: 2px; color: var(--purple); }
.hero__trust-text { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.hero__trust-text strong { color: var(--ink); font-weight: 700; }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__blob {
  position: absolute;
  inset: 8% 6% 10% 4%;
  background: var(--lime);
  border-radius: 49% 51% 42% 58% / 55% 45% 55% 45%;
  z-index: 0;
  filter: blur(1px);
  animation: blobFloat 14s ease-in-out infinite;
}
.hero__blob--soft {
  position: absolute;
  inset: 14% 14% 16% 12%;
  background: radial-gradient(circle at 30% 30%, rgba(91, 38, 125, 0.12), transparent 60%);
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); border-radius: 49% 51% 42% 58% / 55% 45% 55% 45%; }
  33% { transform: translate(2%, -2%) rotate(4deg); border-radius: 58% 42% 53% 47% / 42% 58% 42% 58%; }
  66% { transform: translate(-2%, 2%) rotate(-3deg); border-radius: 42% 58% 48% 52% / 58% 42% 58% 42%; }
}
.hero__product {
  position: relative;
  z-index: 2;
  width: 78%;
  filter: drop-shadow(0 30px 50px rgba(91, 38, 125, 0.25)) drop-shadow(0 12px 24px rgba(28, 20, 32, 0.12));
}
.hero__chip {
  position: absolute;
  z-index: 3;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.hero__chip strong { display: block; color: var(--purple); font-size: 22px; font-family: var(--font-display); line-height: 1; margin-bottom: 4px; }
.hero__chip span { color: var(--ink-soft); font-size: 12px; line-height: 1.3; }
.hero__chip--tl { top: 8%; left: -2%; }
.hero__chip--br { bottom: 10%; right: -4%; }
.hero__chip-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--purple); color: var(--lime); display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 4 / 5; max-width: 520px; margin: 0 auto; }
  .hero__chip--tl { left: 0; }
  .hero__chip--br { right: 0; }
}

/* ===== Marquee ribbon ===== */
.ribbon {
  background: var(--purple);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--purple-deep);
  border-bottom: 1px solid var(--purple-deep);
}
.ribbon__track {
  display: flex;
  gap: 48px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ribbon__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ribbon__item::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  margin-left: 48px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Trust / Social proof ===== */
.trust {
  padding: clamp(48px, 6vw, 80px) var(--pad);
  background: var(--bg-card);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}
.trust__score { display: flex; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.trust__number {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.9;
  color: var(--purple);
  font-weight: 400;
}
.trust__number-sub { font-size: 32px; color: var(--ink-mute); }
.trust__stars { display: flex; gap: 4px; margin-bottom: 8px; font-size: 22px; color: var(--purple); }
.trust__caption { font-size: 15px; color: var(--ink-soft); }
.trust__caption strong { color: var(--ink); font-weight: 700; font-size: 17px; display: block; }
.trust__bars { display: flex; flex-direction: column; gap: 12px; }
.trust__bar { display: flex; align-items: center; gap: 14px; font-size: 13px; }
.trust__bar-label { width: 80px; color: var(--ink-soft); display: flex; align-items: center; gap: 4px; }
.trust__bar-track {
  flex: 1;
  height: 8px;
  background: var(--purple-soft);
  border-radius: 999px;
  overflow: hidden;
}
.trust__bar-fill { height: 100%; background: var(--purple); border-radius: 999px; transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.trust__bar--accent .trust__bar-fill { background: var(--lime); }
.trust__bar-pct { width: 40px; text-align: right; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.trust__note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 64ch;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .trust__grid { grid-template-columns: 1fr; }
}

/* ===== Education ===== */
.edu__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.edu__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, var(--purple) 0%, var(--purple-deep) 100%);
  padding: 36px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
}
.edu__visual::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  opacity: 0.35;
  filter: blur(40px);
}
.edu__visual h3 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); line-height: 1; margin-bottom: 16px; position: relative; }
.edu__visual h3 em { font-style: italic; color: var(--lime); }
.edu__visual p { font-size: 15px; opacity: 0.85; line-height: 1.55; position: relative; }
.edu__visual-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 6px 12px;
  background: var(--lime);
  color: var(--purple);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.edu__list { display: flex; flex-direction: column; gap: 24px; }
.edu__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.edu__item:last-child { border-bottom: 0; padding-bottom: 0; }
.edu__item-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--purple);
  line-height: 1;
  padding-top: 4px;
}
.edu__item h4 { font-size: 17px; margin-bottom: 6px; color: var(--ink); font-weight: 700; }
.edu__item p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }
@media (max-width: 880px) {
  .edu__grid { grid-template-columns: 1fr; }
  .edu__visual { aspect-ratio: 5/4; }
}

/* ===== Features (Co wyróżnia) ===== */
.features__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature--hero {
  background: var(--lime);
  color: var(--purple-deep);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  border-color: var(--lime);
  position: relative;
}
.feature--hero::before {
  content: "GELITA";
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 5px 10px;
  background: var(--purple);
  color: var(--lime);
  border-radius: 999px;
}
.feature--hero h3 { font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 48px); line-height: 1; color: var(--purple-deep); font-weight: 400; letter-spacing: -0.01em; }
.feature--hero p { color: var(--purple-deep); font-size: 15px; font-weight: 500; opacity: 0.85; }
.feature--hero .feature__big {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 100px);
  line-height: 0.85;
  color: var(--purple);
  font-style: italic;
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 17px; color: var(--ink); margin-bottom: 8px; line-height: 1.25; font-weight: 700; }
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }
.feature--lime { background: var(--purple); color: #fff; border-color: var(--purple); }
.feature--lime .feature__icon { background: var(--lime); color: var(--purple); }
.feature--lime h3 { color: #fff; font-family: var(--font-display); font-size: 28px; line-height: 1; font-weight: 400; }
.feature--lime p { color: rgba(255,255,255,0.82); }
@media (max-width: 880px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature--hero { grid-column: span 2; }
}
@media (max-width: 520px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature--hero { grid-column: span 1; grid-template-columns: 1fr; }
}

/* ===== Composition table ===== */
.comp__panel {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.comp__side h3 { font-family: var(--font-display); font-size: clamp(32px, 3.4vw, 44px); line-height: 1; color: var(--purple); margin-bottom: 12px; }
.comp__side p { font-size: 15px; color: var(--ink-soft); margin-bottom: 24px; }
.comp__portion {
  background: var(--purple);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.comp__portion-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin-bottom: 4px; }
.comp__portion-value { font-family: var(--font-display); font-size: 32px; line-height: 1; }
.comp__portion-note { font-size: 13px; opacity: 0.8; margin-top: 8px; }
.comp__notes { font-size: 12px; color: var(--ink-mute); line-height: 1.5; padding-top: 16px; border-top: 1px solid var(--line); }
.comp__notes p { margin-bottom: 4px; }

.comp__table { display: flex; flex-direction: column; }
.comp__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  font-size: 15px;
}
.comp__row:last-child { border-bottom: 0; }
.comp__row--star .comp__row-name::before { content: "★ "; color: var(--lime); }
.comp__row-name { color: var(--ink); font-weight: 500; }
.comp__row-name small { display: block; font-size: 12px; color: var(--ink-mute); font-weight: 400; margin-top: 2px; }
.comp__row-value { font-weight: 700; color: var(--purple); font-variant-numeric: tabular-nums; }
.comp__row-rws { font-size: 12px; color: var(--ink-mute); padding: 3px 8px; background: var(--purple-soft); border-radius: 999px; font-weight: 600; font-variant-numeric: tabular-nums; min-width: 84px; text-align: center; }
@media (max-width: 880px) {
  .comp__panel { grid-template-columns: 1fr; }
  .comp__row { grid-template-columns: 1fr auto; }
  .comp__row-rws { grid-column: 2; }
}

/* ===== Ingredient property cards ===== */
.props__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prop {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prop__head { display: flex; align-items: center; gap: 12px; }
.prop__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--lime);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 16px;
}
.prop__name { font-weight: 700; font-size: 16px; color: var(--ink); }
.prop__name small { display: block; font-size: 11px; color: var(--ink-mute); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }
.prop__desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }
@media (max-width: 880px) { .props__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .props__grid { grid-template-columns: 1fr; } }

/* ===== Results section ===== */
.results__head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: clamp(40px, 5vw, 56px); max-width: var(--max); margin-left: auto; margin-right: auto; }
.results__head-meta { display: flex; flex-direction: column; gap: 8px; padding: 16px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-md); font-size: 12px; }
.results__head-meta div { display: flex; justify-content: space-between; gap: 24px; }
.results__head-meta strong { color: var(--lime); font-weight: 700; }
@media (max-width: 760px) {
  .results__head { grid-template-columns: 1fr; }
}

.results__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.result--feature {
  background: var(--lime);
  color: var(--purple);
  border-color: var(--lime);
  grid-column: span 2;
}
.result--full {
  grid-column: 1 / -1;
  background: rgba(209, 253, 81, 0.08);
  border-color: rgba(209, 253, 81, 0.28);
}
.result__full-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.result__num--stars {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--lime);
  letter-spacing: -0.04em;
}
.result--full .result__label { font-size: 18px; margin-bottom: 6px; }
.result--full .result__desc { font-size: 14px; }
@media (max-width: 600px) {
  .result__full-grid { grid-template-columns: 1fr; gap: 12px; }
}
.result--feature .result__num,
.result--feature .result__label,
.result--feature .result__desc { color: var(--purple); }
.result__device { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; font-weight: 700; }
.result--feature .result__device { color: var(--purple); opacity: 0.7; }
.result__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 84px);
  line-height: 0.9;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.result__num sup { font-size: 32px; line-height: 1; color: var(--lime); }
.result--feature .result__num sup { color: var(--purple-deep); }
.result__label { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; line-height: 1.3; }
.result__desc { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }
.result__delta { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 999px; background: rgba(209, 253, 81, 0.18); color: var(--lime); font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; margin-top: 12px; }
.result--feature .result__delta { background: var(--purple); color: var(--lime); }
@media (max-width: 880px) {
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .result--feature { grid-column: span 2; }
}
@media (max-width: 520px) {
  .results__grid { grid-template-columns: 1fr; }
  .result--feature { grid-column: span 1; }
}

.results__note {
  max-width: var(--max);
  margin: clamp(32px, 4vw, 48px) auto 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  text-wrap: pretty;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ===== Declarations ===== */
.decl__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.decl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  align-items: center;
  border: 1px solid var(--line);
}
.decl__pct {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.9;
  color: var(--purple);
  font-weight: 400;
}
.decl__text { font-size: 14px; color: var(--ink); line-height: 1.4; }
.decl--accent { background: var(--lime); border-color: var(--lime); }
@media (max-width: 760px) { .decl__grid { grid-template-columns: 1fr; } }

/* ===== Reviews / themes ===== */
.themes__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.theme {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--line);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.theme__count { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--purple); margin-bottom: 16px; }
.theme__name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.theme__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.theme--accent { background: var(--purple); color: #fff; }
.theme--accent .theme__count { color: var(--lime); }
.theme--accent .theme__desc { color: rgba(255,255,255,0.75); }
@media (max-width: 880px) { .themes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .themes__grid { grid-template-columns: 1fr; } }

.review-bar {
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 24px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.review-bar__stars { color: var(--purple); font-size: 20px; }
.review-bar__score { font-family: var(--font-display); font-size: 32px; color: var(--purple); line-height: 1; }
.review-bar__text { font-size: 14px; color: var(--ink-soft); flex: 1; min-width: 200px; }
.review-bar__text strong { color: var(--ink); font-weight: 700; }

/* ===== How to use steps ===== */
.steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.step {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step:last-child { border-right: 0; }
.step__num {
  width: 44px; height: 44px;
  background: var(--purple);
  color: var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}
.step h3 { font-size: 22px; font-family: var(--font-display); color: var(--purple); }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }
.step__visual { margin-top: auto; padding-top: 16px; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
}

/* ===== Audience ===== */
.audience__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.audience__list { display: flex; flex-direction: column; gap: 4px; }
.audience__row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.audience__row:last-child { border-bottom: 0; }
.audience__row-check { color: var(--purple); }
.audience__row p { font-size: 16px; color: var(--ink); line-height: 1.5; }
.audience__panel {
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--purple);
  position: sticky;
  top: 100px;
}
.audience__panel h3 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); line-height: 1.05; margin-bottom: 16px; }
.audience__panel p { font-size: 15px; line-height: 1.55; color: var(--purple-deep); margin-bottom: 24px; }
@media (max-width: 760px) {
  .audience__grid { grid-template-columns: 1fr; }
  .audience__panel { position: static; }
}

/* ===== Brand story ===== */
.story__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__visual-wrap {
  position: relative;
}
.story__visual-wrap::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: 60%;
  height: 40%;
  background: var(--lime);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.story__visual-wrap::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 40%;
  height: 30%;
  border: 1px solid var(--purple);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.story__visual { position: relative; z-index: 1; }
.story__visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.story__quote {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 16px 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}
.story__quote-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color: var(--lime); display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; flex-shrink: 0; }
.story__quote-name { font-size: 13px; font-weight: 700; color: var(--purple); line-height: 1.2; }
.story__quote-role { font-size: 11px; color: var(--ink-mute); margin-top: 2px; }
.story__text h2 { margin-bottom: 24px; }
.story__text p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; text-wrap: pretty; }
.story__text p strong { color: var(--ink); }
@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 18px;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--lime); }
.faq__a {
  padding: 0 56px 24px 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  text-wrap: pretty;
}
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ===== Final CTA ===== */
.final {
  background: var(--purple);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(ellipse, rgba(209, 253, 81, 0.18) 0%, transparent 70%);
  filter: blur(40px);
}
.final__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final h2 { font-size: clamp(40px, 6vw, 76px); line-height: 1; color: #fff; font-family: var(--font-display); margin-bottom: 20px; }
.final h2 em { font-style: italic; color: var(--lime); }
.final p { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; text-wrap: pretty; }
.final__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Warnings / footer ===== */
.warn {
  padding: clamp(32px, 4vw, 48px) var(--pad);
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}
.warn__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.warn__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--lime);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 22px;
}
.warn__title { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); font-weight: 700; margin-bottom: 8px; }
.warn p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; text-wrap: pretty; }

.foot {
  padding: 40px var(--pad);
  background: var(--purple-deep);
  color: rgba(255,255,255,0.7);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot img { height: 22px; filter: brightness(0) invert(1); }
.foot__copy { font-size: 12px; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: none;
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(28, 20, 32, 0.24);
  gap: 16px;
}
.sticky-cta__left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sticky-cta__thumb { width: 36px; height: 36px; border-radius: 50%; background: var(--lime); padding: 4px; flex-shrink: 0; }
.sticky-cta__thumb img { width: 100%; height: 100%; object-fit: contain; }
.sticky-cta__text { font-size: 13px; line-height: 1.2; min-width: 0; }
.sticky-cta__text strong { display: block; font-size: 14px; font-weight: 700; }
.sticky-cta__text span { font-size: 11px; color: var(--lime); }
.sticky-cta__btn {
  background: var(--lime);
  color: var(--purple);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 88px; }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Section dividers ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 200px;
}
.divider span { color: var(--lime); }
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}
