/* =========================================================
   DareOrDare / Creators — Dark Premium Edition
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,400&display=swap');

:root {
  --bg:            #0a0908;
  --bg-card:       #131110;
  --bg-elevated:   #1a1714;
  --bg-accent:     #241e1b;
  --text:          #f5f0e8;
  --text-muted:    #7a726b;
  --text-soft:     #b8b0a8;
  --accent:        #d64533;
  --accent-deep:   #a83423;
  --accent-soft:   rgba(214, 69, 51, 0.14);
  --accent-glow:   rgba(214, 69, 51, 0.28);
  --gold:          #e8b86d;
  --gold-soft:     rgba(232, 184, 109, 0.10);
  --border:        rgba(245, 240, 232, 0.07);
  --border-mid:    rgba(245, 240, 232, 0.12);
  --border-strong: rgba(245, 240, 232, 0.20);

  --font: "Rubik", "Heebo", -apple-system, "Segoe UI", sans-serif;
  --max:    1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 6px;
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  direction: ltr;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
em { font-style: italic; }

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  opacity: 0.04;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px var(--gutter);
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font);
  font-weight: 800;
}
.nav__brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}
.nav__brand-text { font-size: 14px; letter-spacing: -0.01em; color: var(--text-soft); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 24px; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  padding: 8px 18px;
  background: var(--accent) !important;
  color: var(--text) !important;
  font-weight: 700 !important;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: background .2s, transform .15s !important;
}
.nav__cta:hover {
  background: var(--accent-deep) !important;
  transform: translateY(-1px);
  color: var(--text) !important;
}
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__brand-text { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 10vw, 130px) var(--gutter) clamp(20px, 3vw, 32px);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  inset-inline-end: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: clamp(28px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  padding: 7px 16px;
  border-radius: 100px;
}
.hero__tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50%      { box-shadow: 0 0 10px var(--accent-glow), 0 0 0 6px transparent; }
}

.hero__title {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 152px);
  line-height: 0.90;
  letter-spacing: -0.04em;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--text);
}
.hero__title-line-1,
.hero__title-line-2,
.hero__title-line-3 { display: block; }
.hero__title-line-2 em {
  color: var(--accent);
  font-style: normal;
}
.hero__price {
  display: inline-block;
  color: var(--accent);
  position: relative;
}
.hero__price::after {
  content: "";
  position: absolute;
  inset-inline-start: 0; inset-inline-end: 0;
  bottom: 4px; height: 10px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 2px;
}
.hero__title-small {
  font-size: 0.52em;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__subtitle {
  max-width: 600px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 clamp(32px, 4vw, 48px);
  font-weight: 400;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  font-family: var(--font);
}
.btn--primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--border-mid);
}
.btn--ghost:hover {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--large { padding: 18px 36px; font-size: 16px; }
.btn__arrow {
  width: 16px; height: 16px;
  transition: transform .2s;
  flex-shrink: 0;
}
.btn:hover .btn__arrow { transform: translateX(-3px); }

/* ---------- HERO META ---------- */
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.hero__meta-item {
  padding: 20px 16px;
  border-inline-start: 1px solid var(--border);
}
.hero__meta-item:first-child { border-inline-start: 0; }
.hero__meta-item strong {
  display: block;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.hero__meta-item span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
@media (max-width: 640px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__meta-item:nth-child(odd) { border-inline-start: 0; }
  .hero__meta-item:nth-child(3),
  .hero__meta-item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  background: var(--accent);
  padding: 18px 0;
}
.marquee__track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
  padding-inline-start: 32px;
  color: rgba(245, 240, 232, 0.9);
}
.marquee__track span:nth-child(even) { color: rgba(245, 240, 232, 0.45); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ---------- SECTION SHARED ---------- */
.section__lead {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--gutter) clamp(36px, 5vw, 56px);
}
.section__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 100px;
}
.section__title {
  font-family: var(--font);
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 16ch;
  color: var(--text);
}
.section__title--small {
  font-size: clamp(26px, 3.5vw, 44px);
  max-width: 24ch;
}
.section__sub {
  margin-top: 18px;
  max-width: 60ch;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---------- ABOUT ---------- */
.about {
  background: linear-gradient(135deg, #1a0c09 0%, #2d1410 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: "";
  position: absolute;
  inset-inline-end: -100px;
  top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(214,69,51,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about__kicker { color: rgba(245,240,232,0.5); background: rgba(245,240,232,0.08); }
.about__title {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--text);
}
.about__body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.72);
  margin: 0 0 14px;
}
.about__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.about .btn--ghost {
  color: rgba(245,240,232,0.7) !important;
  border-color: rgba(245,240,232,0.15) !important;
}
.about .btn--ghost:hover {
  background: rgba(245,240,232,0.08) !important;
  color: var(--text) !important;
}
.about__callout {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-inline-start: 3px solid var(--accent);
  padding: 36px 32px;
  border-radius: var(--radius);
}
.about__callout-fire { font-size: 32px; margin: 0 0 16px; }
.about__callout-text {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.about__callout-text strong { color: var(--gold); }
@media (max-width: 840px) { .about__inner { grid-template-columns: 1fr; } }

/* ---------- STEPS ---------- */
.how { padding-bottom: clamp(60px, 8vw, 100px); }
.steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.step {
  padding: 36px 28px 32px;
  border-inline-start: 1px solid var(--border);
  transition: background .2s;
}
.step:first-child { border-inline-start: 0; }
.step:hover { background: var(--bg-elevated); }
.step__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 18px;
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 100px;
}
.step__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}
.step__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 5-column variant */
.steps--five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) {
  .steps--five { grid-template-columns: repeat(3, 1fr); }
  .steps--five .step:nth-child(4) { border-inline-start: 0; border-top: 1px solid var(--border); }
  .steps--five .step:nth-child(5) { border-top: 1px solid var(--border); }
}
@media (max-width: 920px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--border); }
  .step:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .steps, .steps--five { grid-template-columns: 1fr; }
  .step { border-inline-start: 0 !important; border-top: 1px solid var(--border) !important; }
  .step:first-child { border-top: 0 !important; }
}

