:root {
  --bg: #0b0a13;
  --bg-soft: #121026;
  --surface: rgba(32, 28, 62, 0.74);
  --surface-strong: rgba(45, 39, 82, 0.92);
  --border: rgba(187, 73, 255, 0.28);
  --text: #f8f7ff;
  --muted: #c7c3d7;
  --purple: #b94cff;
  --pink: #ef5ca8;
  --amber: #f4aa23;
  --amber-soft: #ffd274;
  --danger: #ff5f68;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 170, 35, 0.16), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(185, 76, 255, 0.20), transparent 30%),
    radial-gradient(circle at 50% 70%, rgba(239, 92, 168, 0.12), transparent 36%),
    linear-gradient(160deg, #090911 0%, #111026 48%, #090810 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
  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: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--content)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 8, 17, 0.76);
  backdrop-filter: blur(18px);
}
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px;
  color: #1a1110; background: linear-gradient(145deg, var(--amber-soft), var(--amber));
  box-shadow: 0 0 34px rgba(244, 170, 35, 0.30); font-size: 21px;
}
.brand-text { background: linear-gradient(90deg, #d96cff, #ff67a5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links, .footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.nav-link, .footer-link {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 9px 15px;
  border: 1px solid transparent; border-radius: 999px; color: var(--muted); text-decoration: none;
  font-weight: 700; font-size: 0.94rem; transition: 180ms ease;
}
.nav-link:hover, .nav-link[aria-current="page"], .footer-link:hover {
  color: var(--text); border-color: rgba(185, 76, 255, 0.40); background: rgba(185, 76, 255, 0.10);
}
.hero { padding: 88px 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr); align-items: center; gap: 58px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 8px 13px;
  border: 1px solid rgba(244, 170, 35, 0.28); border-radius: 999px; color: var(--amber-soft);
  background: rgba(244, 170, 35, 0.08); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 14px var(--amber); }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -0.035em; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3rem, 7vw, 6.4rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { margin-bottom: 12px; font-size: 1.32rem; }
.gradient-text { background: linear-gradient(100deg, #e371ff 0%, #ff6ea9 45%, #ffc75b 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { max-width: 650px; margin: 0 0 30px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 12px 21px;
  border: 1px solid transparent; border-radius: 16px; text-decoration: none; font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #211406; background: linear-gradient(145deg, var(--amber-soft), var(--amber)); box-shadow: 0 12px 34px rgba(244, 170, 35, 0.22); }
.button-secondary { color: var(--text); border-color: rgba(185, 76, 255, 0.36); background: rgba(185, 76, 255, 0.09); }
.screenshot-stage { position: relative; min-height: 660px; display: flex; align-items: center; justify-content: center; isolation: isolate; }
.screenshot-stage::before {
  content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 170, 35, 0.24), rgba(185, 76, 255, 0.12) 48%, transparent 72%);
  filter: blur(10px); z-index: -1;
}
.app-shot { width: 285px; border-radius: 42px; filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.54)); }
.app-shot:first-child { transform: rotate(-5deg) translate(18px, 12px); }
.app-shot:last-child { margin-left: -58px; transform: rotate(5deg) translate(-8px, -18px); }
.trust-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.trust-pill { padding: 9px 13px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 999px; color: #dedbea; background: rgba(255, 255, 255, 0.035); font-size: 0.9rem; font-weight: 700; }
.section { padding: 78px 0; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p, .card p, .legal-intro, .legal-section p, .legal-section li { color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card, .support-card, .legal-shell, .callout {
  border: 1px solid rgba(185, 76, 255, 0.20);
  background: linear-gradient(155deg, rgba(48, 41, 86, 0.72), rgba(20, 18, 39, 0.88));
  box-shadow: var(--shadow);
}
.card { min-height: 260px; padding: 28px; border-radius: var(--radius-md); }
.card-icon {
  width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 15px;
  color: #211406; background: linear-gradient(145deg, var(--amber-soft), var(--amber)); font-size: 23px;
  box-shadow: 0 12px 30px rgba(244, 170, 35, 0.18);
}
.split-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: stretch; }
.callout { padding: 34px; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.callout::after { content: ""; position: absolute; width: 220px; height: 220px; right: -70px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(239, 92, 168, 0.34), transparent 68%); }
.callout-list { margin: 26px 0 0; padding: 0; list-style: none; }
.callout-list li { position: relative; margin: 15px 0; padding-left: 31px; color: var(--muted); }
.callout-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--amber-soft); font-weight: 900; }
.support-card { position: relative; padding: 42px; border-radius: var(--radius-lg); overflow: hidden; }
.support-card::before { content: ""; position: absolute; inset: auto auto -130px -70px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(185, 76, 255, 0.28), transparent 70%); }
.support-card > * { position: relative; }
.support-email { display: inline-block; margin: 12px 0 24px; color: var(--amber-soft); font-size: clamp(1.15rem, 3vw, 1.7rem); font-weight: 850; text-decoration: none; overflow-wrap: anywhere; }
.site-footer { margin-top: 76px; padding: 26px 0 34px; border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(5, 5, 10, 0.44); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copy { color: #9893ab; font-size: 0.9rem; }
.legal-hero { padding: 80px 0 34px; }
.legal-hero h1 { max-width: 940px; margin-bottom: 16px; font-size: clamp(2.6rem, 7vw, 5.2rem); }
.last-updated { display: inline-block; margin-top: 10px; padding: 7px 12px; border-radius: 999px; color: var(--amber-soft); background: rgba(244, 170, 35, 0.08); border: 1px solid rgba(244, 170, 35, 0.22); font-size: 0.88rem; font-weight: 800; }
.legal-shell { padding: clamp(24px, 5vw, 54px); border-radius: var(--radius-lg); }
.legal-intro { margin-top: 0; font-size: 1.08rem; }
.legal-section { scroll-margin-top: 100px; padding: 29px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.legal-section:first-of-type { margin-top: 30px; }
.legal-section h2 { font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -0.02em; }
.legal-section ul, .legal-section ol { padding-left: 1.35rem; }
.legal-section li + li { margin-top: 10px; }
.notice { margin: 18px 0; padding: 20px 22px; border-left: 4px solid var(--amber); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #e8e3f0; background: rgba(244, 170, 35, 0.08); }
.legal-nav-bottom { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy-wrap { text-align: center; }
  .hero-copy { margin-left: auto; margin-right: auto; }
  .button-row, .trust-row { justify-content: center; }
  .screenshot-stage { min-height: 580px; }
  .cards, .split-section { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .container { width: min(calc(100% - 26px), var(--content)); }
  .navbar { min-height: auto; padding: 15px 0; align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; }
  .nav-link { flex: 1; min-width: 92px; }
  .hero { padding: 64px 0 42px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  .screenshot-stage { min-height: 465px; }
  .app-shot { width: min(52vw, 235px); border-radius: 30px; }
  .app-shot:last-child { margin-left: -45px; }
  .section { padding: 56px 0; }
  .card, .support-card, .callout { padding: 24px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
