/* ===================================================
   ASTERIAS — Landing Page Styles
   =================================================== */

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

:root {
  --bg:          #07070f;
  --surface:     #0e0e1a;
  --surface-2:   #14141f;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);

  --purple:      #7c3aed;
  --purple-light:#a855f7;
  --purple-glow: rgba(124,58,237,0.35);
  --cyan:        #06b6d4;
  --cyan-light:  #22d3ee;
  --cyan-glow:   rgba(6,182,212,0.25);
  --orange:      #f97316;
  --green:       #22c55e;

  --text:        #f1f5f9;
  --text-2:      #94a3b8;
  --text-3:      #475569;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================
   NAV
   =================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(7,7,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: rgba(7,7,15,0.97);
  border-bottom: 1px solid var(--border);
  gap: 4px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }

/* ===================================================
   HERO
   =================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -180px;
  left: -120px;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  top: 100px;
  right: -100px;
  opacity: 0.25;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  background: rgba(124,58,237,0.12);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--cyan-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

/* Download buttons */
.btn-download {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid var(--border-2);
  min-width: 220px;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.btn-download-ios {
  background: var(--text);
  color: #0a0a0f;
  border-color: transparent;
}

.btn-download-ios:hover {
  box-shadow: 0 12px 32px rgba(255,255,255,0.12);
}

.btn-download-android {
  background: var(--surface-2);
  color: var(--text);
}

.btn-download-android:hover {
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 12px 32px rgba(124,58,237,0.2);
}

.btn-dl-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-dl-icon svg {
  width: 28px;
  height: 28px;
}

.btn-download-ios .btn-dl-icon { color: #0a0a0f; }
.btn-download-android .btn-dl-icon { color: var(--purple-light); }

.btn-dl-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.btn-dl-platform {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.btn-dl-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.btn-dl-meta {
  font-size: 0.68rem;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.5;
  margin-top: 2px;
}

.btn-dl-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* Install hints */
.install-hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 16px;
}

.install-hints svg {
  width: 13px;
  height: 13px;
  display: inline;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
}

.install-hints span {
  display: flex;
  align-items: center;
}

.install-hints a {
  color: var(--purple-light);
  text-decoration: none;
  transition: opacity 0.2s;
}

.install-hints a:hover { opacity: 0.75; }

.install-hints em {
  font-style: normal;
  color: var(--text-2);
}

.hint-sep {
  color: var(--text-3);
  opacity: 0.4;
}

.install-hints-center {
  justify-content: center;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ===================================================
   PHONE MOCKUPS
   =================================================== */

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 520px;
}

.phone {
  position: absolute;
  width: 220px;
  border-radius: 32px;
  background: var(--surface-2);
  border: 1.5px solid var(--border-2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

.phone-front {
  width: 230px;
  height: 480px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(180deg, #0e0e1a 0%, #111128 100%);
}

.phone-back {
  width: 210px;
  height: 440px;
  left: calc(50% + 80px);
  bottom: 20px;
  z-index: 1;
  transform: rotate(6deg);
  opacity: 0.85;
}

.phone-screen {
  padding: 16px 14px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-header {
  padding: 10px 0 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.mock-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mock-conv {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mock-avatar-purple { background: rgba(124,58,237,0.35); color: var(--purple-light); }
.mock-avatar-cyan   { background: rgba(6,182,212,0.25);  color: var(--cyan-light); }
.mock-avatar-green  { background: rgba(34,197,94,0.2);   color: var(--green); }

.mock-conv-info { flex: 1; min-width: 0; }

.mock-conv-name {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-verified {
  color: var(--green);
  font-size: 0.65rem;
}

.mock-conv-preview {
  font-size: 0.67rem;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-conv-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.mock-conv-time {
  font-size: 0.62rem;
  color: var(--text-3);
}

.mock-unread {
  background: var(--purple);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-chat-bubble {
  font-size: 0.68rem;
  padding: 7px 10px;
  border-radius: 12px;
  max-width: 80%;
  line-height: 1.4;
  margin-top: 2px;
}

.mock-chat-in {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.mock-chat-out {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  margin-left: auto;
}

.mock-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.mock-input-field {
  flex: 1;
  height: 28px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.mock-send-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}

/* Back phone mock */
.phone-screen-back { gap: 10px; }

.mock-bet-card {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 10px;
  padding: 10px;
}

.mock-bet-card-sm { background: rgba(6,182,212,0.08); border-color: rgba(6,182,212,0.2); }

.mock-bet-event {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.mock-bet-odds {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.mock-team { font-size: 0.65rem; font-weight: 700; color: var(--cyan-light); }
.mock-vs   { font-size: 0.6rem; color: var(--text-3); }

.mock-bet-amount {
  font-size: 0.62rem;
  color: var(--text-2);
  margin-bottom: 6px;
}

.mock-bet-status {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-active  { background: rgba(34,197,94,0.2);  color: var(--green); }
.status-pending { background: rgba(249,115,22,0.2); color: var(--orange); }

.mock-wallet-strip {
  margin-top: auto;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.mock-xmr-amount {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--orange);
}

.mock-xmr-label {
  font-size: 0.6rem;
  color: var(--text-3);
}

/* ===================================================
   SECTION COMMON
   =================================================== */

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ===================================================
   FEATURES
   =================================================== */

.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}

.features > .container > .section-title,
.features > .container > .section-label,
.features > .container > .section-sub {
  margin-bottom: 16px;
}

.features > .container > .section-sub {
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-icon-purple { background: rgba(124,58,237,0.2); color: var(--purple-light); }
.feature-icon-cyan   { background: rgba(6,182,212,0.15); color: var(--cyan-light); }
.feature-icon-orange { background: rgba(249,115,22,0.15); color: var(--orange); }
.feature-icon-green  { background: rgba(34,197,94,0.15);  color: var(--green); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-card p strong { color: var(--text); font-weight: 600; }
.feature-card p em     { color: var(--purple-light); font-style: normal; }

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  padding: 3px 9px;
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* ===================================================
   HOW IT WORKS
   =================================================== */

.how-it-works {
  padding: 100px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  margin-top: 28px;
  opacity: 0.4;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 280px;
}

/* ===================================================
   SECURITY TABLE
   =================================================== */

.security {
  padding: 100px 0;
  background: var(--surface);
}

.section-sub { margin-bottom: 48px; }

.security-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.security-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.security-table thead {
  background: var(--surface-2);
}

.security-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.security-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}

.security-table tbody tr:last-child td { border-bottom: none; }

.security-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

.security-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--cyan-light);
}

.status-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.chip-safe { background: rgba(34,197,94,0.15);   color: var(--green);   border: 1px solid rgba(34,197,94,0.3); }
.chip-warn { background: rgba(249,115,22,0.12);  color: var(--orange);  border: 1px solid rgba(249,115,22,0.3); }
.chip-note { background: rgba(6,182,212,0.12);   color: var(--cyan);    border: 1px solid rgba(6,182,212,0.25); }

.security-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
}

.security-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--purple-light);
  margin-top: 2px;
}

.security-note p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

.security-note p strong { color: var(--text); }

/* ===================================================
   CTA
   =================================================== */

.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  bottom: -150px;
  left: 30%;
  opacity: 0.15;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-shield {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 48px rgba(249,115,22,0.25);
}

.cta-shield svg {
  width: 36px;
  height: 36px;
  color: var(--orange);
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}


/* ===================================================
   FOOTER
   =================================================== */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}

.footer-copy { color: var(--text-3); }

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-badge { display: none; }

  .hero-phones {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-wide { grid-column: span 2; }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    align-self: center;
    margin: 0;
    background: linear-gradient(180deg, var(--purple), var(--cyan));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide { grid-column: span 1; }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title { font-size: 2.2rem; }

  .security-table th:nth-child(3),
  .security-table td:nth-child(3) {
    display: none;
  }
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