/* ---------- WHO / TRANSPARENCY ---------- */
.who {
  background: var(--bg-elevated);
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.who__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.who__paragraph {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 20px 0 0;
  max-width: 60ch;
}
.who__pullquote {
  position: relative;
  padding: 44px 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  border-inline-start: 3px solid var(--accent);
}
.who__pullquote-mark {
  position: absolute;
  top: -18px;
  inset-inline-start: 32px;
  font-size: 100px;
  line-height: 1;
  color: var(--accent);
  font-weight: 900;
  font-family: var(--font);
}
.who__pullquote p {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--text);
}
.who__pullquote-attrib {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@media (max-width: 840px) { .who__grid { grid-template-columns: 1fr; } }

/* ---------- PRODUCTS ---------- */
.products__featured {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  padding: 32px 28px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--accent-soft);
}
.product-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.product-card__img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin: 12px 0 20px;
  border-radius: var(--radius);
}
.product-card h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--text);
}
.product-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.products__others {
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 28px var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-inline: var(--gutter);
  max-width: calc(var(--max) - 0px);
}
.products__others h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-soft);
}
.products__others p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.products__others strong { color: var(--text-soft); }
@media (max-width: 820px) { .products__featured { grid-template-columns: 1fr; } }

/* ---------- IDEAS (VIDEO TYPES) ---------- */
.ideas { padding-bottom: 0; }
.ideas__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(72px, 10vw, 120px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.idea {
  padding: 36px 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s, transform .2s;
}
.idea:hover {
  border-color: var(--border-mid);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.idea__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.idea__title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--text);
  max-width: 22ch;
}
.idea__avatar {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.idea__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 20px;
}
.idea__hook {
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin: 0;
  padding: 14px 18px;
  background: var(--accent-soft);
  border-inline-start: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.45;
}
.idea__hook span {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Script details */
.idea__script-details { margin: 0 0 20px; }
.idea__script-toggle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  list-style: none;
  padding: 6px 0;
  transition: color .2s;
  display: inline-block;
}
.idea__script-toggle::-webkit-details-marker { display: none; }
.idea__script-toggle:hover { color: var(--accent); }
.idea__script {
  margin-top: 12px;
  padding: 16px 20px;
  background: var(--bg);
  border-inline-start: 2px solid var(--border-mid);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.idea__script p { margin: 0 0 10px; }
.idea__script p:last-child { margin: 0; }
.idea__script em { color: var(--text); }
.idea__script strong { color: var(--text-soft); }

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

/* Examples sub-section inside idea cards */
.idea__examples {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 4px;
}
.idea__examples-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 12px 0 8px;
}

