/* ═══════════════════════════════════════════════════════════
   AurumSafe — styles.css
   Dark luxury aesthetic · Gold palette · Cormorant + DM Sans
═══════════════════════════════════════════════════════════ */

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

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-glow:   rgba(201,168,76,0.25);
  --green:       #3EC97A;
  --bg:          #080C18;
  --bg2:         #0C1020;
  --bg3:         #10152A;
  --surface:     #161D32;
  --surface2:    #1D2540;
  --surface3:    #232C4A;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.3);
  --text:        #EFF3FF;
  --text-muted:  #8494B8;
  --text-dim:    #4A567A;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }

a { text-decoration: none; }

ul[role="list"] { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 110px 0; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.18; }

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.gold { color: var(--gold); }
em.gold { font-style: italic; color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #080C18;
  box-shadow: 0 4px 20px rgba(201,168,76,0.28);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.btn-gold-sm {
  background: var(--gold);
  color: #080C18;
  padding: 9px 20px;
  font-size: 0.82rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-gold-sm:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,12,24,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(8,12,24,0.95);
  border-bottom-color: rgba(201,168,76,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* Mobile hamburger */
.nav-mobile-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
}
.nav-mobile-btn:hover { background: var(--surface); }
.nav-mobile-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 75% 45%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(94,108,200,0.05) 0%, transparent 60%);
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black, transparent);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.phone-frame {
  position: relative;
  width: 285px;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 38px;
  padding: 22px 18px 24px;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 1;
}
.phone-notch {
  width: 90px;
  height: 8px;
  background: var(--bg);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 18px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  padding: 16px 14px;
  overflow: hidden;
}

