/* ============================================================
   ForexDailySigs.com — main.css
   Brand: bg #0d1117 | surface #161b22 | gold #f5a623
          green #3fb950 | blue #58a6ff | text #e6edf3
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --bg:          #0d1117;
  --surface:     #161b22;
  --surface-2:   #1c2128;
  --surface-3:   #21262d;
  --border:      #30363d;
  --border-light:#3d444d;
  --text:        #e6edf3;
  --text-muted:  #8b949e;
  --text-subtle: #6e7681;
  --gold:        #f5a623;
  --gold-dim:    #b87d19;
  --gold-glow:   rgba(245,166,35,.18);
  --green:       #3fb950;
  --green-dim:   #2d8f3b;
  --green-glow:  rgba(63,185,80,.15);
  --red:         #f85149;
  --red-glow:    rgba(248,81,73,.15);
  --blue:        #58a6ff;
  --blue-glow:   rgba(88,166,255,.15);
  --nav-h:       64px;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.55);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.7);
  --transition:  .2s ease;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', monospace;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

img, svg { display: block; max-width: 100%; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--font); }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); }

.gold  { color: var(--gold); }
.green { color: var(--green); }
.red   { color: var(--red); }
.blue  { color: var(--blue); }
.muted { color: var(--text-muted); }
.subtle{ color: var(--text-subtle); }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.section { padding-block: clamp(56px, 8vw, 96px); }
.section-sm { padding-block: clamp(32px, 5vw, 56px); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .65rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-gold   { background: var(--gold-glow);  color: var(--gold);  border: 1px solid var(--gold-dim); }
.badge-green  { background: var(--green-glow); color: var(--green); border: 1px solid var(--green-dim); }
.badge-red    { background: var(--red-glow);   color: var(--red);   border: 1px solid var(--red); }
.badge-blue   { background: var(--blue-glow);  color: var(--blue);  border: 1px solid var(--blue); }
.badge-muted  { background: var(--surface-3);  color: var(--text-muted); border: 1px solid var(--border); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  background: var(--gold);
  color: #0d1117;
}
.btn-gold:hover {
  background: #ffc14a;
  color: #0d1117;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface-3);
  border-color: var(--border-light);
  color: var(--text);
}

.btn-green {
  background: var(--green);
  color: #0d1117;
}
.btn-green:hover {
  background: #5bce70;
  color: #0d1117;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
}

.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }

.btn-telegram { background: #2CA5E0; color: #fff; }
.btn-telegram:hover { background: #48b5ed; color: #fff; transform: translateY(-1px); }

.btn-twitter { background: #1DA1F2; color: #fff; }
.btn-twitter:hover { background: #38b0f7; color: #fff; transform: translateY(-1px); }

.btn-tiktok { background: #010101; color: #fff; border: 1px solid #333; }
.btn-tiktok:hover { background: #222; color: #fff; transform: translateY(-1px); }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover { border-color: var(--border-light); box-shadow: var(--shadow); }

.card-gold:hover { border-color: var(--gold-dim); box-shadow: 0 4px 24px var(--gold-glow); }
.card-green:hover { border-color: var(--green-dim); box-shadow: 0 4px 24px var(--green-glow); }
.card-blue:hover { border-color: var(--blue); box-shadow: 0 4px 24px var(--blue-glow); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }

.input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  padding: .7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.input::placeholder { color: var(--text-subtle); }
.input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Inline email form (hero) */
.email-form {
  display: flex;
  gap: .5rem;
  max-width: 480px;
}
.email-form .input {
  border-radius: var(--radius);
  flex: 1;
  min-width: 0;
}
.email-form .btn { flex-shrink: 0; }

.form-msg {
  font-size: .85rem;
  margin-top: .5rem;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  display: none;
}
.form-msg.success { display: block; background: var(--green-glow); color: var(--green); border: 1px solid var(--green-dim); }
.form-msg.error   { display: block; background: var(--red-glow);   color: var(--red);   border: 1px solid var(--red); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #0d1117;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .45rem .85rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface-2);
}