/* Each example row = its own <details> */
.ex-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4px;
}
.ex-item__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .18s, border-color .18s;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  line-height: 1.35;
}
.ex-item__summary::-webkit-details-marker { display: none; }
.ex-item__summary:hover { background: var(--bg-accent); border-color: var(--border-mid); color: var(--text); }
.ex-item[open] > .ex-item__summary { background: var(--bg-accent); border-color: var(--border-mid); border-bottom-left-radius: 0; border-bottom-right-radius: 0; color: var(--text); }

.ex-arrow {
  flex-shrink: 0;
  font-size: 10px;
  color: var(--accent);
  transition: transform .2s;
  display: inline-block;
}
.ex-item[open] > .ex-item__summary .ex-arrow { transform: rotate(90deg); }

.ex-star { flex-shrink: 0; font-size: 14px; }

.ex-item__body {
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Responsive video embed — 9:16 */
.vimeo-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding-top: min(568px, 177.78%);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}
.vimeo-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.vimeo-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  background: var(--bg-elevated);
  padding: 10px 14px;
  border-radius: 6px;
  border-inline-start: 2px solid var(--border-mid);
  margin-top: 12px;
}

/* Script toggle inside video example */
.vimeo-script-details { margin-top: 14px; }
.vimeo-script-toggle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  list-style: none;
  padding: 6px 0;
  transition: color .2s;
  display: inline-block;
  user-select: none;
}
.vimeo-script-toggle::-webkit-details-marker { display: none; }
.vimeo-script-toggle:hover { color: var(--accent); }

.vimeo-script {
  margin-top: 8px;
  background: var(--bg);
  border-inline-start: 2px solid var(--border-mid);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-soft);
}
.vimeo-script p { margin: 0 0 8px; }
.vimeo-script p:last-child { margin: 0; }
.vimeo-script .script-he { margin-bottom: 0; }

/* Static image grid for idea 06 */
.idea__img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 560px) { .idea__img-grid { grid-template-columns: repeat(2, 1fr); } }
.idea__img-item { display: flex; flex-direction: column; gap: 6px; }
.idea__img-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}
.idea__img-caption {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.35;
}

