:root {
  --blue: #0071e3;
  --blue-link: #0066cc;
  --blue-bright: #2997ff;
  --near-black: #1d1d1f;
  --light: #f5f5f7;
  --muted: rgba(0, 0, 0, 0.58);
  --white-muted: rgba(255, 255, 255, 0.72);
  --shadow: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;
  font-family: "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--near-black);
  background: var(--light);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--light);
}

body.checkout-success-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 22px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  font-size: 12px;
}

.brand {
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a,
.nav-cta {
  opacity: 0.86;
}

.nav-links a:hover,
.nav-cta:hover {
  opacity: 1;
  text-decoration: underline;
}

.nav-cta {
  justify-self: end;
  color: var(--blue-bright);
}

.hero {
  min-height: 100svh;
  padding: 96px 28px 44px;
  display: grid;
  align-items: end;
  justify-items: center;
  gap: 34px;
  background: #000;
  color: #fff;
}

.hero-copy {
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 600;
}

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

h1 {
  margin-bottom: 14px;
  font-family: "SF Pro Display", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--white-muted);
  font-size: 21px;
  line-height: 1.38;
}

.launch-note {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 980px;
  font-size: 17px;
}

.button.primary {
  background: var(--blue);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--blue-bright);
  color: var(--blue-bright);
}

.benefit-band {
  padding: 34px max(28px, calc((100% - 1180px) / 2)) 48px;
  display: grid;
  width: 100%;
  margin: -18px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: #000;
  color: #fff;
}

.benefit-band article {
  min-height: 132px;
  padding: 22px 24px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
}

.benefit-band strong {
  font-size: 19px;
  line-height: 1.2;
}

.benefit-band span {
  color: var(--white-muted);
  font-size: 15px;
  line-height: 1.45;
}

.app-shot {
  width: min(1180px, 100%);
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f7;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58);
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050507;
}

.shot-toolbar {
  height: 46px;
  display: grid;
  grid-template-columns: 12px 12px 12px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.82);
}

.shot-toolbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(210, 210, 215, 0.64);
}

.shot-address {
  justify-self: center;
  width: min(520px, 100%);
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 980px;
  background: rgba(245, 245, 247, 0.92);
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
}

.shot-body {
  height: min(58vw, 560px);
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 8px minmax(300px, 0.8fr);
  background: var(--light);
}

.main-browser,
.mini-grid {
  padding: 14px;
}

.shot-divider {
  background: #d2d2d7;
}

.video-frame {
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #000;
}

.hero-video {
  min-height: 100%;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(41, 151, 255, 0.34), transparent 28%),
    radial-gradient(circle at 70% 72%, rgba(255, 255, 255, 0.18), transparent 30%);
}

.video-frame strong,
.live-pill {
  position: relative;
  z-index: 1;
}

.live-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 5px 10px;
  border-radius: 980px;
  background: var(--blue);
  font-size: 11px;
  font-weight: 600;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(120px, 1fr);
  gap: 10px;
}

.mini-card {
  display: grid;
  grid-template-rows: 30px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.mini-card.large {
  grid-column: 1 / -1;
}

.mini-bar {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
}

.video-frame.blue {
  background-color: #07192d;
}

.video-frame.silver {
  background-color: #73757a;
}

.video-frame.black {
  background-color: #050505;
}

.section {
  padding: 112px 28px;
}

.section.light {
  background: var(--light);
}

.section.dark {
  background: #000;
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.price-card h2 {
  margin-bottom: 12px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.38;
}

.dark .section-heading p {
  color: var(--white-muted);
}

.feature-grid,
.use-case-strip {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

.feature-grid article,
.use-case-strip article,
.price-card {
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-grid h3,
.use-case-strip h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.19;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.47;
}

.use-case-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-case-strip article {
  background: #272729;
  color: #fff;
  box-shadow: none;
}

.use-case-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-bright);
  font-size: 14px;
}

.pricing {
  display: grid;
  place-items: center;
  min-height: 76vh;
  background: var(--light);
}

.price-card {
  width: min(520px, 100%);
  text-align: center;
}

.price {
  margin-bottom: 12px;
  font-size: 72px;
  line-height: 1;
  font-weight: 600;
}

.price-tax {
  margin: -2px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.price-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-section {
  scroll-margin-top: 48px;
}

.legal-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-grid article,
.legal-copy {
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  color: var(--near-black);
  box-shadow: var(--shadow);
}

.legal-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.legal-grid p,
.legal-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.legal-copy {
  width: min(900px, 100%);
  margin: 0 auto;
}

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

.policy-page {
  padding-top: 48px;
}

.policy-page h1 {
  color: var(--near-black);
}

.policy-copy {
  width: min(900px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.policy-copy h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p,
.policy-copy dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.legal-table dl {
  margin: 0;
}

.legal-table dt {
  margin-top: 24px;
  font-weight: 700;
}

.legal-table dt:first-child {
  margin-top: 0;
}

.legal-table dd {
  margin: 8px 0 0;
}

.inline-link {
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.checkout-success {
  min-height: 100vh;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.checkout-success h1 {
  margin-bottom: 0;
}

.checkout-success .button {
  margin-top: 8px;
}

.checkout-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.restore-note {
  max-width: 600px;
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.restore-note p {
  margin: 0 0 8px;
}

.purchase-note {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .benefit-band,
  .shot-body,
  .feature-grid,
  .use-case-strip,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .shot-body {
    height: auto;
  }

  .main-browser {
    min-height: 320px;
  }

  .shot-divider {
    height: 8px;
  }
}
