/* =========================================================
   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: rtl;
  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-mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.02em;
  border-radius: 4px;
}
.nav__brand-text { font-size: 15px; letter-spacing: -0.01em; color: var(--text-soft); }
.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(48px, 8vw, 88px);
  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-bottom: clamp(48px, 6vw, 72px);
}

/* ---------- 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;
  transform: scaleX(-1);
  transition: transform .2s;
  flex-shrink: 0;
}
.btn:hover .btn__arrow { transform: scaleX(-1) translateX(3px); }

/* ---------- HERO META ---------- */
.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 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 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; } }

/* ---------- 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-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: right;
  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__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__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer__col {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer__col a { color: var(--text-soft); transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.footer__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.footer__bottom {
  max-width: var(--max);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- 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;
  }
}
