:root {
  --ink: #111713;
  --coal: #151815;
  --coal-soft: #20251f;
  --paper: #fffdf8;
  --paper-soft: #f4efe5;
  --muted: #72796f;
  --line: rgba(17, 23, 19, .14);
  --line-light: rgba(255, 255, 255, .16);
  --red: #ef412f;
  --green: #15945f;
  --gold: #f3b423;
  --teal: #13828c;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

strong  {
  color: #d93424;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 74px;
  color: #fff;
  transform: translateX(-50%);
  transition: top .22s ease, min-height .22s ease, padding .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
}

.site-header.is-condensed {
  top: 12px;
  min-height: 58px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.header-cta,
.store-button,
.site-footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-size: .96rem;
  font-weight: 830;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  gap: .28em;
  min-width: 0;
  white-space: nowrap;
  transition: gap .38s ease, transform .38s ease;
}

.brand-word {
  display: inline-flex;
  min-width: 0;
  overflow: hidden;
  transition: transform .38s ease;
}

.site-header.is-condensed .brand-text {
  gap: .08em;
  transform: translateX(-2px);
}

.brand-rest {
  display: inline-block;
  max-width: 4.5em;
  overflow: hidden;
  transform-origin: left center;
  transition: max-width .38s ease, opacity .28s ease, transform .38s ease;
}

.site-header.is-condensed .brand-word {
  transform: scale(.98);
}

.site-header.is-condensed .brand-rest {
  max-width: 0;
  opacity: 0;
  transform: scaleX(0) translateY(-1px);
}

.brand-word:nth-child(5) {
  color: red;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 25%, var(--gold) 0 50%, var(--green) 0 75%, var(--teal) 0);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.brand-mark::after {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 760;
}

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

.site-nav a:hover {
  color: #fff;
}

.site-header.is-condensed .site-nav {
  color: rgba(17, 23, 19, .66);
}

.site-header.is-condensed .site-nav a:hover {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
  transition: transform .18s ease, background .18s ease;
}

.header-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--coal);
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 54%, rgba(239, 65, 47, .24), transparent 30%),
    linear-gradient(90deg, rgba(13, 17, 14, .96) 0%, rgba(13, 17, 14, .82) 37%, rgba(13, 17, 14, .38) 66%, rgba(13, 17, 14, .72) 100%),
    linear-gradient(180deg, rgba(13, 17, 14, .42), rgba(13, 17, 14, .76));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .64fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  width: min(calc(100% - 32px), var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px 0 64px;
}

.hero-copy h1,
.section-heading h2,
.how-copy h2,
.download-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: .87;
}

.hero-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .77);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.45;
  font-weight: 620;
}

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

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 204px;
  min-height: 60px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #050706;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.store-button:hover {
  border-color: rgba(255, 255, 255, .3);
  background: #000;
  transform: translateY(-2px);
}

.store-button svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.store-button span {
  display: grid;
  gap: 1px;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.05;
}

.store-button small {
  color: rgba(255, 255, 255, .68);
  font-size: .68rem;
  font-weight: 760;
}

.phone-stage {
  position: relative;
  display: grid;
  justify-self: center;
  justify-items: center;
  width: min(100%, 328px);
}

.phone {
  width: min(100%, 328px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 44px;
  background: #0b0e0c;
  box-shadow: var(--shadow);
}

.phone-screen {
  display: grid;
  gap: 18px;
  min-height: 620px;
  padding: 26px 18px 20px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, .94), rgba(255, 255, 255, .98)),
    #fff;
  color: var(--ink);
  overflow: hidden;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

.screen-top strong {
  color: var(--red);
}

.wheel {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  --wheel-rotation: 0deg;
  --label-counter-rotation: 0deg;
  --wheel-label-radius: 82px;
  width: 252px;
  aspect-ratio: 1;
  margin-top: 22px;
}

.wheel-disc {
  position: absolute;
  inset: 0;
  border: 10px solid #fff;
  border-radius: 50%;
  background: conic-gradient(from -45deg, var(--red) 0 90deg, var(--gold) 0 180deg, var(--green) 0 270deg, var(--teal) 0 360deg);
  box-shadow: 0 22px 46px rgba(17, 23, 19, .2);
  transform: rotate(var(--wheel-rotation));
  transition: transform 1.85s cubic-bezier(.14, .74, .18, 1);
  will-change: transform;
}

.wheel::before {
  content: "";
  position: absolute;
  top: -26px;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 24px solid var(--ink);
}

