:root {
  color-scheme: dark;
  --bg: #08080d;
  --bg-deep: #050609;
  --ink: #fff7e8;
  --soft: #e3ddcf;
  --muted: #b6bdcc;
  --surface: rgba(255, 247, 232, 0.07);
  --surface-strong: rgba(255, 247, 232, 0.12);
  --line: rgba(255, 247, 232, 0.16);
  --gold: #ffc35a;
  --cyan: #6deaff;
  --coral: #ff796f;
  --violet: #9b7cf6;
  --green: #b9f783;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #0a090c 0%, var(--bg-deep) 52%, #100908 100%);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  position: relative;
  z-index: 4;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img,
.app-icon {
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-weight: 750;
}

nav a {
  padding: 8px 0;
  text-decoration: none;
}

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

.nav-cta {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #15100a;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 26%, rgba(109, 234, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 16% 12%, rgba(255, 121, 111, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 247, 232, 0.04) 0%, rgba(255, 247, 232, 0) 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  border-top: 1px solid rgba(255, 247, 232, 0.04);
  border-bottom: 1px solid rgba(255, 247, 232, 0.06);
}

.hero-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0 clamp(48px, 7vw, 92px);
}

.app-icon {
  width: 76px;
  height: 76px;
}

.eyebrow {
  margin: 18px 0 10px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(4.1rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 6vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.25rem;
}

.lede {
  max-width: min(640px, 100%);
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  font-weight: 650;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--gold);
  color: #15100a;
}

.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 750;
}

.hero-points span {
  padding-left: 12px;
  border-left: 3px solid var(--cyan);
}

.hero-points span:nth-child(2) {
  border-color: var(--coral);
}

.hero-points span:nth-child(3) {
  border-color: var(--green);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

#features {
  padding-top: 42px;
}

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

.section-heading .eyebrow,
.pass-copy .eyebrow,
.legal .eyebrow {
  margin-top: 0;
}

.section-heading > p:not(.eyebrow),
.pass-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 600;
}

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

.feature-grid article,
.legal,
.phone-grid figure {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.feature-grid article {
  min-height: 184px;
  padding: 24px;
  border-top: 4px solid var(--cyan);
  border-radius: 8px;
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(6) {
  border-top-color: var(--gold);
}

.feature-grid article:nth-child(3),
.feature-grid article:nth-child(5) {
  border-top-color: var(--coral);
}

.feature-grid article:nth-child(4) {
  border-top-color: var(--violet);
}

.feature-grid p,
.legal p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.pass-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(32px, 7vw, 76px);
  align-items: center;
}

.pass-copy {
  max-width: 720px;
}

.pass-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  color: var(--soft);
  font-weight: 700;
  list-style: none;
}

.pass-list li {
  position: relative;
  padding-left: 18px;
}

.pass-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.pass-list li:nth-child(2)::before {
  background: var(--violet);
}

.pass-list li:nth-child(3)::before {
  background: var(--gold);
}

.pass-shot {
  justify-self: center;
  width: min(100%, 280px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 247, 232, 0.05);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.pass-shot img,
.phone-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 184px));
  justify-content: center;
  gap: 14px;
}

.phone-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.phone-grid img {
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  object-position: top;
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-weight: 850;
}

.legal {
  width: min(840px, calc(100% - 32px));
  margin: 72px auto;
  padding: clamp(24px, 6vw, 56px);
  border-radius: 8px;
  overflow: hidden;
}

.legal h1 {
  font-size: clamp(2.75rem, 9vw, 5.8rem);
  line-height: 0.95;
}

.legal h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.legal a {
  color: var(--gold);
  font-weight: 850;
}

.site-footer {
  padding: 36px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-weight: 850;
}

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

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

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

  .pass-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header,
  .site-footer,
  .hero-copy,
  .section,
  .legal {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }

  .site-header {
    padding-bottom: 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    font-size: 0.92rem;
  }

  nav a {
    min-width: 0;
    padding: 8px 2px;
    text-align: center;
  }

  .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 36px 0 48px;
  }

  .app-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 5.4rem);
  }

  h2 {
    max-width: min(100%, 21.5rem);
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .lede {
    max-width: min(100%, 21rem);
    font-size: 1.14rem;
  }

  .actions {
    width: 100%;
    max-width: min(100%, 21rem);
  }

  .button {
    width: 100%;
  }

  .section-heading,
  .pass-copy {
    max-width: min(100%, 21.5rem);
  }

  .hero-points {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

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

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

  .legal {
    margin: 44px 16px;
    padding: 24px;
  }

  .legal h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
    line-height: 1;
  }
}

@media (max-width: 340px) {
  .phone-grid {
    grid-template-columns: 1fr;
  }
}