.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: .25rem;
  box-shadow: var(--shadow);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: .75rem 1rem;
  font-size: 1rem;
}
.nav-mobile .btn { margin-top: .5rem; width: 100%; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(56px, 10vw, 100px);
  padding-bottom: clamp(56px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(245,166,35,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(88,166,255,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}
.hero h1 { max-width: 680px; }
.hero h1 span { color: var(--gold); }
.hero-sub {
  max-width: 520px;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.hero-form-wrap { margin-top: 2rem; }
.hero-note {
  font-size: .8rem;
  color: var(--text-subtle);
  margin-top: .6rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.hero-stat-lbl {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Section Headers ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-header .overline {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-header p { margin-top: .75rem; font-size: 1.05rem; }

/* ── Feature Cards ───────────────────────────────────────────── */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.feature-icon-gold  { background: var(--gold-glow);  }
.feature-icon-green { background: var(--green-glow); }
.feature-icon-blue  { background: var(--blue-glow);  }
.feature-icon-red   { background: var(--red-glow);   }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p  { font-size: .9rem; line-height: 1.65; }

/* ── How It Works ────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent, var(--gold-dim));
}
.step { text-align: center; padding: 1rem; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--gold-dim);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: .4rem; font-size: 1.05rem; }
.step p { font-size: .88rem; }

/* ── Social CTA ──────────────────────────────────────────────── */
.social-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  min-width: 160px;
}
.social-cta-card:hover { border-color: var(--border-light); box-shadow: var(--shadow); transform: translateY(-2px); }
.social-cta-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.social-cta-card p { font-size: .8rem; margin-top: .35rem; }

/* ── Bottom CTA Strip ────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, var(--gold-glow), transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { position: relative; z-index: 1; }
.cta-strip p  { position: relative; z-index: 1; max-width: 480px; margin-inline: auto; margin-top: .75rem; }
.cta-strip .btn { margin-top: 1.5rem; position: relative; z-index: 1; }

/* ── Ticker Tape ─────────────────────────────────────────────── */
.ticker-wrap {
  margin-block: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

/* ── Signals Page ────────────────────────────────────────────── */
.page-header {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--border);
}
.page-header .overline {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.signal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.signal-card:hover { border-color: var(--border-light); box-shadow: var(--shadow); }

.signal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.signal-pair { font-size: 1.15rem; font-weight: 800; letter-spacing: .02em; }
.signal-updated { font-size: .72rem; color: var(--text-subtle); }

.signal-card-body { padding: 1.25rem 1.4rem; }
.signal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.signal-row:last-child { border-bottom: none; }
.signal-row-label { color: var(--text-muted); font-weight: 500; }
.signal-row-val   { font-weight: 700; font-family: var(--font-mono); }

.signal-card-footer {
  padding: .85rem 1.4rem;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-subtle);
  text-align: center;
}

.market-overview-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── About Page ──────────────────────────────────────────────── */
.about-section { max-width: 760px; margin-inline: auto; }
.about-section + .about-section { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.about-section h2 { margin-bottom: 1rem; }
.about-section p { margin-bottom: 1rem; }
.about-section p:last-child { margin-bottom: 0; }

.check-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-muted);
  font-size: .95rem;
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.disclaimer-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── TikTok Connect Page ─────────────────────────────────────── */
.connect-wrap {
  max-width: 520px;
  margin-inline: auto;
  padding-block: clamp(48px, 8vw, 96px);
}
.connect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.connect-card h2 { margin-bottom: .5rem; }
.connect-card > p { margin-bottom: 1.75rem; }
.tiktok-logo-wrap {
  width: 72px; height: 72px;
  background: #010101;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.connect-benefits { text-align: left; margin: 1.5rem 0; }
.connect-benefits li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-muted);
}
.connect-benefits li:last-child { border-bottom: none; }
.connect-benefits li span.icon { font-size: 1rem; flex-shrink: 0; }

.connect-form .input { text-align: center; }
.connect-form .btn { width: 100%; margin-top: 1rem; }

/* ── Callback Page ───────────────────────────────────────────── */
.callback-wrap {
  max-width: 480px;
  margin-inline: auto;
  padding-block: clamp(48px, 8vw, 96px);
  text-align: center;
}
.result-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
.result-icon-success {
  background: var(--green-glow);
  border: 2px solid var(--green);
  color: var(--green);
  animation: pop .4s cubic-bezier(.17,.67,.32,1.4) both;
}
.result-icon-error {
  background: var(--red-glow);
  border: 2px solid var(--red);
  color: var(--red);
}
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.callback-wrap h2 { margin-bottom: .75rem; }
.callback-wrap p  { margin-bottom: 1.5rem; }
.callback-wrap .btn { display: inline-flex; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 64px);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand p { font-size: .85rem; color: var(--text-muted); margin-top: .75rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: .85rem; }
.footer-col a {
  display: block;
  font-size: .88rem;
  color: var(--text-muted);
  padding: .25rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-social { display: flex; gap: .6rem; margin-top: .5rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--surface-3); border-color: var(--border-light); color: var(--text); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: var(--text-subtle); }
.footer-disclaimer {
  font-size: .72rem;
  color: var(--text-subtle);
  max-width: 680px;
  line-height: 1.6;
  margin-top: .75rem;
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Skeleton / Loading ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding-top: 48px; padding-bottom: 48px; }
  .email-form { flex-direction: column; }
  .email-form .btn { width: 100%; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
  .step:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .social-cta { flex-direction: column; align-items: stretch; }
  .social-cta-card { min-width: unset; }

  .connect-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
}