.spin-nudge {
  position: absolute;
  top: 214px;
  left: -108px;
  z-index: 3;
  pointer-events: none;
  transform: rotate(-6deg);
}

.spin-nudge span {
  padding: 6px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 940;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(17, 23, 19, .16);
}

.wheel-disc span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  min-height: 20px;
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .26);
  transition: transform 1.85s cubic-bezier(.14, .74, .18, 1);
  will-change: transform;
}

.wheel-disc span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg) translateY(calc(var(--wheel-label-radius) * -1)) rotate(var(--label-counter-rotation));
}

.wheel-disc span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg) translateY(calc(var(--wheel-label-radius) * -1)) rotate(calc(var(--label-counter-rotation) - 90deg));
}

.wheel-disc span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(180deg) translateY(calc(var(--wheel-label-radius) * -1)) rotate(calc(var(--label-counter-rotation) - 180deg));
}

.wheel-disc span:nth-child(4) {
  transform: translate(-50%, -50%) rotate(270deg) translateY(calc(var(--wheel-label-radius) * -1)) rotate(calc(var(--label-counter-rotation) - 270deg));
}

.wheel button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-size: 1.45rem;
  font-weight: 930;
  cursor: pointer;
  transition: background .18s ease, scale .18s ease;
}

.wheel button:hover {
  background: #d93424;
}

.wheel button:active {
  scale: .96;
}

.wheel button:disabled {
  cursor: wait;
}

.wheel.is-spinning button {
  background: var(--ink);
}

.worldwide-note {
  display: grid;
  place-items: center;
  justify-self: center;
  margin: -4px 0 0;
  padding: 7px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 940;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 16px rgba(17, 23, 19, .16);
}

.result-card {
  align-self: end;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 23, 19, .1);
}

.result-card img {
  width: 74px;
  height: 74px;
  border-radius: var(--radius);
  object-fit: cover;
}

.result-card strong,
.result-card span {
  display: block;
}

.result-card strong {
  font-size: .94rem;
  line-height: 1.12;
}

.result-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 720;
}

.feature-band,
.how-section,
.download-section,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 7vw, 92px);
  padding: clamp(80px, 10vw, 136px) 0;
}

.section-heading h2,
.how-copy h2,
.download-section h2 {
  font-size: clamp(2.35rem, 5.4vw, 5.6rem);
  line-height: .92;
}

.section-heading p,
.how-copy p,
.download-section p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
  font-weight: 620;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, .95fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--red);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.08;
}

.feature-list p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
  font-weight: 610;
}

.how-section {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(74px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.steps li {
  min-height: 290px;
  padding: 26px;
  background: #fff;
}

.steps span {
  display: block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 930;
}

.steps strong {
  display: block;
  margin-top: 74px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 610;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
  margin-top: clamp(56px, 8vw, 96px);
  margin-bottom: 48px;
  padding: clamp(36px, 6vw, 72px);
  border-radius: var(--radius);
  background: var(--coal);
  color: #fff;
}

.download-section p {
  color: rgba(255, 255, 255, .68);
}

.download-section .store-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 730;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-inner,
  .feature-band,
  .how-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 106px;
  }

  .hero-copy h1 {
    max-width: 680px;
  }

  .phone-stage {
    justify-self: start;
    justify-items: start;
  }

  .download-section .store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    width: calc(100% - 24px);
    min-height: 66px;
    gap: 12px;
  }

  .brand-text {
    max-width: 168px;
    flex-wrap: wrap;
    row-gap: 0;
    overflow: visible;
    white-space: normal;
    line-height: 1.05;
  }

  .site-header.is-condensed .brand-text {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .site-header.is-condensed .brand-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: .82rem;
  }

  .hero-inner,
  .feature-band,
  .how-section,
  .download-section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero-inner {
    min-height: auto;
    padding: 104px 0 38px;
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .store-actions,
  .store-button {
    width: 100%;
  }

  .phone {
    width: min(100%, 292px);
    border-radius: 36px;
  }

  .phone-stage {
    justify-self: center;
    justify-items: center;
    width: min(100%, 292px);
  }

  .phone-screen {
    min-height: 540px;
    border-radius: 26px;
  }

  .wheel {
    --wheel-label-radius: 72px;
    width: 222px;
  }

  .spin-nudge {
    top: 190px;
    left: -50px;
    transform: rotate(-6deg) scale(.82);
    transform-origin: left center;
  }

  .feature-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .steps li {
    min-height: 0;
  }

  .steps strong {
    margin-top: 36px;
  }

  .download-section {
    padding: 28px 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
