/* ================================================
   lihat.bio — Design System & Styles
   Architect: Erianna Safitri
   Version: 1.0.0
   ================================================ */

/* ── Design Tokens ─────────────────────────────── */
:root {
  /* Brand Colors */
  --obsidian:       #050507;
  --obsidian-2:     #09090e;
  --obsidian-3:     #0e0e18;
  --gold:           #D4AF37;
  --gold-light:     #E8C96A;
  --gold-dark:      #A88A1C;
  --gold-glow:      rgba(212, 175, 55, 0.18);
  --gold-glow-lg:   rgba(212, 175, 55, 0.35);
  --silver:         #C5CAD8;
  --silver-dim:     #6E7483;
  --white:          #F0F2F7;

  /* Glass System */
  --glass-bg:          rgba(255, 255, 255, 0.025);
  --glass-bg-hover:    rgba(255, 255, 255, 0.045);
  --glass-border:      rgba(255, 255, 255, 0.065);
  --glass-border-gold: rgba(212, 175, 55, 0.18);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Fluid Type Scale */
  --text-2xs:  clamp(0.65rem,  0.7vw,  0.75rem);
  --text-xs:   clamp(0.75rem,  0.85vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 1vw,    1rem);
  --text-base: clamp(1rem,     1.15vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1.5vw,  1.375rem);
  --text-xl:   clamp(1.375rem, 2vw,    1.875rem);
  --text-2xl:  clamp(1.875rem, 3.5vw,  2.75rem);
  --text-3xl:  clamp(2.5rem,   5vw,    4.25rem);
  --text-hero: clamp(3.25rem,  7.5vw,  7rem);

  /* Layout */
  --max-w:        1380px;
  --section-pad:  clamp(5rem, 10vw, 9rem);

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-gold:  0 0 40px rgba(212,175,55,0.25), 0 0 80px rgba(212,175,55,0.08);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-deep:  0 32px 80px rgba(0,0,0,0.8);
  --shadow-phone:
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 0 2px rgba(0,0,0,0.9),
    0 50px 100px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 0 80px rgba(212,175,55,0.06);

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Durations */
  --dur-fast: 180ms;
  --dur-base: 360ms;
  --dur-slow: 700ms;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: var(--obsidian);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Utility ───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.text-gold-gradient {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Ambient Background ─────────────────────────── */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 65vw; height: 65vw;
  top: -25%; left: -15%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.04) 0%, transparent 65%);
}

.orb-2 {
  width: 55vw; height: 55vw;
  bottom: 5%; right: -15%;
  background: radial-gradient(ellipse, rgba(80,60,180,0.05) 0%, transparent 65%);
}

.orb-3 {
  width: 30vw; height: 30vw;
  top: 40%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(212,175,55,0.025) 0%, transparent 70%);
}

/* ── Glass ─────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
}

.glass-gold {
  background: rgba(212,175,55,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-gold);
}

/* ── Buttons ───────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: #000;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  will-change: transform;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 35px rgba(212,175,55,0.55),
    0 0 0 4px rgba(212,175,55,0.12);
}

.btn-gold:hover::after { opacity: 1; }
.btn-gold:active { transform: translateY(-1px) scale(0.99); }
.btn-gold > * { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--silver-dim);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
}

.btn-outline:hover {
  color: var(--gold);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 0 24px rgba(212,175,55,0.1);
}

/* ── Navbar ─────────────────────────────────────── */
#navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding-block: 1.5rem;
  transition:
    padding var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

#navbar.scrolled {
  padding-block: 0.875rem;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.logo-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: var(--silver-dim);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur-base) var(--ease-out);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ── Hero ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 9rem 6rem;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.hero-content { max-width: 620px; }

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-full);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 2.2s infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  50%       { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(212,175,55,0); }
}

/* Hero Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.03em;
  background: linear-gradient(140deg, #ffffff 0%, #D4AF37 45%, #b0b8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

/* Hero Sub */
.hero-sub {
  font-size: var(--text-lg);
  color: var(--silver-dim);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2.75rem;
}

.hero-sub em {
  font-style: italic;
  color: var(--silver);
}

/* ── Claimer Form ───────────────────────────────── */
.claimer-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.claimer-group {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 260px;
  height: 56px;
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-full);
  overflow: hidden;
  transition:
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out);
}

.claimer-group:focus-within {
  border-color: rgba(212,175,55,0.55);
  background: rgba(212,175,55,0.04);
  box-shadow:
    0 0 0 3px rgba(212,175,55,0.12),
    0 0 35px rgba(212,175,55,0.08);
}

.claimer-prefix {
  padding-left: 1.5rem;
  padding-right: 0.15rem;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
}

.claimer-input {
  flex: 1;
  height: 100%;
  padding-inline: 0.25rem 1.5rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  caret-color: var(--gold);
  min-width: 0;
}

.claimer-input::placeholder {
  color: var(--silver-dim);
  opacity: 0.55;
}

.btn-claim {
  height: 56px;
  padding-inline: 1.75rem;
  flex-shrink: 0;
  font-size: var(--text-sm);
}

/* ── Social Proof ───────────────────────────────── */
.social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.proof-avatars { display: flex; }

.proof-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  margin-left: -9px;
  flex-shrink: 0;
}