/* App Header */
.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.app-logo-sm {
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #080C18;
  flex-shrink: 0;
}
.app-greeting {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.app-greeting-sub {
  font-size: 0.62rem;
  color: var(--text-dim);
  line-height: 1;
}
.app-greeting-name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}
.app-bell {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Portfolio Card */
.app-portfolio-card {
  background: linear-gradient(135deg, #1D2540 0%, #141929 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px;
  padding: 14px 14px 12px;
  margin-bottom: 10px;
}
.app-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.app-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.app-badge {
  display: inline-block;
  background: rgba(62,201,122,0.12);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Ticker */
.app-ticker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Item Cards */
.app-items { display: flex; flex-direction: column; gap: 7px; }
.app-item-card {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border-radius: 10px;
  padding: 9px 10px;
  border: 1px solid var(--border);
}
.app-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.app-icon-gold  { background: rgba(201,168,76,0.15); }
.app-icon-amber { background: rgba(255,165,0,0.1); }
.app-item-info { flex: 1; min-width: 0; }
.app-item-name {
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-item-meta { font-size: 0.6rem; color: var(--text-muted); }
.app-item-val  { font-size: 0.7rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.stat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Showcase Sections ──────────────────────────────────── */
.showcase { background: var(--bg2); }
.showcase-flip { background: var(--bg3); }

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-flip .showcase-inner {
  direction: rtl; /* flip column order */
}
.showcase-flip .showcase-inner > * {
  direction: ltr;
}

.showcase-text h2 { margin-bottom: 18px; }
.showcase-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.showcase-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.showcase-bullets li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.bullet-check {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Rates Card ─────────────────────────────────────────── */
.rates-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.rates-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.rates-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(62,201,122,0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(62,201,122,0.2);
}
.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}
.rates-rows { padding: 8px 0; }
.rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.rate-row:last-child { border-bottom: none; }
.rate-row:hover { background: var(--surface2); }
.rate-karat { display: flex; flex-direction: column; gap: 2px; }
.karat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.karat-sub { font-size: 0.72rem; color: var(--text-dim); }
.rate-value-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rate-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}
.rate-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.rate-unit { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.rates-card-footer {
  padding: 10px 20px;
  background: var(--bg);
  font-size: 0.72rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
}

/* Converter */
.converter-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 12px;
}
.converter-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.converter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.converter-input-group {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}
.converter-select,
.converter-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
}
.converter-select { width: 72px; cursor: pointer; }
.converter-input  { flex: 1; }
.converter-select:focus,
.converter-input:focus { border-color: var(--border-gold); }
.converter-result { text-align: right; }
.converter-result-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.converter-result-sub { font-size: 0.72rem; color: var(--text-dim); }

/* ─── Sparkline Card ─────────────────────────────────────── */
.sparkline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.sparkline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sparkline-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.sparkline-currency-badge {
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
}
.sparkline-value-block { margin-bottom: 20px; }
.sparkline-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.sparkline-change {
  display: inline-block;
  background: rgba(62,201,122,0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(62,201,122,0.2);
}
.sparkline-chart {
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sparkline-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ─── Features Grid ──────────────────────────────────────── */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 18px;
}
.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.feature-card-highlight {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(201,168,76,0.04) 100%);
  border-color: rgba(201,168,76,0.15);
}
.feature-icon { font-size: 1.7rem; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }
.feature-new-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #080C18;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ─── Pricing ────────────────────────────────────────────── */
.pricing { background: var(--bg2); }

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.toggle-btn {
  padding: 9px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-btn.active {
  background: var(--gold);
  color: #080C18;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plan-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.plan-card.recommended {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1D2540 0%, #161D32 100%);
  box-shadow: 0 0 0 1px var(--gold), 0 20px 60px rgba(201,168,76,0.12);
  transform: translateY(-6px);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #080C18;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 24px; }
.plan-name {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.plan-price-block { display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px; }
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.plan-period { font-size: 0.85rem; color: var(--text-muted); }
.plan-tagline { font-size: 0.82rem; color: var(--text-dim); }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.plan-check {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ─── How It Works ───────────────────────────────────────── */
.how-it-works { background: var(--bg); }
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  max-width: 290px;
  flex: 1;
  min-width: 210px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 0;
  flex-shrink: 0;
}

/* ─── Categories ─────────────────────────────────────────── */
.categories { background: var(--bg3); }
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cat-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
  transition: all 0.2s;
}
.cat-pill:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.cat-pill-more {
  background: transparent;
  border-style: dashed;
  color: var(--text-dim);
}

/* ─── Download CTA ───────────────────────────────────────── */
.download {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-bg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.download-inner { position: relative; z-index: 1; }
.download-inner h2 { margin-bottom: 16px; }
.download-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.download-btns {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--bg);
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.store-btn:hover {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.store-btn-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1;
}
.store-btn-main {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.download-legal {
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 400px;
  margin: 0 auto;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-heart {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 18px;
  line-height: 1.5;
}
.footer-powered {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-powered strong {
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── Inner Pages (Privacy / Terms) ─────────────────────── */
.inner-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.inner-hero p { color: var(--text-muted); }
.inner-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.inner-content h2 {
  font-size: 1.15rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--gold);
  margin: 42px 0 12px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.inner-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.inner-content ul {
  color: var(--text-muted);
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.inner-content ul li { margin-bottom: 6px; }
.inner-content a { color: var(--gold); }
.last-updated { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 40px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .plan-card:last-child { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  /* Nav */
  .nav-mobile-btn { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8,12,24,0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  .nav-links .btn-gold-sm {
    margin: 8px 24px 4px;
    display: block;
    text-align: center;
    border-radius: 10px;
  }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-cta { justify-content: center; }
  .hero-note { text-align: center; }
  .phone-frame { width: 260px; }

  /* Stats */
  .stats-inner { gap: 0; }
  .stat-item { padding: 16px 28px; }
  .stat-divider { height: 1px; width: 100%; }
  .stats-inner { flex-direction: column; }

  /* Showcase */
  .showcase-inner { grid-template-columns: 1fr; gap: 48px; }
  .showcase-flip .showcase-inner { direction: ltr; }

  /* Steps */
  .steps { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .pricing-grid .plan-card:last-child { grid-column: auto; max-width: 100%; }
  .plan-card.recommended { transform: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero { padding: 70px 0 60px; }
  .stat-item { padding: 14px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .converter-row { flex-direction: column; align-items: flex-start; }
  .converter-result { align-self: flex-end; }
  .section { padding: 64px 0; }
}