/* ---------- RULES ---------- */
.rules {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding-bottom: clamp(72px, 10vw, 120px);
}
.rules__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rules__col {
  padding: 36px clamp(24px, 3vw, 40px);
  border-radius: var(--radius);
}
.rules__col--do {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.rules__col--dont {
  background: rgba(214, 69, 51, 0.06);
  border: 1px solid rgba(214, 69, 51, 0.2);
}
.rules__col-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
.rules__col--do .rules__col-title { color: #4caf7a; }
.rules__col--dont .rules__col-title { color: var(--accent); }
.rules__col ul li {
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.rules__col ul li:last-child { border-bottom: 0; }
@media (max-width: 720px) { .rules__grid { grid-template-columns: 1fr; } }

/* ---------- REWARDS ---------- */
.rewards {
  background: var(--bg);
  padding-bottom: clamp(72px, 10vw, 120px);
  border-top: 1px solid var(--border);
}
.rewards__callout-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 24px;
}
.callout-box {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-inline-start: 3px solid var(--accent);
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout-box strong { color: var(--text); }
.rewards__table-cols {
  display: flex;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: flex-start;
}
.rewards__table-cols .rewards__table-wrap {
  flex: 1;
  min-width: 0;
  max-width: none;
  margin: 0;
}
@media (max-width: 640px) { .rewards__table-cols { flex-direction: column; } }

.rewards__table-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  overflow-x: auto;
}
.rewards__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
}
.rewards__table th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 24px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border-mid);
}
.rewards__table td {
  padding: 13px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-soft);
  transition: background .15s;
}
.rewards__table tr:hover td {
  background: var(--bg-elevated);
  color: var(--text);
}
.rewards__table tr.gift-row td {
  background: rgba(232, 184, 109, 0.06);
  color: var(--gold);
  font-weight: 600;
  border-bottom-color: rgba(232, 184, 109, 0.12);
}
.rewards__table tr.gift-row:hover td {
  background: rgba(232, 184, 109, 0.1);
}
.gift-badge {
  display: inline-block;
  margin-inline-start: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(232, 184, 109, 0.25);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ---------- GIFT TIERS ---------- */
.gifts {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding-bottom: clamp(72px, 10vw, 120px);
}
.gifts__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gift-tier {
  padding: 28px 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.gift-tier:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.gift-tier--featured {
  background: linear-gradient(135deg, #1e1508 0%, #251c0a 100%);
  border-color: rgba(232, 184, 109, 0.25);
}
.gift-tier--featured:hover {
  border-color: rgba(232, 184, 109, 0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(232,184,109,0.15);
}
.gift-tier__badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.gift-tier--featured .gift-tier__badge { color: var(--gold); }
.gift-tier__value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-soft);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.gift-tier--featured .gift-tier__value { color: var(--gold); }
.gift-tier__items {
  display: grid;
  gap: 10px;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.gift-tier--featured .gift-tier__items { border-top-color: rgba(232, 184, 109, 0.15); }
.gift-tier__items li {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-muted);
  padding-inline-start: 18px;
  position: relative;
}
.gift-tier__items li::before {
  content: "→";
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-size: 12px;
}
.gift-tier--featured .gift-tier__items li { color: rgba(232,184,109,0.7); }
.gift-tier--featured .gift-tier__items li::before { color: var(--gold); }
.gift-tier__items li a {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  transition: color .2s;
}
.gift-tier__items li a:hover { color: var(--accent); }
.gift-tier--featured .gift-tier__items li a:hover { color: var(--gold); }
@media (max-width: 1000px) { .gifts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gifts__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg);
  padding-bottom: clamp(72px, 10vw, 120px);
  border-top: 1px solid var(--border);
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color .2s;
  color: var(--text-soft);
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { color: var(--text); }
.faq__item summary:hover { color: var(--text); }
.faq__item p {
  margin: 0 0 20px;
  padding-inline-end: 40px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 68ch;
}

/* ---------- SUBMIT ---------- */
.submit {
  background: linear-gradient(135deg, #160a07 0%, #0a0908 100%);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.submit::before {
  content: "";
  position: absolute;
  bottom: -150px;
  inset-inline-start: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
}
.submit::after {
  content: "";
  position: absolute;
  top: -80px;
  inset-inline-end: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,184,109,0.08) 0%, transparent 65%);
}
.submit__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.submit__kicker { color: var(--accent); background: var(--accent-soft); }
.submit__title {
  font-family: var(--font);
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--text);
}
.submit__title-accent {
  color: var(--accent);
}
.submit__text {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 52ch;
}
.submit__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.submit .btn--ghost {
  color: var(--text-soft);
  border-color: var(--border-mid);
}
.submit .btn--ghost:hover {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border-strong);
}
.submit__info-box {
  background: rgba(244,239,230,0.06);
  border: 1px solid rgba(244,239,230,0.12);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 auto 28px;
  max-width: 560px;
  text-align: start;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.submit__info-box strong { color: var(--text-soft); }
.submit__info-box p { margin: 0 0 10px; }
.submit__info-box p:last-child { margin: 0; }
.submit__info-box ul { margin: 8px 0 10px; padding-inline-start: 20px; display: flex; flex-direction: column; gap: 6px; }
.submit__fineprint {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 58ch;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-card);
  padding: clamp(40px, 5vw, 56px) var(--gutter) 28px;
  border-top: 1px solid var(--border);
}
.footer__simple {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.footer__simple a { font-size: 13px; color: var(--text-soft); transition: color .2s; }
.footer__simple a:hover { color: var(--accent); }
.footer__brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer__brand:hover { color: var(--accent) !important; }
.footer__bottom {
  max-width: var(--max);
  margin: 16px auto 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- TRANSPARENCY META IMAGE ---------- */
.who__meta-img-wrap {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 0 var(--gutter);
}
.who__meta-img-label {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.who__meta-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

/* ---------- TABLE OF CONTENTS ---------- */
.toc {
  padding: 32px var(--gutter) 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.toc__inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 22px 28px 20px;
}
.toc__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.toc__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px 0;
}
.toc__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.toc__link:hover { color: var(--gold); }
.toc__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  min-width: 22px;
  flex-shrink: 0;
}
@media (max-width: 860px) { .toc__links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .toc__links { grid-template-columns: 1fr; } .toc { padding-top: 20px; } }

/* ---------- GIFT PRIZE IMAGE ---------- */
.gifts__prize-img {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.gifts__prize-img img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.gifts__prize-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ---------- TERMS ---------- */
.terms {
  padding: 80px var(--gutter) 48px;
  border-top: 1px solid var(--border);
}
.terms__inner {
  max-width: 780px;
  margin: 0 auto;
}
.terms__title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  margin: 8px 0 28px;
  color: var(--text);
}
.terms__details {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.terms__summary {
  display: block;
  padding: 16px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg-elevated);
  user-select: none;
  transition: color .2s, background .2s;
  list-style: none;
}
.terms__summary::-webkit-details-marker { display: none; }
.terms__summary:hover { color: var(--text); background: var(--bg-accent); }
.terms__details[open] .terms__summary { color: var(--gold); }
.terms__body {
  padding: 28px 28px 32px;
  background: var(--bg-card);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
}
.terms__body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.terms__body h3:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.terms__body p { margin: 0 0 10px; }
.terms__body a { color: var(--gold); text-decoration: underline; }
.terms__body strong { color: var(--text); }

/* ---------- LTR LIST STYLES (faq / guide / terms) ---------- */
.faq__item ul, .faq__item ol,
.terms__body ul, .terms__body ol {
  padding-inline-start: 22px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq__item ul li { list-style: disc; }
.faq__item ol li { list-style: decimal; }
.faq__item ul li,
.faq__item ol li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  padding-inline-start: 0;
}
.faq__item ul li::before,
.faq__item ol li::before { display: none; }
.terms__body ul li { list-style: disc; color: var(--text-muted); font-size: 14.5px; }
.terms__body ol li { list-style: decimal; color: var(--text-muted); font-size: 14.5px; }

/* ---------- ABOUT STAT CARDS ---------- */
.about__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; position: relative; z-index: 1; }
.about__paragraph { font-size: 16px; line-height: 1.75; color: rgba(245,240,232,0.72); margin: 0 0 14px; }
.about__stat-card { background: rgba(245,240,232,0.05); border: 1px solid var(--border-mid); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 12px; }
.about__stat-num { display: block; font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; color: var(--gold); line-height: 1.1; }
.about__stat-label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 840px) { .about__inner { grid-template-columns: 1fr; } }

/* ---------- PRODUCT CARD (single product layout) ---------- */
.products__grid {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.products__grid .product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
}
.product-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.product-card__img-wrap img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}
.product-card__name {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  color: var(--text);
}
.product-card__tagline {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}
.product-card__desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 18px;
}
.product-card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-card__meta li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(245,240,232,0.07);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}
.product-card__meta li::before { display: none; }
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.product-card__link:hover { border-color: var(--accent); }
@media (max-width: 700px) {
  .products__grid .product-card { grid-template-columns: 1fr; gap: 24px; }
  .product-card__img-wrap { max-width: 200px; margin: 0 auto; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
