:root {
  --bg: #0a0a0e;
  --text: #f2f2f5;
  --text-secondary: #a9a9b4;
  --text-muted: #9a9aa5;
  --text-muted-2: #75757f;
  --nav-link: #c7c7d1;
  --amber: #f5a623;
  --amber-hover: #ffb84d;
  --link-hover: #ffc266;
  --card-fill: rgba(255, 255, 255, 0.04);
  --tag-fill: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

::selection {
  background: var(--amber);
  color: var(--bg);
}

a {
  color: var(--amber);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: rgba(10, 10, 14, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--amber);
}

.nav-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}

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

.nav-links a {
  font-size: 14px;
  color: var(--nav-link);
  white-space: nowrap;
}

.pill-btn {
  border: 1px solid var(--amber);
  background: transparent;
  color: var(--amber);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}

.pill-btn:hover {
  background: rgba(245, 166, 35, 0.12);
}

/* Hero */
.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 6px 14px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.hero-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 0 32px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-filled {
  background: var(--amber);
  color: var(--bg);
  border: none;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-filled:hover {
  background: var(--amber-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.microcopy {
  font-size: 13px;
  color: var(--text-muted-2);
  margin: 0;
}

/* Phone mockup */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.28), transparent 70%);
  filter: blur(20px);
  top: 10%;
}

.phone-frame {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 372 / 806;
  border-radius: 44px;
  padding: 9px;
  background: linear-gradient(160deg, #3a3a42, #111114);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-frame--sm {
  width: min(280px, 72vw);
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-screen-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.phone-frame--sm .phone-screen-placeholder {
  border-radius: 32px;
}

.phone-screen-placeholder span {
  font-size: 13px;
  color: rgba(242, 242, 245, 0.28);
  line-height: 1.5;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: clamp(56px, 7vw, 88px);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin: 0;
  color: var(--amber);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

/* Feature rows */
.feature-row {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.feature-row .phone-col {
  display: flex;
  justify-content: center;
}

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}

.feature-row h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 14px 0 16px;
}

.feature-row p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 46ch;
  margin: 0 0 24px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--tag-fill);
  color: #d5d5da;
}

.feature-microcopy {
  font-size: 15px;
  color: var(--text-muted-2);
  margin: 0;
}

.insight-card {
  background: var(--card-fill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
}

.insight-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 10px;
}

.insight-quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: #d5d5da;
  margin: 0;
}

/* Closing CTA */
.closing-cta {
  position: relative;
  text-align: center;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  margin-top: 16px;
  overflow: hidden;
}

.closing-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 360px at 50% 0%, rgba(245, 166, 35, 0.16), transparent 70%);
}

.closing-cta-inner {
  position: relative;
}

.closing-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}

.closing-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 46ch;
  margin: 0 auto 32px;
}

.closing-cta .btn-row {
  justify-content: center;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px clamp(20px, 5vw, 72px);
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: var(--text-muted-2);
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}

/* Legal pages */
.legal-nav {
  justify-content: flex-start;
  gap: 24px;
}

.legal-nav .nav-brand {
  margin-right: auto;
}

.lang-toggle {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.lang-toggle button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.lang-toggle button.active {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245, 166, 35, 0.1);
}

.legal-main {
  max-width: 760px;
  padding-top: clamp(48px, 8vw, 72px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.legal-main h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted-2);
  margin: 0 0 40px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 10px;
}

.legal-section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.lang-block[hidden] {
  display: none;
}

.back-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--nav-link);
}

.back-link:hover {
  color: var(--amber);
}

/* Responsive */
@media (max-width: 800px) {
  .hero,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row .phone-col {
    order: -1;
  }

  .nav-links {
    display: none;
  }

  .stat-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 520px) {
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-filled,
  .btn-outline {
    text-align: center;
  }
}
