:root {
  color-scheme: dark;
  --bg: #000;
  --text: #fff;
  --muted: #8f8b98;
  --line: #171717;
  --button: #f7f7f7;
  --button-text: #050505;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter Tight", "Instrument Sans", Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(16px, 4.7vw, 60px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line);
}

.logo-link img {
  display: block;
  width: 88px;
  height: 56px;
  object-fit: cover;
}

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--button);
  color: var(--button-text);
  font-size: 17px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.hero {
  max-width: 1032px;
  margin: 0 auto;
  padding: 88px 24px 0;
  text-align: center;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(35px, 5.15vw, 66px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 520px;
  margin: 26px auto 43px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.store-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 35px 0 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 45px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(20, 20, 28, 0.82);
}

.store-pill span {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.16);
}

.store-pill img {
  width: 28px;
  height: 28px;
}

.hero-image {
  display: block;
  width: min(100%, 1032px);
  aspect-ratio: 1020 / 1024;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto;
}

.method {
  max-width: 640px;
  margin: 74px auto 0;
  padding: 0 24px;
  text-align: center;
}

.text-block + .text-block {
  margin-top: 80px;
}

h2 {
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 900;
}

.text-block p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.46;
  font-weight: 600;
}

.text-block h2 + p {
  margin-top: 28px;
}

.phones {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 0;
  width: min(760px, calc(100% - 32px));
  min-height: 382px;
  margin: 72px auto 0;
}

.phone {
  position: relative;
  justify-self: center;
  width: 210px;
  aspect-ratio: 546 / 1080;
}

.phone-center {
  width: 245px;
  z-index: 2;
  transform: translateY(-16px);
}

.phone-screen,
.phone-frame {
  position: absolute;
}

.phone-screen {
  z-index: 2;
  left: 8.5%;
  top: 4.2%;
  width: 83%;
  height: 91%;
  object-fit: cover;
  object-position: top center;
  border-radius: 8.8% / 4.4%;
}

.phone-frame {
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program {
  margin-top: -4px;
  border-top: 1px solid var(--line);
}

.program-shell {
  position: relative;
  width: min(420px, calc(100% - 32px));
  min-height: 590px;
  margin: 0 auto;
}

.program-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.program-content {
  position: relative;
  z-index: 1;
  padding: 58px 38px 28px;
  text-align: center;
}

.program-title {
  font-size: 55px;
  line-height: 1.05;
  font-weight: 900;
}

.program .primary-cta {
  margin-top: 34px;
}

.includes-title {
  margin-top: 36px;
  font-size: 27px;
  font-weight: 800;
}

.includes {
  display: grid;
  gap: 16px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.includes li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 650;
}

.includes img {
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.steps {
  max-width: 500px;
  margin: 70px auto 0;
  padding: 0 24px 26px;
  text-align: center;
}

.steps h2 {
  margin-bottom: 70px;
}

.steps article + article {
  margin-top: 72px;
}

.steps h3 {
  font-size: 47px;
  line-height: 1;
  font-weight: 900;
}

.steps p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 24px 28px;
  text-align: center;
}

.footer-logo {
  width: 118px;
  height: 111px;
  object-fit: cover;
}

.site-footer p {
  margin: 18px auto 38px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
}

.mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.mail img,
.instagram img {
  width: 24px;
  height: 24px;
}

.instagram {
  display: block;
  width: 24px;
  margin: 102px auto 36px;
}

.privacy {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    height: 120px;
    padding: 44px 16px 18px;
  }

  .header-cta {
    display: none;
  }

  .logo-link img {
    width: 86px;
    height: 56px;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-copy p {
    max-width: 370px;
    margin-top: 24px;
    margin-bottom: 50px;
    font-size: 20px;
  }

  .primary-cta {
    min-width: 208px;
    min-height: 60px;
  }

  .store-row {
    margin-top: 32px;
  }

  .hero-image {
    width: min(386px, 100%);
  }

  .method {
    margin-top: 50px;
  }

  .text-block p {
    font-size: 20px;
  }

  .phones {
    width: min(410px, calc(100% - 16px));
    min-height: 314px;
    margin-top: 62px;
  }

  .phone {
    width: 132px;
  }

  .phone-center {
    width: 152px;
  }

  .program-title {
    font-size: 48px;
  }

  .includes li {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .store-row {
    flex-wrap: wrap;
  }

  .phones {
    min-height: 270px;
  }

  .phone {
    width: min(118px, 30vw);
  }

  .phone-center {
    width: min(136px, 34vw);
  }

  .program-content {
    padding-left: 26px;
    padding-right: 26px;
  }
}
