/* ============================================================
   SCRAMBLY SIGN UP — signup.scrambly.club
   Aesthetic: Bold reward-era, dark-gold-green energy
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

:root {
  --gold: #F5C842;
  --gold-dark: #C49A10;
  --gold-light: #FDE98A;
  --green: #1AE06B;
  --green-dark: #0FB855;
  --bg-deep: #0B0D0F;
  --bg-card: #131619;
  --bg-card-2: #1A1D22;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(245,200,66,0.25);
  --text-primary: #F0F0F0;
  --text-secondary: #9AA0A8;
  --text-muted: #5C6370;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-gold: 0 0 40px rgba(245,200,66,0.15);
  --shadow-green: 0 0 30px rgba(26,224,107,0.2);
  --max-width: 1120px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
details summary { cursor: pointer; }
details summary h3 { display: inline; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,13,15,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.logo:hover { color: var(--gold); }
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-dot { color: var(--gold); }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 400; transition: color 0.2s; }
nav a:hover { color: var(--text-primary); }
.btn-nav {
  background: var(--gold);
  color: var(--bg-deep) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-nav:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,200,66,0.35);
}
.btn-primary svg { flex-shrink: 0; }
.btn-large { font-size: 1.2rem; padding: 20px 44px; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; left: -150px;
  animation: drift1 12s ease-in-out infinite alternate;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--green);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  animation: drift2 9s ease-in-out infinite alternate;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: -100px; left: 40%;
  animation: drift1 14s ease-in-out infinite alternate-reverse;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(30px, -30px); } }
@keyframes drift2 { from { transform: translateY(-50%) translate(0,0); } to { transform: translateY(-50%) translate(-20px, 20px); } }

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text-primary); font-weight: 500; }
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}
.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  text-align: center;
  padding: 0 28px;
}
.trust-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== BONUS STRIP ===== */
.bonus-strip {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bonus-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.bonus-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  text-align: center;
  min-width: 240px;
}
.bonus-exclusive {
  border-color: var(--border-gold);
  background: rgba(245,200,66,0.05);
  box-shadow: var(--shadow-gold);
}
.bonus-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.bonus-exclusive .bonus-amount { color: var(--gold); }
.bonus-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 6px 0 16px;
}
.bonus-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.tag-plain { background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border); }
.tag-gold { background: var(--gold); color: var(--bg-deep); }

.bonus-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bonus-arrow svg { color: var(--gold); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.section-cta { text-align: center; }

/* ===== EARNINGS ===== */
.earnings {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.earnings-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  text-align: center;
}
.earnings-featured {
  border-color: var(--border-gold);
  background: rgba(245,200,66,0.04);
  box-shadow: var(--shadow-gold);
}
.earnings-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.earnings-icon { font-size: 2.2rem; margin-bottom: 16px; }
.earnings-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.earnings-range {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.earnings-featured .earnings-range { color: var(--gold); }
.earnings-range span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.earnings-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.earnings-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card p {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.65;
  font-style: italic;
}
.review-card cite {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-gold); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  list-style: none;
  -webkit-appearance: none;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-body {
  padding: 0 24px 20px;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-body p a { color: var(--gold); }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(245,200,66,0.06) 0%, rgba(26,224,107,0.04) 100%);
  border-top: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(120px);
  opacity: 0.07;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.final-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.final-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 0 32px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  gap: 32px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-legal strong { color: var(--text-secondary); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner nav a:not(.btn-nav) { display: none; }
  .trust-row { padding: 16px 12px; }
  .trust-item { padding: 0 14px; }
  .trust-divider { height: 24px; }
  .bonus-arrow svg { transform: rotate(90deg); }
  .bonus-inner { flex-direction: column; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .btn-large { font-size: 1rem; padding: 16px 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .bonus-card { padding: 28px 24px; min-width: auto; width: 100%; }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
