:root {
  --charcoal: #343947;
  --charcoal-deep: #2a2f3b;
  --ink: #1a1c22;
  --blue: #0076db;
  --magenta: #d31884;
  --yellow: #ffbe05;
  --bone: #f9f9f7;
  --haze: #e0ded7;
  --slate: #8e929d;
  --white: #ffffff;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 28px 74px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.22);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --display: "DIN Condensed", "Arial Narrow", "Roboto Condensed", "Oswald", sans-serif;
  --body: "Japandi", "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "DIN Condensed";
  src:
    local("DIN Condensed Bold"),
    local("DINCondensed-Bold"),
    local("DIN Condensed");
  font-weight: 700;
}

@font-face {
  font-family: "Japandi";
  src:
    local("Japandi Light"),
    local("Japandi Regular"),
    local("Japandi"),
    local("Avenir Next");
  font-weight: 400;
}

@font-face {
  font-family: "Japandi";
  src:
    local("Japandi Bold"),
    local("Japandi"),
    local("Avenir Next Demi Bold");
  font-weight: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--bone);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 118, 219, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(211, 24, 132, 0.16), transparent 24%),
    radial-gradient(circle at 54% 84%, rgba(255, 190, 5, 0.16), transparent 22%),
    linear-gradient(180deg, #394050 0%, var(--charcoal) 24%, var(--charcoal-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(249, 249, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 249, 247, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
}

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

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.ambient--blue {
  top: 8%;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 118, 219, 0.22);
}

.ambient--magenta {
  left: -6rem;
  top: 32%;
  width: 18rem;
  height: 18rem;
  background: rgba(211, 24, 132, 0.18);
}

.ambient--yellow {
  right: 16%;
  bottom: 2%;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 190, 5, 0.14);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(7rem, 8vw, 8.2rem);
  min-height: 7rem;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  backdrop-filter: blur(12px);
  background: rgba(52, 57, 71, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 30;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  width: min(1520px, calc(100vw - 2rem));
}

.masthead-banner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
}

.masthead-banner img {
  display: block;
  width: min(100%, 50rem);
  height: auto;
  max-height: clamp(5.2rem, 7vw, 6.6rem);
  object-fit: contain;
  object-position: left center;
}

.masthead-store-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 0 0 auto;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  transition: transform 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
}

.store-badge__image {
  display: block;
  width: auto;
  object-fit: contain;
}

.store-badge__image--apple {
  height: 3.45rem;
}

.store-badge__image--microsoft {
  height: 3.35rem;
}

.store-badge--apple {
  padding-top: 0.05rem;
}

.store-badge--microsoft {
  padding-left: 0.1rem;
}

.store-badge img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.store-badge:focus-visible img,
.store-badge:hover img {
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.22));
}

.store-badge:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 0.25rem;
}

.store-badge__eyebrow,
.store-badge__label {
  display: none;
}

.eyebrow,
.hero-pills li,
.promise-card__eyebrow,
.floating-card__label,
.store-pill {
  letter-spacing: 0.03em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-md);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.button--secondary,
