:root {
  --accent: #7C3AED;
  --accent2: #EC4899;
  --accent-soft: #F1EBFF;
  --grad: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --ink: #120E1B;
  --ink-soft: #5B5670;
  --dark: #0B0812;
  --dark-soft: #170F26;
  --bg: #ffffff;
  --bg-soft: #FAF9FD;
  --border: #ECE9F5;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -12px rgba(28, 12, 61, 0.18);
  --shadow-sm: 0 8px 24px -8px rgba(28, 12, 61, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo, .btn, .step-num, .pill {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: #E9D5FF; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(124, 58, 237, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -6px rgba(124, 58, 237, 0.6); }
.btn-white { background: #fff; color: var(--accent); box-shadow: 0 10px 24px -6px rgba(0,0,0,0.25); }
.btn-white:hover { transform: translateY(-2px); }
.btn-large { padding: 17px 34px; font-size: 1.05rem; }
.btn-small { padding: 10px 20px; font-size: 0.88rem; }
.btn-glow { box-shadow: 0 0 0 0 rgba(124,58,237,0.6), 0 10px 30px -6px rgba(124, 58, 237, 0.6); animation: pulse 2.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236,72,153,0.45), 0 10px 30px -6px rgba(124,58,237,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(236,72,153,0), 0 10px 30px -6px rgba(124,58,237,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(236,72,153,0), 0 10px 30px -6px rgba(124,58,237,0.5); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 30px; width: auto; }
.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex: 1;
}
.site-nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse 120% 100% at 50% -10%, #1D1233 0%, var(--dark) 55%, var(--dark) 100%);
  padding: 76px 0 0;
  overflow: hidden;
  color: #fff;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 { width: 480px; height: 480px; background: #7C3AED; top: -120px; left: -80px; }
.hero-glow-2 { width: 420px; height: 420px; background: #EC4899; top: 40px; right: -100px; opacity: 0.4; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 90px;
}
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { color: #E9D5FF; }
.hero h1 {
  font-size: 3.1rem;
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.25rem;
  color: #C9C3DC;
  margin: 0 0 32px;
  max-width: 48ch;
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin-bottom: 20px;
  gap: 10px;
}
.search-icon { font-size: 1rem; opacity: 0.5; }
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.98rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  padding: 10px 0;
  min-width: 0;
}
.search-bar input::placeholder { color: #A8A3B8; }
.search-bar .btn { padding: 12px 24px; font-size: 0.92rem; flex-shrink: 0; }

/* Pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pills.center { justify-content: center; margin-bottom: 28px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #EDEAF7;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}
.pill:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.pill-ghost {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* Hero floating visual */
.hero-visual {
  position: relative;
  z-index: 1;
  height: 460px;
}
.float-card {
  position: absolute;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.55);
  border: 3px solid rgba(255,255,255,0.08);
}
.float-card img { width: 100%; height: 100%; object-fit: cover; }
.card-1 { width: 260px; height: 320px; top: 40px; left: 90px; transform: rotate(-4deg); z-index: 3; animation: float1 7s ease-in-out infinite; }
.card-2 { width: 190px; height: 190px; top: 0; right: 30px; transform: rotate(6deg); z-index: 2; animation: float2 6s ease-in-out infinite; }
.card-3 { width: 170px; height: 170px; bottom: 30px; left: 0; transform: rotate(5deg); z-index: 2; animation: float2 8s ease-in-out infinite; }
.card-4 { width: 210px; height: 260px; bottom: -10px; right: 60px; transform: rotate(-3deg); z-index: 1; animation: float1 9s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-12px); } }
@keyframes float2 { 0%,100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(6deg) translateY(10px); } }

.badge-chip {
  position: absolute;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 4;
}
.badge-chip-1 { top: 210px; right: 0; }
.badge-chip-2 { bottom: 100px; left: 40px; }
.badge-chip { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.badge-chip:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -6px rgba(0,0,0,0.4); }
.float-card { transition: filter 0.15s ease; }
.float-card:hover { filter: brightness(1.1); }

/* Trust bar (floating glass card) */
.trust-bar {
  position: relative;
  z-index: 3;
  transform: translateY(50%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 40px;
}
.trust-stat { text-align: center; flex: 1; min-width: 140px; transition: transform 0.15s ease; }
.trust-stat:hover { transform: translateY(-2px); }
.trust-stat strong { display: block; font-size: 1.6rem; font-weight: 800; font-family: 'Sora', sans-serif; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-stat span { display: block; font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }

/* Sections */
.section { padding: 150px 0 100px; position: relative; }
.features { padding-top: 170px; }
.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.2rem;
  margin: 0 auto 52px;
  max-width: 52ch;
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  align-items: stretch;
}
.bento-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.bento-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.bento-card:hover .bento-card-img { transform: scale(1.05); }
.bento-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  color: #fff;
  border: none;
}
.bento-large-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bento-large-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,8,18,0) 0%, rgba(11,8,18,0) 40%, rgba(11,8,18,0.75) 75%, rgba(11,8,18,0.92) 100%);
  z-index: 1;
}
.bento-large .bento-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  justify-content: flex-end;
}
.bento-large p { color: #C9C3DC; }
.bento-large h3 { font-size: 1.5rem; }
.bento-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 3;
}
.bento-card h3 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 700; }
.bento-card p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; flex: 1; }

