:root {
  --bg: #050507;
  --surface: #0d1118;
  --surface-2: #141925;
  --surface-3: #1a2030;
  --text: #f7f8fb;
  --muted: #a9b0c0;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #ffd741;
  --gold-soft: rgba(255, 215, 65, 0.14);
  --cyan: #41d6df;
  --pink: #ff3cac;
  --green: #54daa7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% -8%, rgba(255, 215, 65, 0.11), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(65, 214, 223, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold);
  color: #050507;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 215, 65, 0.5);
  border-radius: 13px;
  box-shadow: 0 0 24px rgba(255, 215, 65, 0.18);
}

.brand-mark::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 215, 65, 0.65);
  content: "";
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-tag {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: #c6cad4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #08090c;
  box-shadow: 0 14px 40px rgba(255, 215, 65, 0.2);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
  content: "";
}

.hero::before {
  top: 10%;
  right: -8%;
  width: 360px;
  height: 360px;
  background: rgba(255, 215, 65, 0.07);
}

.hero::after {
  bottom: 5%;
  left: -12%;
  width: 320px;
  height: 320px;
  background: rgba(65, 214, 223, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(52px, 8vw, 104px);
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero-highlight {
  color: var(--gold);
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c3c8d3;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #c7ccd7;
  font-size: 0.78rem;
  font-weight: 750;
}

.proof-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(84, 218, 167, 0.45);
  content: "";
}

.phone-wrap {
  position: relative;
  width: min(100%, 390px);
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
  background: linear-gradient(145deg, #232a37, #090c12 65%);
  box-shadow: var(--shadow);
}

.phone-wrap::before {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 2;
  width: 88px;
  height: 22px;
  border-radius: 999px;
  background: #020204;
  content: "";
  transform: translateX(-50%);
}

.phone-wrap img {
  width: 100%;
  height: auto;
  border-radius: 33px;
  background: #0a0d13;
}

.phone-label {
  position: absolute;
  right: -18px;
  bottom: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 215, 65, 0.35);
  border-radius: 999px;
  background: rgba(10, 11, 14, 0.92);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(145deg, #20251e, #090b0d 65%);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 21px;
  background: #090a0c;
  object-fit: cover;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 10px 7px;
}

.video-caption strong {
  font-size: 0.94rem;
}

.video-caption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 82px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-muted {
  background: rgba(14, 18, 26, 0.46);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step,
.fact-card,
.answer-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.step {
  min-height: 240px;
  padding: 24px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.step h3,
.fact-card h3,
.answer-card h3 {
  margin: 22px 0 8px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.step p,
.fact-card p,
.answer-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fact-card,
.answer-card {
  padding: 28px;
}

.fact-card h3,
.answer-card h3 {
  margin-top: 0;
}

.fact-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding-left: 28px;
  color: #c7ccd7;
}

.fact-list li::before {
  position: absolute;
  top: 0.6em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.positioning {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(255, 215, 65, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 215, 65, 0.1), transparent 50%),
    var(--surface);
}

.positioning .eyebrow {
  margin-bottom: 10px;
}

.positioning h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.positioning-copy p {
  margin: 0 0 16px;
  color: #c5cad4;
}

.positioning-copy p:last-child {
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.answer-card h3 {
  font-size: 1.05rem;
}

.download-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(255, 215, 65, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 215, 65, 0.17), transparent 36%),
    linear-gradient(145deg, #161714, #0b0e14);
  box-shadow: var(--shadow);
}

.download-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.download-panel p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #c2c7d2;
}

.store-links {
  display: grid;
  gap: 12px;
}

.store-link {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
  text-decoration: none;
}

.store-link:hover {
  border-color: rgba(255, 215, 65, 0.45);
  background: var(--gold-soft);
}

.store-link span:last-child {
  color: var(--gold);
  font-size: 1.15rem;
}

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

.feature-link {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
}

.feature-link:hover {
  border-color: rgba(255, 215, 65, 0.38);
  background: rgba(255, 215, 65, 0.06);
}

.feature-link small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-link strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.site-footer {
  padding: 38px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

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

@media (max-width: 960px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .positioning,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .proof-row {
    justify-content: center;
  }

  .phone-wrap {
    width: min(100%, 340px);
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-panel {
    text-align: center;
  }

  .store-links {
    width: min(100%, 480px);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-tag {
    display: none;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.67rem;
    letter-spacing: 0.07em;
  }

  .site-nav a:nth-child(3) {
    display: none;
  }

  .hero {
    padding: 60px 0 58px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .section {
    padding: 62px 0;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }

  .phone-label {
    right: 8px;
  }
}

@media (max-width: 520px) {
  .brand-copy {
    display: none;
  }

  .site-nav {
    margin-left: auto;
  }

  .site-nav a {
    font-size: 0.64rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .step {
    min-height: 0;
  }

  .positioning,
  .download-panel {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