.button--ghost {
  color: var(--bone);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section,
.footer {
  width: min(1280px, calc(100vw - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero {
  width: min(1520px, calc(100vw - 2rem));
  min-height: calc(100vh - 7rem);
  padding-top: clamp(1.2rem, 2vw, 1.8rem);
}

.hero-copy h1,
.section-heading h2,
.promise-card h2,
.architecture-card h3,
.lane h3,
.feature-panel h2,
.ownership-band h2,
.launch-card h2,
.floating-card h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(4.3rem, 8vw, 8.2rem);
}

.hero-copy h1 span {
  color: rgba(249, 249, 247, 0.54);
}

.lede,
.section-heading p,
.promise-card p,
.architecture-card p,
.lane p,
.feature-panel p,
.ownership-band p,
.launch-copy,
.floating-card p,
.detail-list li {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.15rem);
  line-height: 1.7;
  color: rgba(249, 249, 247, 0.78);
}

.eyebrow,
.promise-card__eyebrow,
.floating-card__label {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(249, 249, 247, 0.54);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.hero-pills li,
.store-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(249, 249, 247, 0.88);
}

.hero-surface {
  position: relative;
  overflow: hidden;
  min-height: clamp(36rem, 58vw, 52rem);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: calc(var(--radius-xl) + 0.4rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.03);
  isolation: isolate;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 34%, rgba(26, 28, 34, 0.44), transparent 28%),
    linear-gradient(90deg, rgba(26, 28, 34, 0.985) 0%, rgba(26, 28, 34, 0.93) 18%, rgba(26, 28, 34, 0.84) 36%, rgba(26, 28, 34, 0.64) 54%, rgba(26, 28, 34, 0.32) 72%, rgba(26, 28, 34, 0.14) 100%),
    linear-gradient(180deg, rgba(52, 57, 71, 0.42) 0%, rgba(52, 57, 71, 0.12) 24%, rgba(52, 57, 71, 0.82) 100%);
  pointer-events: none;
}

.hero-surface::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  z-index: 2;
  background:
    radial-gradient(82% 84% at 42% 100%, rgba(224, 222, 215, 0.18) 0%, rgba(224, 222, 215, 0.08) 34%, rgba(224, 222, 215, 0) 68%),
    linear-gradient(to bottom, rgba(52, 57, 71, 0) 0%, rgba(52, 57, 71, 0.32) 42%, rgba(52, 57, 71, 0.96) 100%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-surface__media {
  position: absolute;
  inset: 0;
}

.hero-surface__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform:
    rotateX(calc(var(--tilt-y, 0) * -0.4deg))
    rotateY(calc(var(--tilt-x, 0) * 0.4deg))
    scale(1.035)
    translate3d(0, 0, 0);
  transform-origin: center center;
  transition: transform 220ms ease-out;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: min(42rem, 56%);
  padding: clamp(1rem, 1vw, 1.5rem);
  align-self: end;
}

.hero-copy .eyebrow,
.hero-copy .lede,
.hero-copy h1 {
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.screenshot-reel {
  padding-top: 1rem;
}

.screenshot-reel__heading {
  max-width: 54rem;
}

.screenshot-carousel {
  position: relative;
  padding: clamp(0.8rem, 1.2vw, 1rem);
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at top left, rgba(0, 118, 219, 0.1), transparent 26%),
    radial-gradient(circle at bottom right, rgba(211, 24, 132, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.screenshot-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 22%, rgba(255, 255, 255, 0.02) 78%, transparent 100%);
  pointer-events: none;
}

.screenshot-carousel__frame {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.screenshot-carousel__viewport {
  position: relative;
  overflow: hidden;
  min-height: clamp(20rem, 44vw, 36rem);
  border-radius: calc(var(--radius-xl) - 0.5rem);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.06), transparent 38%),
    rgba(17, 20, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 56px rgba(0, 0, 0, 0.24);
}

.screenshot-carousel__viewport::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18%;
  background:
    radial-gradient(80% 82% at 50% 100%, rgba(224, 222, 215, 0.14) 0%, rgba(224, 222, 215, 0.04) 34%, rgba(224, 222, 215, 0) 70%),
    linear-gradient(to bottom, rgba(17, 20, 28, 0) 0%, rgba(17, 20, 28, 0.16) 42%, rgba(17, 20, 28, 0.84) 100%);
  pointer-events: none;
}

.screenshot-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.screenshot-carousel__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 0ms linear 420ms;
}

.screenshot-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 0ms linear 0ms;
}

.screenshot-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(0.2rem, 0.4vw, 0.4rem);
}

.screenshot-carousel__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  transition: transform 220ms ease;
}

.screenshot-carousel__trigger:hover,
.screenshot-carousel__trigger:focus-visible {
  transform: scale(1.006);
}

