:root {
  color-scheme: dark;
  --bg: #070b14;
  --panel: #111827;
  --panel-2: #182235;
  --text: #f8fafc;
  --muted: #aab5c8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f5c518;
  --accent-2: #22c55e;
  --blue: #38bdf8;
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(245, 197, 24, 0.16), transparent 28rem),
    linear-gradient(180deg, #09111f 0%, var(--bg) 38%, #080a10 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(7, 11, 20, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #f97316);
  box-shadow: 0 10px 28px rgba(245, 197, 24, 0.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 9px 11px;
  background: #0b0f19;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
}

.brand-name {
  white-space: nowrap;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(245, 197, 24, 0.28);
}

.hero-logo-mark::before {
  inset: 13px 16px;
}

.nav {
  gap: 26px;
}

.nav a,
.text-link {
  color: var(--muted);
  text-decoration: none;
}

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

.header-download,
.download-btn,
.text-link {
  cursor: pointer;
}

.header-download {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #0b0f19;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.hero-text,
.section-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  min-width: min(100%, 260px);
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #0a0d14;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(245, 197, 24, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.download-btn:hover,
.header-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(245, 197, 24, 0.24);
}

.download-icon {
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.download-icon::before,
.download-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.download-icon::before {
  top: -13px;
  width: 2px;
  height: 20px;
}

.download-icon::after {
  top: 1px;
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 100%, 0 24%, 100% 24%);
}

.locale-pill {
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.phone {
  position: absolute;
  width: min(66vw, 320px);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.phone-main {
  right: 8%;
  top: 2%;
  z-index: 2;
}

.phone-back {
  left: 0;
  top: 18%;
  opacity: 0.72;
  transform: rotate(-8deg) scale(0.9);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.stats-band div {
  min-height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.stats-band span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
blockquote,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
}

.feature-card p,
blockquote p,
details p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-dot {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.dot-green {
  background: var(--accent-2);
}

.dot-blue {
  background: var(--blue);
}

.dot-amber {
  background: var(--accent);
}

.screen-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: clamp(14px, 2.4vw, 28px);
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 9vw, 112px);
  overflow-x: auto;
}

.screen-strip img {
  width: 100%;
  min-width: 180px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
  background: #0b1220;
}

.review-list {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  padding: 24px;
}

cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.text-link {
  border: 0;
  background: transparent;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone-main {
    right: 12%;
  }

  .phone-back {
    left: 8%;
  }

  .feature-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
  }

  .brand-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-download {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .download-btn {
    width: 100%;
  }

  .locale-pill {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .phone {
    width: 230px;
    border-radius: 24px;
  }

  .phone-main {
    right: 4%;
  }

  .phone-back {
    left: 0;
    top: 24%;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