/* Trust & legal safety */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.safety-cta-wrap { text-align: center; }

/* Showcase */
.showcase { background: var(--bg-soft); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.showcase-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tile-large { grid-column: span 2; grid-row: span 2; }
.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.showcase-tile:hover img { transform: scale(1.08); }
.tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(11,8,18,0.85));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.tile-label em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.showcase-tile:hover .tile-label em { opacity: 1; transform: translateX(0); }

/* Pricing band */
.pricing-band {
  background: radial-gradient(ellipse 120% 140% at 50% 0%, #2A1B4D 0%, var(--dark) 60%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 110px 0;
}
.pricing-inner { position: relative; z-index: 2; }
.pricing-inner h2 { font-size: 2.2rem; margin: 0 0 14px; font-weight: 800; }
.pricing-inner p { max-width: 50ch; margin: 0 auto 28px; color: #C9C3DC; font-size: 1.15rem; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 22px; left: 16%; right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; display: block; transition: transform 0.15s ease; }
.step:hover { transform: translateY(-3px); }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px -6px rgba(124,58,237,0.5);
}
.step h3 { margin: 0 0 8px; font-weight: 700; font-size: 1.2rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: 1.08rem; }

/* Testimonials */
.testimonials { background: var(--bg-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-link { display: block; }
.testimonial-grid blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.testimonial-link:hover blockquote { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.quote-mark {
  position: absolute;
  top: 12px; right: 22px;
  font-size: 3rem;
  font-family: 'Sora', serif;
  color: var(--accent-soft);
  line-height: 1;
}
.stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.testimonial-grid p { margin: 0 0 20px; font-size: 1.12rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--h) 80% 65%), hsl(calc(var(--h) + 40) 80% 60%));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author cite { color: var(--ink-soft); font-size: 0.85rem; font-style: normal; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 22px;
  margin-bottom: 12px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.faq-icon::before { width: 14px; height: 2px; top: 8px; left: 2px; }
.faq-icon::after { width: 2px; height: 14px; top: 2px; left: 8px; }
details[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-list p { color: var(--ink-soft); margin: 0 0 18px; font-size: 1.05rem; }

/* Final CTA */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse 120% 140% at 50% 100%, #2A1B4D 0%, var(--dark) 60%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0;
}
.final-cta h2 { font-size: 2.3rem; margin: 0 0 12px; font-weight: 800; position: relative; z-index: 2; }
.final-cta p { color: #C9C3DC; margin: 0 0 32px; position: relative; z-index: 2; font-size: 1.15rem; }
.final-cta .btn { position: relative; z-index: 2; }

/* Footer */
.site-footer { background: var(--dark); color: #8E8A9E; padding: 36px 0; }
.footer-disclosure { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.disclosure-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #C9C3DC;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.disclosure { font-size: 0.82rem; max-width: 800px; margin: 0; line-height: 1.6; }
.disclosure strong { color: #C9C3DC; }
.footer-meta { font-size: 0.82rem; margin: 0; }
.footer-meta a { color: #fff; text-decoration: underline; }

/* Spin & Win */
.wheel-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 8, 18, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.wheel-overlay.open { opacity: 1; }
.wheel-overlay[hidden] { display: none; }

.wheel-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 44px 36px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  transform: scale(0.94);
  transition: transform 0.2s ease;
}
.wheel-overlay.open .wheel-modal { transform: scale(1); }

.wheel-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: 1rem;
  cursor: pointer;
}
.wheel-close:hover { background: var(--border); }

.wheel-pre h3, .wheel-result h3 {
  font-size: 1.8rem;
  margin: 0 0 24px;
  font-weight: 800;
}
.wheel-outer {
  position: relative;
  width: min(360px, 78vw);
  height: min(360px, 78vw);
  margin: 0 auto 28px;
}
.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 26px;
  height: 34px;
  transform: translateX(-50%);
  z-index: 4;
  background: linear-gradient(180deg, #FDE68A 0%, #F59E0B 100%);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.35));
  transform-origin: 50% 10%;
}
.wheel-pointer::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  background: #F59E0B;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.wheel-pointer.ticking { animation: tick 0.1s linear infinite; }
@keyframes tick {
  0% { transform: translateX(-50%) rotate(-9deg); }
  50% { transform: translateX(-50%) rotate(9deg); }
  100% { transform: translateX(-50%) rotate(-9deg); }
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 0 0 3px #ddd6fe, 0 0 0 5px var(--border), 0 18px 40px -10px rgba(28,12,61,0.45);
  background: conic-gradient(
    from 0deg,
    #7C3AED 0deg 60deg,
    #EC4899 60deg 120deg,
    #FBBF24 120deg 180deg,
    #A78BFA 180deg 240deg,
    #F472B6 240deg 300deg,
    #6D28D9 300deg 360deg
  );
  transition: transform 4.5s cubic-bezier(0.17, 0.67, 0.12, 1);
  position: relative;
}
.wheel-labels { position: absolute; inset: 0; }
.wheel-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wheel-label .wheel-icon {
  margin-top: 18px;
  font-size: 1.3rem;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3));
}
.wheel-label .wheel-text {
  margin-top: 3px;
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  font-family: 'Sora', sans-serif;
  white-space: nowrap;
}
.wheel-label-win .wheel-text { color: #4A2E00; font-size: 1rem; }

.wheel-pegs { position: absolute; inset: 0; z-index: 1; }
.wheel-peg-wrap { position: absolute; inset: 0; }
.wheel-peg {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(0,0,0,0.2);
}

.wheel-glare {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(ellipse 80% 45% at 35% 18%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
  z-index: 2;
}

.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px var(--border), 0 4px 10px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.wheel-hub img { width: 34px; height: 34px; }

.wheel-fine { font-size: 0.82rem; color: var(--ink-soft); margin: 16px 0 0; }

.wheel-result { padding: 8px 0; }
.wheel-result-emoji { font-size: 3.2rem; margin-bottom: 10px; }
.wheel-result p { color: var(--ink-soft); margin: 0 0 14px; font-size: 1.05rem; }

.promo-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin: 0 auto 24px;
  max-width: 320px;
}
.promo-code-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.promo-copy-btn {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.promo-copy-btn:hover { transform: translateY(-1px); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 130px; }
  .hero-visual { order: -1; height: 340px; }
  .trust-bar { transform: translateY(30%); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-large { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2.1rem; }
  .search-bar { flex-wrap: wrap; padding: 14px; border-radius: var(--radius-sm); }
  .search-bar input { width: 100%; order: 1; }
  .search-bar .btn { width: 100%; order: 2; }
  .search-icon { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .safety-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .tile-large { grid-column: span 1; }
  .trust-bar { flex-direction: column; text-align: center; }
  .float-card { display: none; }
  .card-1 { display: block; position: static; width: 100%; height: 220px; margin: 0 auto; transform: none; animation: none; }
  .hero-visual { height: auto; }
  .badge-chip { display: none; }
}