.screenshot-carousel__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bone);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.screenshot-carousel__nav:hover,
.screenshot-carousel__nav:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.24);
}

.screenshot-carousel__nav span {
  font-size: 2rem;
  line-height: 1;
}

.screenshot-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
}

.screenshot-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

.screenshot-carousel__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    width 180ms ease;
}

.screenshot-carousel__dot.is-active {
  width: 1.7rem;
  background: linear-gradient(90deg, rgba(0, 118, 219, 0.96), rgba(211, 24, 132, 0.94), rgba(255, 190, 5, 0.96));
}

.lightbox {
  width: min(94vw, 1600px);
  max-width: none;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius-xl) + 0.3rem);
  background:
    radial-gradient(circle at top left, rgba(0, 118, 219, 0.15), transparent 24%),
    radial-gradient(circle at bottom right, rgba(211, 24, 132, 0.14), transparent 28%),
    rgba(17, 20, 28, 0.9);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.lightbox[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox::backdrop {
  background:
    radial-gradient(circle at center, rgba(52, 57, 71, 0.22), rgba(10, 12, 16, 0.88) 68%),
    rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(14px) saturate(120%);
}

.lightbox__inner {
  position: relative;
  padding: 1rem;
}

.lightbox__chrome {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.lightbox__chrome span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lightbox__surface {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.2rem);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 34%),
    rgba(10, 12, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 30px 70px rgba(0, 0, 0, 0.28);
}

.lightbox__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%);
}

.lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 6rem);
  object-fit: contain;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bone);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bone);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.03);
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.lightbox__nav span {
  font-size: 2.2rem;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__image,
  .screenshot-carousel__trigger,
  .screenshot-carousel__slide,
  .screenshot-carousel__slide.is-active {
    transition: none;
  }
}

.floating-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.floating-card--purchase {
  background: linear-gradient(135deg, rgba(255, 190, 5, 0.95), rgba(255, 214, 90, 0.88));
  color: var(--ink);
}

.floating-card--purchase .floating-card__label,
.floating-card--purchase p {
  color: rgba(26, 28, 34, 0.74);
}

.floating-card--purchase h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
}

.floating-card--privacy {
  background: rgba(17, 20, 28, 0.86);
}

.floating-card--privacy h2 {
  font-size: clamp(1.75rem, 2.2vw, 2.2rem);
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.promise-card,
.architecture-card,
.lane,
.feature-panel,
.ownership-band,
.launch-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.promise-card,
.architecture-card,
.feature-panel,
.launch-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.promise-card::after,
.architecture-card::after,
.feature-panel::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 0;
  height: 0.45rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--magenta) 48%, var(--yellow));
  opacity: 0.95;
}

.promise-card {
  display: grid;
  align-content: start;
  gap: 1.2rem;
  min-height: 23rem;
  padding: 1.9rem 2rem 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

.promise-card::after {
  left: 2rem;
  right: 2rem;
  height: 0.5rem;
}

.promise-card--blue::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 118, 219, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(0, 118, 219, 0.05), rgba(0, 118, 219, 0) 36%);
}

.promise-card--magenta::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(211, 24, 132, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(211, 24, 132, 0.05), rgba(211, 24, 132, 0) 38%);
}

.promise-card--yellow::before {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 190, 5, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 190, 5, 0.055), rgba(255, 190, 5, 0) 38%);
}

.promise-card--blue::after {
  background: linear-gradient(90deg, rgba(0, 118, 219, 0.92), rgba(83, 160, 255, 0.98));
}

.promise-card--magenta::after {
  background: linear-gradient(90deg, rgba(211, 24, 132, 0.92), rgba(243, 92, 170, 0.98));
}

.promise-card--yellow::after {
  background: linear-gradient(90deg, rgba(255, 190, 5, 0.92), rgba(255, 215, 96, 0.98));
}

