:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --panel: #0e0e0f;
  --panel-2: #131315;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-mute: #71717a;
  --accent: #ffffff;
  --radius: 18px;
  --radius-lg: 28px;
  --grid-color: rgba(255,255,255,0.045);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); font-family: "Geist", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Subtle dotted/cross star field across the whole page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 88% 32%, rgba(255,255,255,0.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 22% 78%, rgba(255,255,255,0.45) 50%, transparent 100%),
    radial-gradient(1px 1px at 72% 88%, rgba(255,255,255,0.35) 50%, transparent 100%),
    radial-gradient(1px 1px at 48% 52%, rgba(255,255,255,0.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 92% 62%, rgba(255,255,255,0.35) 50%, transparent 100%);
  background-size: 100% 100%;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.mono { font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace; }

/* METALLIC TEXT — used on all major headings + display numbers */
.metal {
  background: linear-gradient(180deg, #ffffff 0%, #ededed 30%, #a8a8ad 65%, #5a5a60 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Page shell */
.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .shell { padding: 0 18px; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px auto 0;
  max-width: 1180px;
  padding: 0 14px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 20px;
  border: 1px solid var(--line);
  background: rgba(14,14,15,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; letter-spacing: -0.01em; font-size: 15px;
}
.logo-mark { width: 22px; height: 22px; display:inline-flex; align-items:center; justify-content:center; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--text-dim); transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.btn-signin { font-size: 14px; color: var(--text-dim); padding: 8px 14px; border-radius: 999px; }
.btn-signin:hover { color: var(--text); }
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #0a0a0a; padding: 9px 16px;
  font-size: 14px; font-weight: 500; border-radius: 999px;
  transition: transform .15s ease, background .15s ease;
}
.btn-pill:hover { background: #e8e8e8; }
.btn-pill .arrow { transition: transform .2s ease; }
.btn-pill:hover .arrow { transform: translateX(2px); }

.menu-btn { display: none; }
@media (max-width: 880px) {
  .nav-links, .btn-signin { display: none; }
  .menu-btn {
    display: inline-flex; width: 38px; height: 38px;
    align-items: center; justify-content: center;
    border-radius: 999px; border: 1px solid var(--line);
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 70px 0 30px;
  overflow: hidden;
}

/* Grid + spotlight background for hero */
.hero::before {
  content: "";
  position: absolute;
  inset: -40px 0 0 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(255,255,255,0.07), transparent 60%);
  z-index: 0;
}

/* Tiny twinkling stars layer */
.starfield {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.starfield .tw {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(255,255,255,0.8);
  animation: tw 3s ease-in-out infinite;
}
@keyframes tw { 0%,100% { opacity: 0.25; } 50% { opacity: 1; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 10px; }
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.badge .dot {
  width: 20px; height: 20px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, #4a4a4f);
  display:inline-flex;align-items:center;justify-content:center;
  font-size: 9px; color: #000; font-weight: 700;
}

h1.display {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.hero-sub {
  max-width: 440px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: background .15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* Hero right (stars) */
.hero-art {
  position: relative;
  height: 460px;
}
@media (max-width: 880px) {
  .hero-art { height: 280px; margin-top: 10px; }
}
.star {
  position: absolute;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.35));
  animation: floaty 8s ease-in-out infinite;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.star.s1 { top: 8%; left: 32%; width: 320px; animation-delay: -1s; }
.star.s2 { top: -2%;  right: 2%;  width: 140px;  animation-delay: -3s; }
.star.s3 { bottom: 22%; right: 18%; width: 90px; animation-delay: -5s; }
@media (max-width: 880px) {
  .star.s1 { width: 200px; top: 6%; left: 28%; }
  .star.s2 { width: 90px; }
  .star.s3 { width: 64px; }
}
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

/* ============ LOGO CLOUD ============ */
.logos {
  margin-top: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.logos-track {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  color: var(--text-mute);
}
.logos-track .logo-item {
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0.55;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity .2s ease;
}
.logos-track .logo-item:hover { opacity: 1; }
@media (max-width: 880px) {
  .logos-track { gap: 28px; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .logos-track .logo-item { font-size: 15px; }
}

/* ============ SECTION HEADER ============ */
.section { padding: 90px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 60px 0; } }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.kicker .pip { width: 6px; height: 6px; border-radius: 999px; background: #d4d4d8; }
h2.title {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 760px;
}
.section-sub {
  margin-top: 18px;
  color: var(--text-dim);
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
}

/* ============ FEATURES ============ */
.feat-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
}
.feat-grid.row2 { grid-template-columns: 1fr 1.5fr; margin-top: 16px; }
@media (max-width: 880px) {
  .feat-grid, .feat-grid.row2 { grid-template-columns: 1fr; }
}
.card {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #131315 0%, #0c0c0d 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.card-pad { padding: 26px; }

/* Reviews card */
.reviews-card { min-height: 280px; padding: 28px; }
.reviews-row { display: flex; gap: 12px; margin-bottom: 12px; transform: translateX(-12px); }
.review-chip {
  flex: 1; min-width: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #1a1a1d, #0e0e10);
  border: 1px solid var(--line);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.review-chip .rh { display:flex; align-items:center; justify-content:space-between; }
.review-chip .lbl { font-size: 11px; color: var(--text-mute); }
.review-chip .stars { color: #fff; letter-spacing: 2px; font-size: 12px; }

/* Chart card */
.chart-card { padding: 26px; min-height: 280px; position: relative; }
.chart-meta {
  position: absolute; top: 22px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.chart-stat .num { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.chart-stat .sub { font-size: 11px; color: var(--text-mute); margin-top: 2px; }
.chart-up { background: rgba(255,255,255,0.08); border: 1px solid var(--line-2); padding: 4px 8px; border-radius: 999px; font-size: 11px; }
.chart-svg { width: 100%; height: 100%; }

/* Google card */
.google-card { min-height: 260px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.connect-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: #1a1a1d; border: 1px solid var(--line-2);
  font-size: 12px; color: var(--text); align-self: flex-start;
}
.connect-pill .cursor { width: 14px; height: 14px; }
.google-logo {
  font-family: "Geist", sans-serif;
  font-size: 56px; font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 18px;
}
.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }
.google-card .sub { color: var(--text-mute); font-size: 12px; margin-top: 2px; }

/* Keyword card */
.keyword-card { min-height: 260px; padding: 26px; position: relative; }
.kw-stack { position: relative; height: 200px; margin-top: 20px; }
.kw-chip {
  position: absolute;
  background: linear-gradient(180deg, #1a1a1d, #0d0d0f);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-width: 220px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  font-size: 13px;
}
.kw-chip .kw { color: var(--text); }
.kw-chip .vol { color: var(--text-mute); font-size: 11px; }
.kw-chip.k1 { top: 0; left: 0; transform: rotate(-4deg); }
.kw-chip.k2 { top: 60px; left: 40px; transform: rotate(2deg); }
.kw-chip.k3 { top: 120px; left: 20px; transform: rotate(-2deg); }

/* ============ STATS (Our Achievements) — full-bleed metallic 3D feel ============ */
.stats-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, #000 0%, transparent 70%);
}
.stats-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .stats-wrap { grid-template-columns: 1fr; } }
.stats-copy { padding-right: 20px; padding-top: 20px; }
.stats-art {
  position: relative;
  min-height: 460px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* 3D tilted floating chunky cards */
.float-stat {
  position: absolute;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(255,255,255,0.14), transparent 60%),
    linear-gradient(160deg, #2a2a2f 0%, #131315 55%, #0a0a0c 100%);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 22px 26px 20px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 200px;
}
.float-stat .big {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #ededed 35%, #8a8a90 80%, #4a4a50 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.float-stat .lbl {
  font-size: 11px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 6px;
}
.float-stat.fs1 { top: 10px; right: 20px; transform: rotate(8deg); z-index: 3; }
.float-stat.fs2 { top: 180px; left: 0; transform: rotate(-6deg); z-index: 2; }
.float-stat.fs3 { bottom: 10px; right: 80px; transform: rotate(4deg); z-index: 3; }

/* Mini circular kw bubbles with sparkle inside */
.kw-bubble {
  position: absolute; width: 54px; height: 54px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25), transparent 50%),
    linear-gradient(160deg, #2a2a2f, #0e0e10);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 4;
}

/* ============ PRICING ============ */
.price-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, #131315, #0b0b0c);
  border: 1px solid var(--line);
  padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
/* Grid bg overlay for basic + premium */
.price-card.with-grid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.price-card > * { position: relative; z-index: 1; }
.price-card:hover { transform: translateY(-4px); border-color: var(--line-2); }

/* Pro / featured — white with subtle gradient, slightly larger */
.price-card.featured {
  background:
    radial-gradient(120% 100% at 50% 0%, #ffffff 0%, #efefef 55%, #d9d9dd 100%);
  border-color: rgba(255,255,255,0.4);
  color: #0a0a0a;
  min-height: 540px;
  padding: 36px 32px;
  box-shadow: 0 30px 60px rgba(255,255,255,0.08), 0 0 0 1px rgba(255,255,255,0.18);
  transform: scale(1.02);
}
.price-card.featured .price-tier { color: #2a2a2a; }
.price-card.featured .price-desc { color: #4a4a4a; }
.price-card.featured .price-features li { color: #2a2a2a; }
.price-card.featured .price-features svg circle { fill: rgba(0,0,0,0.08); }
.price-card.featured .price-features svg path { stroke: #0a0a0a; }
.price-card.featured .price-num { color: #0a0a0a; }
.price-card.featured .price-num .per { color: #5a5a5a; }
.price-card.featured .pop {
  background: rgba(0,0,0,0.08); color: #0a0a0a;
}
.price-card.featured .btn-price {
  background: #0a0a0a; color: #fff; border-color: #0a0a0a;
}
.price-card.featured .btn-price:hover { background: #1a1a1d; }

.price-tier { font-size: 13px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.price-tier .pop {
  font-size: 10px; padding: 3px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.1); color: #fff;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.price-num {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 72px; line-height: 1; letter-spacing: -0.04em;
}
.price-card:not(.featured) .price-num {
  background: linear-gradient(180deg, #ffffff 0%, #ededed 30%, #a8a8ad 75%, #5a5a60 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-num .per {
  font-family: "Geist"; font-weight: 400;
  font-size: 14px; color: var(--text-mute); margin-left: 4px;
  -webkit-text-fill-color: var(--text-mute);
}
.price-desc { color: var(--text-dim); font-size: 13px; line-height: 1.5; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-dim); }
.price-features svg { flex-shrink: 0; }
.btn-price {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  font-size: 14px; font-weight: 500;
  transition: background .15s ease;
}
.btn-price:hover { background: rgba(255,255,255,0.12); }

/* ============ TESTIMONIALS ============ */
.testi-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #131315, #0b0b0c);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 240px;
}
.testi-quote { font-size: 15px; line-height: 1.55; color: var(--text); flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, #444, #1a1a1d);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: #fff;
  border: 1px solid var(--line-2);
}
.testi-author .name { font-size: 14px; font-weight: 500; }
.testi-author .role { font-size: 12px; color: var(--text-mute); }
.testi-stars { color: #fff; letter-spacing: 2px; font-size: 13px; }

/* ============ FAQ — rounded rectangles that turn white when open ============ */
.faq-wrap {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 880px) { .faq-wrap { grid-template-columns: 1fr; } }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 18px;
  background: linear-gradient(180deg, #131315, #0e0e10);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open {
  background: linear-gradient(180deg, #f6f6f6, #e9e9ec);
  color: #0a0a0a;
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  transition: color .15s ease;
}
.faq-q .ic {
  width: 26px; height: 26px; border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .15s ease, border-color .15s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .ic {
  transform: rotate(45deg);
  background: #0a0a0a; color: #fff; border-color: #0a0a0a;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  color: #3a3a3a;
  font-size: 14px;
  line-height: 1.55;
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner { padding: 0 22px 22px; }

/* ============ FOOTER ============ */
.foot {
  margin-top: 80px;
  padding: 0;
  position: relative;
  border-radius: 32px 32px 0 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #0f0f10 0%, #070708 100%);
  border: 1px solid var(--line);
  border-bottom: none;
  overflow: hidden;
}
.foot::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 80%);
}
.foot .shell { padding-top: 56px; padding-bottom: 0; }

.foot-top {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
}
@media (max-width: 880px) { .foot-top { grid-template-columns: 1fr; gap: 40px; } }

.foot-brand .foot-tag {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: 22px;
}
.foot-cta-btn { align-self: flex-start; }

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 720px) { .foot-cols { grid-template-columns: 1fr 1fr; } }

.foot-col h4 {
  font-size: 12px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px; font-weight: 500;
}
.foot-col a {
  display: block; font-size: 14px; color: var(--text-dim);
  padding: 5px 0;
  transition: color .15s ease;
}
.foot-col a:hover { color: #fff; }

.foot-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--text-mute);
  flex-wrap: wrap; gap: 12px;
}

/* Huge brand wordmark at the bottom — metallic split */
.brand-huge {
  font-family: "Geist", sans-serif;
  font-weight: 800;
  font-size: clamp(90px, 22vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-align: center;
  padding: 30px 0 0;
  user-select: none;
  position: relative;
  overflow: hidden;
  margin: 0 -28px;
}
.brand-huge .metal-light,
.brand-huge .metal-dark {
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand-huge .metal-light {
  background-image: linear-gradient(180deg, #ffffff 0%, #d5d5d8 50%, #8a8a90 100%);
}
.brand-huge .metal-dark {
  font-style: italic;
  background-image: linear-gradient(180deg, #5a5a60 0%, #2a2a2d 60%, #0c0c0e 100%);
}