.proof-avatar:first-child { margin-left: 0; }

.proof-text {
  font-size: var(--text-sm);
  color: var(--silver-dim);
}

.proof-text strong {
  color: var(--white);
  font-weight: 700;
}

/* ── Phone Mockup ───────────────────────────────── */
.phone-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  perspective-origin: center center;
  position: relative;
  flex-shrink: 0;
}

.phone-glow {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.13) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

#phone-float {
  position: relative;
  z-index: 1;
  will-change: transform;
}

.phone-tilt-container {
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-frame {
  width: 300px;
  height: 624px;
  background: linear-gradient(175deg, #1c1c2e 0%, #10101a 60%, #191928 100%);
  border-radius: 52px;
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow-phone);
  transform-style: preserve-3d;
}

.phone-vol-btns {
  position: absolute;
  left: -3.5px;
  top: 100px;
  width: 3.5px;
  height: 34px;
  background: #1a1a2c;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 46px 0 #1a1a2c, 0 88px 0 #1a1a2c;
}

.phone-power-btn {
  position: absolute;
  right: -3.5px;
  top: 148px;
  width: 3.5px;
  height: 68px;
  background: #1a1a2c;
  border-radius: 0 2px 2px 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--obsidian);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.phone-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px; height: 32px;
  background: #000;
  border-radius: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 11px;
}

.island-camera {
  width: 11px; height: 11px;
  background: #151515;
  border-radius: 50%;
  border: 2px solid #2a2a2a;
}

.phone-screen-scroll {
  position: absolute;
  inset: 0;
  padding: 58px 18px 20px;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #07071020 0%, var(--obsidian) 100%);
}

.phone-screen-scroll::-webkit-scrollbar { display: none; }

/* Profile: Avatar */
.profile-avatar-ring {
  width: 78px; height: 78px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  margin-bottom: 0.7rem;
  position: relative;
  flex-shrink: 0;
}

.profile-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c1a38, #2e1f4a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-initial {
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.profile-verified-badge {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 21px; height: 21px;
  background: var(--gold);
  border-radius: 50%;
  border: 2.5px solid var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-align: center;
}

.profile-handle {
  font-size: 0.68rem;
  color: var(--silver-dim);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
  margin-bottom: 0.4rem;
}

.profile-bio {
  font-size: 0.67rem;
  color: var(--silver-dim);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.profile-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.58rem;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1px;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.profile-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}

.profile-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border-radius: 11px;
  text-decoration: none;
  cursor: default;
}

.gold-link {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
}

.glass-link {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.065);
}

.link-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-portfolio { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.icon-yt        { background: linear-gradient(135deg, #FF0000, #CC0000); }
.icon-ig        { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45); }
.icon-cal       { background: linear-gradient(135deg, #00C9FF, #7DE7EB); }

.link-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}

.link-arrow {
  font-size: 0.68rem;
  color: var(--silver-dim);
  margin-left: auto;
  flex-shrink: 0;
}

.phone-brand-tag {
  margin-top: 1.5rem;
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.45;
  text-align: center;
}

/* ── Features Section ───────────────────────────── */
.section-features {
  padding-block: var(--section-pad);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-2xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--silver-dim);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 2.25rem 2rem;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212,175,55,0.2);
  box-shadow:
    0 28px 56px rgba(0,0,0,0.55),
    0 0 50px rgba(212,175,55,0.06);
}

.feature-card:hover::after { opacity: 1; }

.feat-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  transition: transform var(--dur-base) var(--ease-spring);
}

.feat-icon-wrap svg {
  width: 26px; height: 26px;
}

.feat-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  background: var(--gold);
  color: #000;
  font-size: 0.58rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.feat-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.feat-desc {
  font-size: var(--text-sm);
  color: var(--silver-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-xs);
  color: var(--silver-dim);
}

.feat-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(212,175,55,0.5);
}

/* ── CTA Banner ─────────────────────────────────── */
#cta-banner {
  padding-block: var(--section-pad);
  position: relative;
  z-index: 1;
}

.cta-card {
  border-radius: var(--r-xl);
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(2rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(80,60,180,0.07) 0%, transparent 100%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-block: 1rem 1.25rem;
  position: relative;
}

.cta-sub {
  font-size: var(--text-lg);
  color: var(--silver-dim);
  margin-bottom: 2.75rem;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.btn-cta-primary {
  padding: 1rem 2.5rem;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}

/* ── Footer ─────────────────────────────────────── */
#footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  color: var(--silver-dim);
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: var(--text-xs);
  color: var(--silver-dim);
}

.footer-copy strong { color: var(--silver); font-weight: 600; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-content { max-width: 680px; }
  .hero-sub { margin-inline: auto; }
  .claimer-wrapper { justify-content: center; }
  .social-proof { justify-content: center; }
  .phone-showcase { order: -1; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cta-card { border-radius: var(--r-lg); }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-nav ul { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }
  .phone-frame { width: 260px; height: 540px; border-radius: 44px; }
  .phone-island { width: 100px; height: 28px; }
}

@media (max-width: 420px) {
  .claimer-wrapper { flex-direction: column; }
  .claimer-group { width: 100%; min-width: unset; }
  .btn-claim { width: 100%; justify-content: center; }
}