.promise-card h2 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 2.55vw, 2.75rem);
  line-height: 0.98;
  text-wrap: balance;
}

.promise-card p {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1rem, 0.9vw + 0.82rem, 1.14rem);
  line-height: 1.75;
}

.promise-card__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: rgba(249, 249, 247, 0.62);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.feature-panel h2,
.ownership-band h2,
.launch-card h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.architecture {
  position: relative;
}

.architecture::before {
  content: "";
  position: absolute;
  inset: 8rem -6rem 2rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(0, 118, 219, 0.12), transparent 24%),
    radial-gradient(circle at 52% 46%, rgba(211, 24, 132, 0.1), transparent 26%),
    radial-gradient(circle at 82% 62%, rgba(255, 190, 5, 0.11), transparent 22%);
  filter: blur(38px);
  opacity: 0.9;
}

.architecture-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.architecture-card {
  display: grid;
  align-content: start;
  min-height: 22rem;
  gap: 1rem;
  padding: 1.6rem 1.45rem 1.7rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.architecture-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

.architecture-card::after {
  left: 1.45rem;
  right: 1.45rem;
  height: 0.42rem;
  opacity: 0.9;
}

.architecture-card--blue::before {
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 118, 219, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(0, 118, 219, 0.05), rgba(0, 118, 219, 0) 42%);
}

.architecture-card--magenta::before {
  background:
    radial-gradient(circle at 52% 0%, rgba(211, 24, 132, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(211, 24, 132, 0.045), rgba(211, 24, 132, 0) 42%);
}

.architecture-card--yellow::before {
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 190, 5, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(255, 190, 5, 0.05), rgba(255, 190, 5, 0) 42%);
}

.architecture-card--slate::before {
  background:
    radial-gradient(circle at 74% 0%, rgba(142, 146, 157, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(142, 146, 157, 0.05), rgba(142, 146, 157, 0) 42%);
}

.architecture-card--blue::after {
  background: linear-gradient(90deg, rgba(0, 118, 219, 0.9), rgba(90, 168, 255, 0.98));
}

.architecture-card--magenta::after {
  background: linear-gradient(90deg, rgba(211, 24, 132, 0.9), rgba(240, 90, 168, 0.98));
}

.architecture-card--yellow::after {
  background: linear-gradient(90deg, rgba(255, 190, 5, 0.9), rgba(255, 220, 106, 0.98));
}

.architecture-card--slate::after {
  background: linear-gradient(90deg, rgba(142, 146, 157, 0.72), rgba(224, 222, 215, 0.88));
}

.architecture-card__index,
.lane__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--bone);
}

.architecture-card--blue .architecture-card__index {
  background: rgba(0, 118, 219, 0.14);
}

.architecture-card--magenta .architecture-card__index {
  background: rgba(211, 24, 132, 0.14);
}

.architecture-card--yellow .architecture-card__index {
  background: rgba(255, 190, 5, 0.18);
  color: rgba(26, 28, 34, 0.92);
}

.architecture-card--slate .architecture-card__index {
  background: rgba(142, 146, 157, 0.18);
}

.architecture-card h3,
.lane h3 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
}

.workflow-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.lane {
  min-height: 21rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.lane--charcoal {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.lane--blue {
  background: linear-gradient(180deg, rgba(0, 118, 219, 0.94), rgba(15, 137, 255, 0.82));
}

.lane--magenta {
  background: linear-gradient(180deg, rgba(211, 24, 132, 0.96), rgba(231, 54, 155, 0.84));
}

.lane--yellow {
  background: linear-gradient(180deg, rgba(255, 190, 5, 0.96), rgba(255, 208, 72, 0.84));
}

.lane--yellow h3,
.lane--yellow p,
.lane--yellow .lane__index,
.lane--bone h3,
.lane--bone p,
.lane--bone .lane__index {
  color: var(--ink);
}

.lane--yellow .lane__index,
.lane--bone .lane__index {
  background: rgba(26, 28, 34, 0.08);
}

.lane--bone {
  background: linear-gradient(180deg, rgba(249, 249, 247, 0.96), rgba(235, 232, 224, 0.92));
}

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

.feature-panel {
  min-height: 23rem;
  padding: 1.8rem 1.9rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.88;
  pointer-events: none;
}

.feature-panel::after {
  left: 1.9rem;
  right: 1.9rem;
  height: 0.42rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.26));
  opacity: 0.78;
}

