:root {
  color-scheme: dark;
  --bg: #060708;
  --bg-soft: #0d1013;
  --panel: #12161b;
  --panel-strong: #181d23;
  --text: #f7f2e8;
  --muted: #b8b4ab;
  --soft: #7d817f;
  --gold: #f2bd4b;
  --gold-strong: #ffd36b;
  --line: rgba(242, 189, 75, 0.2);
  --line-cool: rgba(255, 255, 255, 0.1);
  --green: #83d59c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 12%, rgba(242, 189, 75, 0.15), transparent 28rem),
    linear-gradient(180deg, #090909 0%, #0b0d10 48%, #060708 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 7, 8, 0.82);
  border-bottom: 1px solid var(--line-cool);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(242, 189, 75, 0.45);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(242, 189, 75, 0.2), rgba(255, 255, 255, 0.04));
}

.brand svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-strong);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(242, 189, 75, 0.44);
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: #11100c;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(242, 189, 75, 0.16);
}

.app-store-badge {
  min-height: 58px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 8px 22px 9px 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24px 50%, rgba(255, 255, 255, 0.22), transparent 13px),
    linear-gradient(180deg, #1f242b, #050607);
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  position: relative;
}

.app-store-badge::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #f8f8f8, #aeb6c2);
  color: #050607;
  font-size: 15px;
  font-weight: 950;
}

.app-store-badge.small {
  min-height: 46px;
  padding: 6px 16px 7px 45px;
}

.app-store-badge.small::before {
  left: 16px;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  font-size: 12px;
}

.badge-kicker {
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.78;
}

.badge-title {
  font-size: 23px;
  letter-spacing: 0;
}

.app-store-badge.small .badge-title {
  font-size: 17px;
}

.price-line {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--gold-strong);
  font-size: 18px;
  font-weight: 800;
}

.price-line strong {
  color: #ffffff;
  font-size: 1.28em;
}

.support-price {
  color: var(--muted);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-cool);
  box-shadow: none;
}

.hero,
.section,
.support-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 56px;
  padding: 72px 0 56px;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.accent {
  color: var(--gold-strong);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 650px;
  margin-top: 46px;
}

.proof-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.proof-item strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 13px;
}

.phone-stage {
  min-height: 690px;
  position: relative;
  overflow: hidden;
}

.phone {
  position: absolute;
  width: min(42vw, 360px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: #050607;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: auto;
}

.phone.primary {
  right: 18%;
  top: 8px;
  z-index: 3;
  transform: rotate(-5deg);
}

.phone.secondary {
  right: 0;
  top: 150px;
  z-index: 2;
  transform: rotate(7deg) scale(0.82);
  opacity: 0.9;
}

.phone.tertiary {
  left: 2%;
  top: 220px;
  z-index: 1;
  transform: rotate(-10deg) scale(0.68);
  opacity: 0.72;
}

.section {
  padding: 92px 0;
  border-top: 1px solid var(--line-cool);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section h2,
.support-band h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-lede {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.step,
.feature-card,
.support-card {
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.step {
  padding: 24px;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-strong);
  font-weight: 900;
}

.step h3,
.feature-card h3,
.support-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.step p,
.feature-card p,
.support-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.feature-card {
  overflow: hidden;
}

.feature-shot {
  aspect-ratio: 0.72;
  overflow: hidden;
  background: #07090b;
}

.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feature-card-body {
  padding: 20px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(242, 189, 75, 0.12), rgba(255, 255, 255, 0.035) 38%, rgba(131, 213, 156, 0.08));
}

.privacy-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.privacy-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.privacy-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.privacy-media .phone-card {
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: 26px;
  background: #060708;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.privacy-media .phone-card:nth-child(2) {
  margin-top: 62px;
}

.support-band {
  padding: 92px 0;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 36px;
  align-items: start;
}

.support-copy p {
  color: var(--muted);
  font-size: 18px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-card {
  min-height: 150px;
  padding: 22px;
}

.support-card span {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold-strong);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line-cool);
  color: var(--soft);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .privacy-panel,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .phone-stage {
    min-height: 580px;
  }

  .phone {
    width: min(58vw, 320px);
  }

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

@media (max-width: 620px) {
  .hero,
  .section,
  .support-band,
  .nav,
  .footer-inner {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .hero,
  .hero > *,
  .section,
  .support-band,
  .privacy-panel,
  .support-layout {
    min-width: 0;
  }

  p,
  h1,
  h2,
  h3,
  .proof-item span,
  .section-lede {
    overflow-wrap: anywhere;
  }

  .nav-links {
    gap: 16px;
    justify-content: flex-start;
  }

  .hero {
    display: block;
  }

  .hero > div:first-child,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .proof-row {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero > div:first-child {
    padding-right: 28px;
  }

  .app-store-badge.small,
  .app-store-badge {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero h1 .accent {
    display: block;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .app-store-badge {
    align-items: flex-start;
  }

  .hero-copy {
    font-size: 18px;
  }

  .price-line {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    font-size: 16px;
  }

  .proof-row,
  .steps,
  .feature-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 510px;
  }

  .phone.primary {
    right: 22%;
  }

  .phone.secondary {
    right: -10px;
    top: 132px;
  }

  .phone.tertiary {
    left: -8px;
    top: 210px;
  }

  .privacy-panel {
    padding: 22px;
  }

  .privacy-media {
    gap: 10px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
}