.feature-panel--bright {
  background:
    radial-gradient(circle at top right, rgba(0, 118, 219, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.feature-panel--bright::before {
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 118, 219, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(0, 118, 219, 0.045), rgba(0, 118, 219, 0) 44%);
}

.feature-panel--magenta::before {
  background:
    radial-gradient(circle at 16% 0%, rgba(211, 24, 132, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(211, 24, 132, 0.045), rgba(211, 24, 132, 0) 44%);
}

.feature-panel--slate::before {
  background:
    radial-gradient(circle at 82% 0%, rgba(224, 222, 215, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(224, 222, 215, 0.04), rgba(224, 222, 215, 0) 44%);
}

.feature-panel:nth-child(1)::after {
  background: linear-gradient(90deg, rgba(255, 190, 5, 0.86), rgba(255, 222, 132, 0.98));
  opacity: 0.9;
}

.feature-panel:nth-child(2)::after {
  background: linear-gradient(90deg, rgba(0, 118, 219, 0.86), rgba(110, 181, 255, 0.98));
  opacity: 0.88;
}

.feature-panel:nth-child(3)::after,
.feature-panel:nth-child(4)::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.26));
  opacity: 0.74;
}

.feature-panel:nth-child(3)::after {
  background: linear-gradient(90deg, rgba(211, 24, 132, 0.84), rgba(244, 104, 177, 0.98));
  opacity: 0.86;
}

.feature-panel:nth-child(4)::after {
  background: linear-gradient(90deg, rgba(224, 222, 215, 0.5), rgba(249, 249, 247, 0.88));
  opacity: 0.76;
}

.detail-list {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.detail-list li + li {
  margin-top: 0.6rem;
}

.note-shell {
  margin-top: 1.4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(17, 20, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.note-shell__bar {
  height: 0.8rem;
  background: linear-gradient(90deg, rgba(0, 118, 219, 0.95), rgba(110, 181, 255, 0.98));
}

.note-shell__body {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.1rem 1.15rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: rgba(249, 249, 247, 0.9);
  font-size: 0.96rem;
}

.ownership-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(17, 20, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.ownership-band__stack {
  position: relative;
  width: min(24rem, 32vw);
  height: 14rem;
}

.ownership-band__layer {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 2rem;
}

.ownership-band__layer--blue {
  top: 0;
  height: 9rem;
  background: var(--blue);
}

.ownership-band__layer--magenta {
  top: 2.4rem;
  left: 1.2rem;
  right: -1.2rem;
  height: 8.2rem;
  background: var(--magenta);
}

.ownership-band__layer--yellow {
  top: 4.8rem;
  left: 2.4rem;
  right: -2.4rem;
  height: 7.6rem;
  background: var(--yellow);
}

.launch-card {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 5, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0, 118, 219, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.launch-card__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.launch-card__icon {
  width: clamp(5.2rem, 8vw, 6.4rem);
  border-radius: 1.7rem;
  box-shadow: var(--shadow-md);
}

.store-row,
.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.store-row {
  margin-top: 1.3rem;
}

.launch-actions {
  margin-top: 1.6rem;
}

.footer {
  padding: 0 0 2.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
  padding-top: 1.6rem;
}

.footer-brand {
  display: grid;
  gap: 0.7rem;
  max-width: 26rem;
}

.footer-logo {
  width: min(24rem, 42vw);
  opacity: 0.88;
}

.footer-tagline {
  margin: 0;
  color: rgba(249, 249, 247, 0.62);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-column {
  display: grid;
  gap: 0.55rem;
}

.footer-heading {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 249, 247, 0.62);
}

.footer-column a {
  color: rgba(249, 249, 247, 0.82);
  font-size: 0.98rem;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.coming-page {
  min-height: 100vh;
}

.privacy-page {
  min-height: 100vh;
}

.privacy-main {
  width: min(1040px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.6rem) 0 clamp(3rem, 6vw, 4.6rem);
}

.privacy-article {
  max-width: 52rem;
  padding: clamp(1.2rem, 3vw, 2rem) 0 0;
}

.privacy-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 249, 247, 0.62);
}

.privacy-article h1 {
  margin: 0 0 1.3rem;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  line-height: 1.02;
}

.privacy-article h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--white);
}

.privacy-article p {
  margin: 0 0 1rem;
  color: rgba(249, 249, 247, 0.82);
  font-size: 1rem;
  line-height: 1.9;
}

.privacy-list {
  margin: 0 0 1.1rem 1.2rem;
  padding: 0;
  color: rgba(249, 249, 247, 0.82);
}

.privacy-list li {
  margin: 0 0 0.8rem;
  padding-left: 0.15rem;
  line-height: 1.9;
}

.privacy-article a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.privacy-note {
  margin-top: 1.7rem;
  color: rgba(249, 249, 247, 0.68);
  font-size: 0.95rem;
}

.privacy-links {
  margin-top: 1.3rem;
  color: rgba(249, 249, 247, 0.76);
}

.coming-main {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  min-height: calc(100vh - 8rem);
  display: grid;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.coming-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at top right, rgba(0, 118, 219, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 190, 5, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.coming-card h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.coming-copy {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.15rem);
  line-height: 1.7;
  color: rgba(249, 249, 247, 0.78);
}

.coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .topbar {
    height: 6.3rem;
    min-height: 6.3rem;
  }

  .masthead-banner img {
    width: min(100%, 42rem);
    max-height: 5.4rem;
  }

  .masthead-store-links {
    gap: 0.65rem;
  }

  .store-badge__image--apple {
    height: 3.2rem;
  }

  .store-badge__image--microsoft {
    height: 3.1rem;
  }

  .hero,
  .promise-strip,
  .architecture-grid,
  .workflow-lanes,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    width: min(100vw - 1.5rem, 1280px);
    min-height: auto;
  }

  .hero-surface {
    min-height: clamp(34rem, 72vw, 44rem);
  }

  .hero-copy {
    max-width: min(40rem, 68%);
  }

  .screenshot-carousel__viewport {
    min-height: clamp(18rem, 54vw, 28rem);
  }

  .workflow-lanes .lane:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .architecture-grid,
  .promise-strip,
  .product-grid,
  .workflow-lanes,
  .ownership-band,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .ownership-band {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    gap: 0.8rem;
  }

  .masthead-banner img {
    width: min(100%, 34rem);
    max-height: 4.8rem;
  }

  .masthead-store-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .store-badge__image--apple {
    height: 3rem;
  }

  .store-badge__image--microsoft {
    height: 2.95rem;
  }

  .hero-surface {
    min-height: 32rem;
    padding: 1.4rem;
  }

  .hero-surface::before {
    background:
      linear-gradient(180deg, rgba(26, 28, 34, 0.78) 0%, rgba(26, 28, 34, 0.56) 22%, rgba(26, 28, 34, 0.2) 54%, rgba(26, 28, 34, 0.58) 100%);
  }

  .hero-copy {
    max-width: 100%;
    padding: 0.4rem;
  }

  .screenshot-carousel__frame {
    grid-template-columns: minmax(0, 1fr);
  }

  .screenshot-carousel__nav {
    display: none;
  }

  .screenshot-carousel__viewport {
    min-height: 19rem;
  }

  .screenshot-carousel__footer {
    justify-content: center;
  }

  .footer {
    display: grid;
    justify-items: start;
  }

  .footer-links {
    width: 100%;
    gap: 1.2rem;
  }
}

@media (max-width: 1100px) {
  .hero-surface {
    display: grid;
    min-height: auto;
    padding: 1.25rem;
    gap: 1.1rem;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 30%),
      rgba(255, 255, 255, 0.045);
  }

  .hero-surface::before,
  .hero-surface::after {
    display: none;
  }

  .hero-surface__media {
    position: relative;
    inset: auto;
    order: 2;
    height: clamp(18rem, 42vw, 24rem);
    overflow: hidden;
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .hero-surface__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 26%;
    background:
      radial-gradient(82% 84% at 50% 100%, rgba(224, 222, 215, 0.14) 0%, rgba(224, 222, 215, 0.05) 36%, rgba(224, 222, 215, 0) 70%),
      linear-gradient(to bottom, rgba(52, 57, 71, 0) 0%, rgba(52, 57, 71, 0.18) 44%, rgba(52, 57, 71, 0.84) 100%);
    pointer-events: none;
  }

  .hero-surface__media img {
    transform: none;
  }

  .hero-copy {
    order: 1;
    max-width: 100%;
    padding: 0.2rem;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(3.5rem, 8vw, 6.4rem);
  }

  .hero-copy .lede {
    max-width: 42rem;
  }
}

@media (max-width: 640px) {
  .privacy-main {
    width: min(100vw - 1rem, 1280px);
    padding-top: 0.9rem;
  }

  .privacy-article h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .privacy-article h2 {
    margin-top: 1.65rem;
    font-size: 1.02rem;
  }

  .privacy-article p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .section,
  .footer {
    width: min(100vw - 1.2rem, 1280px);
  }

  .topbar {
    padding-inline: 0.8rem;
    height: auto;
    min-height: 6rem;
    padding-block: 0.7rem;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    width: min(100vw - 1rem, 1520px);
  }

  .masthead-banner img {
    width: min(100%, 24rem);
    max-height: 4rem;
  }

  .masthead-store-links {
    width: 100%;
    justify-content: flex-start;
  }

  .store-badge {
    flex: 0 1 auto;
  }

  .store-badge__image--apple {
    height: 2.75rem;
  }

  .store-badge__image--microsoft {
    height: 2.7rem;
  }

  .hero {
    width: min(100vw - 1rem, 1280px);
    padding-top: 0.9rem;
  }

  .hero-surface {
    min-height: auto;
    padding: 1rem;
    border-radius: 1.9rem;
  }

  .hero-surface__media {
    height: 15.5rem;
    border-radius: 1.35rem;
  }

  .hero-copy {
    padding: 0.25rem;
  }

  .screenshot-reel {
    padding-top: 0.4rem;
  }

  .screenshot-carousel {
    padding: 0.85rem;
  }

  .screenshot-carousel__viewport {
    min-height: 14.5rem;
    border-radius: 1.35rem;
  }

  .screenshot-carousel__slide img {
    padding: 0.15rem;
  }

  .lightbox {
    width: min(96vw, 1600px);
  }

  .lightbox__inner {
    padding: 0.7rem;
  }

  .lightbox__chrome {
    top: 0.7rem;
    left: 0.7rem;
  }

  .lightbox__close {
    top: 0.65rem;
    right: 0.65rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .lightbox__nav {
    width: 2.45rem;
    height: 2.45rem;
  }

  .lightbox__nav--prev {
    left: 0.65rem;
  }

  .lightbox__nav--next {
    right: 0.65rem;
  }

  .hero-actions,
  .launch-actions,
  .coming-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .launch-card__intro {
    grid-template-columns: 1fr;
  }

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

  .section-heading h2,
  .feature-panel h2,
  .ownership-band h2,
  .launch-card h2,
  .promise-card h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
