:root {
  --color-background: #06080B;
  --color-surface: #13161C;
  --color-raised: #1C1F26;
  --color-accent: #FF4A5C;
  --color-secondary: #7363FF;
}

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

html {
  background: var(--color-background);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgb(115 99 255 / 10%), transparent 28rem),
    radial-gradient(circle at 91% 28%, rgb(255 74 92 / 7%), transparent 24rem),
    var(--color-background);
  color: #f7f8fb;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

::selection {
  background: var(--color-accent);
  color: var(--color-background);
}

.shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #06080b;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background: rgb(6 8 11 / 90%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-icon {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 5px 16px rgb(255 74 92 / 22%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c7c9d2;
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a,
.site-footer a {
  transition: color 160ms ease;
}

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

.availability-chip {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 999px;
  color: #e8e9ee;
  font-size: 0.75rem;
  font-weight: 800;
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  min-width: 54px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  line-height: 42px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: 210px;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 16px;
  background: var(--color-raised);
  box-shadow: 0 20px 60px rgb(0 0 0 / 45%);
}

.mobile-menu nav a {
  padding: 11px 12px;
  border-radius: 9px;
  color: #eff0f4;
  font-weight: 700;
}

.mobile-menu nav a:hover {
  background: rgb(255 255 255 / 6%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 770px;
  padding-block: 80px 96px;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 em {
  display: block;
  color: var(--color-accent);
  font-style: normal;
}

.hero-lede {
  max-width: 570px;
  margin: 28px 0 0;
  color: #c6c8d0;
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-accent);
  color: #15070a;
}

.button-secondary {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 4%);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgb(255 255 255 / 26%);
  background: rgb(255 255 255 / 7%);
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  gap: 8px 20px;
  color: #a9acb6;
  font-size: 0.8rem;
  font-weight: 700;
  list-style: none;
}

.hero-promises li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  vertical-align: 0.1em;
}

.app-stage {
  position: relative;
  min-height: 620px;
}

.orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 50%;
}

.orbit-one {
  inset: 4% 0 0 9%;
}

.orbit-two {
  inset: 14% 10% 10% -4%;
}

.phone {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(340px, 72%);
  height: 690px;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 54px;
  background: #090b10;
  box-shadow:
    0 38px 100px rgb(0 0 0 / 65%),
    0 0 90px rgb(115 99 255 / 10%);
  transform: translateX(-43%) rotate(3deg);
}

.phone::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 6%);
  border-radius: 57px;
}

.phone-top {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 90px;
  height: 24px;
  border-radius: 999px;
  background: #050609;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 52px 18px 20px;
  border-radius: 43px;
  background:
    radial-gradient(circle at 85% 0%, rgb(115 99 255 / 18%), transparent 190px),
    var(--color-background);
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-heading div {
  display: grid;
}

.app-heading span {
  color: var(--color-accent);
  font-size: 0.62rem;
  font-weight: 900;
}

.app-heading strong {
  font-size: 1.52rem;
  letter-spacing: -0.055em;
}

.app-heading i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  padding: 3px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 999px;
  background: rgb(255 255 255 / 4%);
  color: #8d909b;
  font-size: 0.66rem;
  font-weight: 800;
  text-align: center;
}

.segmented span {
  padding: 7px;
}

.segmented .active {
  border-radius: 999px;
  background: var(--color-raised);
  color: #fff;
}

.up-next-label {
  display: grid;
  margin-top: 27px;
}

.up-next-label strong {
  font-size: 0.96rem;
}

.up-next-label span {
  color: #9da0a9;
  font-size: 0.62rem;
}

.episode-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 18px;
  background: var(--color-surface);
}

.episode-card.compact {
  margin-top: 10px;
}

.episode-art {
  position: relative;
  display: grid;
  min-height: 118px;
  place-items: center;
  overflow: hidden;
}

.episode-art::before,
.episode-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.episode-art::before {
  width: 110px;
  height: 110px;
  border: 18px solid rgb(255 255 255 / 10%);
}

.episode-art::after {
  width: 45px;
  height: 45px;
  background: rgb(255 255 255 / 10%);
}

.art-coral {
  background: var(--color-accent);
  color: #25070c;
}

.art-violet {
  background: var(--color-secondary);
  color: #0d082b;
}

.episode-art span {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 950;
}

.episode-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 15px 14px;
}

.episode-copy small {
  color: var(--color-accent);
  font-size: 0.51rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.episode-copy strong {
  margin-top: 3px;
  overflow: hidden;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.episode-copy > span {
  margin-top: 3px;
  overflow: hidden;
  color: #9da0a9;
  font-size: 0.56rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress {
  height: 3px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 9%);
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--color-accent);
}

.app-tabs {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: space-around;
  padding: 11px 8px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 18px;
  background: rgb(28 31 38 / 95%);
  color: #8d909b;
  font-size: 0.55rem;
  font-weight: 800;
}

.app-tabs .selected {
  color: var(--color-accent);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 16px;
  background: rgb(28 31 38 / 92%);
  box-shadow: 0 22px 50px rgb(0 0 0 / 38%);
  backdrop-filter: blur(14px);
}

.floating-card p {
  display: grid;
  margin: 0;
}

.floating-card strong {
  font-size: 0.72rem;
}

.floating-card small {
  color: #a8aab3;
  font-size: 0.58rem;
}

.floating-progress {
  top: 21%;
  right: -1%;
}

.floating-local {
  bottom: 5%;
  left: -2%;
}

.ring {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 4px solid var(--color-accent);
  border-left-color: rgb(255 255 255 / 9%);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
  transform: rotate(22deg);
}

.local-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #65d69d;
  box-shadow: 0 0 0 6px rgb(101 214 157 / 10%);
}

.trust-strip {
  border-block: 1px solid rgb(255 255 255 / 7%);
  background: rgb(19 22 28 / 42%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  display: flex;
  align-items: center;
  min-height: 86px;
  margin: 0;
  padding: 18px 26px;
  border-right: 1px solid rgb(255 255 255 / 7%);
  color: #c7c9d1;
  font-size: 0.83rem;
  font-weight: 750;
}

.trust-grid p:first-child {
  padding-left: 0;
}

.trust-grid p:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-grid span {
  margin-right: 14px;
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 900;
}

.feature-section {
  padding-block: 132px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading h2,
.local-copy h2,
.closing-cta h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 920;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > a,
.text-link {
  flex: 0 0 auto;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 900;
}

.section-heading > a::after,
.text-link::after {
  content: " →";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  border-left: 1px solid rgb(255 255 255 / 8%);
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid rgb(255 255 255 / 8%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background: rgb(19 22 28 / 38%);
}

.feature-number {
  color: #72757f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.feature-card p {
  margin: 64px 0 8px;
  color: var(--color-accent);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.feature-card > span:last-child {
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: #aeb1bb;
}

.local-first {
  padding-block: 120px;
  border-block: 1px solid rgb(255 255 255 / 7%);
  background: var(--color-surface);
}

.local-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.local-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
}

.local-visual::before,
.local-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.local-visual::before {
  width: 380px;
  height: 380px;
}

.local-visual::after {
  width: 270px;
  height: 270px;
}

.local-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  background: var(--color-raised);
  box-shadow: 0 0 80px rgb(115 99 255 / 14%);
  text-align: center;
}

.local-core span {
  color: #8f91a0;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-core strong {
  max-width: 130px;
  margin: 6px auto 0;
  font-size: 1rem;
  line-height: 1.25;
}

.data-line {
  position: absolute;
  height: 1px;
  background: rgb(255 255 255 / 13%);
  transform-origin: left;
}

.data-line::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.line-one {
  top: 22%;
  left: 8%;
  width: 170px;
  transform: rotate(23deg);
}

.line-two {
  right: 2%;
  bottom: 25%;
  width: 170px;
  transform: rotate(198deg);
}

.line-three {
  bottom: 8%;
  left: 22%;
  width: 130px;
  transform: rotate(-68deg);
}

.local-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 24px;
  color: #b8bbc5;
  font-size: 1.05rem;
}

.closing-cta {
  padding-block: 150px;
  text-align: center;
}

.closing-cta h2 {
  margin-inline: auto;
}

.closing-cta > p:not(.eyebrow) {
  margin: 24px auto 30px;
  color: #aaaeb8;
}

.beta-page {
  overflow: hidden;
}

.beta-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  min-height: 780px;
  padding-block: 80px 96px;
  gap: 42px;
}

.beta-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.beta-copy h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.beta-copy h1 em {
  display: block;
  color: var(--color-accent);
  font-style: normal;
}

.beta-lede {
  max-width: 570px;
  margin: 28px 0 0;
  color: #c6c8d0;
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.55;
}

.beta-mock-note {
  max-width: 510px;
  margin: 28px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--color-secondary);
  color: #7f828d;
  font-size: 0.73rem;
}

.beta-stage {
  position: relative;
  min-height: 650px;
}

.beta-pass {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: 16%;
  width: min(430px, 76%);
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgb(255 255 255 / 8%), transparent 30%),
    var(--color-surface);
  box-shadow: 0 42px 90px rgb(0 0 0 / 46%);
  transform: rotate(2deg);
}

.beta-pass-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-bottom: 18px;
  gap: 12px;
}

.beta-pass-icon {
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgb(255 74 92 / 20%);
}

.beta-pass-header > div {
  display: grid;
  line-height: 1.2;
}

.beta-pass-header > div span {
  color: #8f929d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beta-pass-header > div strong {
  font-size: 1rem;
}

.beta-testflight {
  padding: 6px 9px;
  border: 1px solid rgb(115 99 255 / 28%);
  border-radius: 999px;
  color: #afa7ff;
  font-size: 0.62rem;
  font-weight: 850;
}

.beta-qr-frame {
  padding: 16px;
  border-radius: 22px;
  background: #fff;
}

.beta-qr-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  image-rendering: pixelated;
}

.beta-pass-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px 2px;
  gap: 14px;
}

.beta-pass-footer > div {
  display: grid;
}

.beta-pass-footer > div span {
  color: #8d909a;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.beta-pass-footer > div strong {
  font-size: 0.84rem;
}

.beta-pass-footer > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #18080b;
  font-size: 1rem;
  font-weight: 900;
}

.beta-device-card {
  top: 18%;
  right: 0;
}

.beta-preview-card {
  bottom: 8%;
  left: 1%;
}

.beta-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #65d69d;
  box-shadow: 0 0 0 6px rgb(101 214 157 / 10%);
}

.beta-preview-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgb(115 99 255 / 25%);
  border-radius: 50%;
  color: #9a8fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 900;
}

.beta-guidance {
  padding-block: 132px;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background: var(--color-surface);
}

.beta-guidance-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.beta-guidance h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 920;
  letter-spacing: -0.06em;
  line-height: 1;
}

.beta-guidance-copy > p {
  max-width: 640px;
  margin: 0;
  color: #999ca6;
  font-size: 1.03rem;
}

.beta-invite-address {
  display: grid;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 18px;
  background: rgb(6 8 11 / 40%);
  gap: 8px;
}

.beta-invite-address span {
  color: var(--color-accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.beta-invite-address a {
  color: #b7b9c2;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.beta-invite-address a:hover {
  color: #fff;
}

.page-hero {
  padding-block: 110px 70px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.page-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: #b9bbc4;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.document-meta {
  margin: 30px 0 0;
  color: #7f828d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  justify-content: space-between;
  padding-block: 74px 130px;
  gap: 70px;
}

.article-aside {
  position: sticky;
  top: 28px;
  align-self: start;
  padding-left: 18px;
  border-left: 2px solid var(--color-accent);
  color: #8f929e;
  font-size: 0.78rem;
}

.article-aside p {
  margin: 8px 0 0;
}

.aside-kicker {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article section {
  padding-block: 0 44px;
}

.article section + section {
  padding-top: 44px;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.article h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.article p,
.article li {
  color: #b9bbc5;
}

.article a,
.contact-card a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 4px;
}

.article ul {
  display: grid;
  margin: 20px 0 0;
  padding-left: 22px;
  gap: 10px;
}

.legal-notice {
  margin-bottom: 46px;
  padding: 18px 20px;
  border: 1px solid rgb(255 74 92 / 30%);
  border-radius: 14px;
  background: rgb(255 74 92 / 6%);
  color: #ffd9dd;
  font-size: 0.85rem;
}

.privacy-page {
  overflow: hidden;
}

.privacy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  min-height: 700px;
  padding-block: 88px 96px;
  gap: clamp(54px, 8vw, 112px);
}

.privacy-hero::before {
  position: absolute;
  top: 8%;
  right: -18%;
  width: 680px;
  height: 680px;
  border: 1px solid rgb(115 99 255 / 10%);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgb(115 99 255 / 3%),
    0 0 0 180px rgb(255 74 92 / 2%);
  content: "";
  pointer-events: none;
}

.privacy-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.privacy-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 7.5vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.078em;
  line-height: 0.9;
}

.privacy-hero h1 span {
  display: block;
  color: var(--color-accent);
}

.privacy-lede {
  max-width: 640px;
  margin: 30px 0 0;
  color: #c0c2cb;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

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

.privacy-meta {
  margin: 26px 0 0;
  color: #777a85;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-snapshot {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 2%)),
    rgb(10 12 17 / 88%);
  box-shadow:
    0 34px 90px rgb(0 0 0 / 38%),
    inset 0 1px rgb(255 255 255 / 5%);
  backdrop-filter: blur(18px);
}

.privacy-snapshot-heading {
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  gap: 14px;
}

.privacy-snapshot-heading div {
  display: grid;
  gap: 2px;
}

.privacy-snapshot-heading div > span,
.privacy-promise > span {
  color: var(--color-accent);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.privacy-snapshot-heading strong {
  color: #f7f8fb;
  font-size: 0.95rem;
}

.privacy-lock {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(255 74 92 / 34%);
  border-radius: 12px;
  background: rgb(255 74 92 / 9%);
}

.privacy-lock::before {
  position: absolute;
  top: 9px;
  left: 12px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-accent);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.privacy-lock::after {
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 9px;
  height: 13px;
  border-radius: 4px;
  background: var(--color-accent);
  content: "";
}

.privacy-promise-list {
  display: grid;
}

.privacy-promise {
  position: relative;
  display: grid;
  padding: 22px 0 22px 19px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  gap: 4px;
}

.privacy-promise::before {
  position: absolute;
  top: 29px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 5px rgb(115 99 255 / 10%);
  content: "";
}

.privacy-promise strong {
  margin-top: 2px;
  color: #f1f2f6;
  font-size: 0.96rem;
}

.privacy-promise p {
  margin: 0;
  color: #9699a5;
  font-size: 0.79rem;
  line-height: 1.5;
}

.privacy-policy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  color: #e9eaf0;
  font-size: 0.78rem;
  font-weight: 850;
}

.privacy-policy-link span {
  color: var(--color-accent);
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

.privacy-policy-link:hover span {
  transform: translateX(4px);
}

.privacy-rule {
  width: min(100% - 40px, 1180px);
  height: 1px;
  margin-inline: auto;
  background: rgb(255 255 255 / 8%);
}

.privacy-rule span {
  display: block;
  width: min(22%, 180px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

.privacy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 790px);
  justify-content: space-between;
  padding-block: 100px 140px;
  gap: clamp(56px, 9vw, 120px);
}

.privacy-index {
  position: sticky;
  top: 28px;
  align-self: start;
}

.privacy-index-kicker {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-index nav {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.privacy-index nav a {
  display: grid;
  grid-template-columns: 28px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  color: #898c97;
  font-size: 0.72rem;
  line-height: 1.35;
  transition:
    color 160ms ease,
    padding-left 160ms ease;
}

.privacy-index nav a span {
  color: var(--color-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
}

.privacy-index nav a:hover {
  padding-left: 4px;
  color: #fff;
}

.privacy-index > p {
  margin: 22px 0 0;
  color: #6f727d;
  font-size: 0.72rem;
  line-height: 1.55;
}

.privacy-index > p a {
  color: #c8cad1;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
}

.privacy-article-intro {
  max-width: 700px;
  padding-bottom: 76px;
}

.privacy-article-intro h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 930;
  letter-spacing: -0.06em;
  line-height: 1;
}

.privacy-article-intro > p:last-child {
  max-width: 600px;
  margin: 24px 0 0;
  color: #9295a0;
  font-size: 1rem;
}

.privacy-article > section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  padding-block: 52px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  scroll-margin-top: 30px;
}

.privacy-section-number {
  padding-top: 7px;
  color: var(--color-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.privacy-section-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.privacy-section-copy > p {
  margin: 0;
  color: #b4b6c0;
  line-height: 1.75;
}

.privacy-section-copy > p + p {
  margin-top: 18px;
}

.privacy-section-copy a,
.privacy-callout a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 4px;
}

.privacy-section-copy ul {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.privacy-section-copy li {
  position: relative;
  padding: 12px 16px 12px 38px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 12px;
  background: rgb(255 255 255 / 2.5%);
  color: #b7bac3;
  font-size: 0.9rem;
}

.privacy-section-copy li::before {
  position: absolute;
  top: 20px;
  left: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  content: "";
}

.privacy-callouts {
  display: grid;
  margin-top: 28px;
  gap: 12px;
}

.privacy-callout {
  padding: 21px 22px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 15px;
  background:
    linear-gradient(110deg, rgb(115 99 255 / 7%), transparent 55%),
    rgb(255 255 255 / 2%);
}

.privacy-callout strong {
  color: #f2f3f6;
  font-size: 0.92rem;
}

.privacy-callout p {
  margin: 7px 0 0;
  color: #a9acb6;
  font-size: 0.88rem;
  line-height: 1.65;
}

.feature-page {
  padding-bottom: 130px;
}

.feature-list {
  counter-reset: feature;
}

.feature-row {
  display: grid;
  grid-template-columns: 120px 0.8fr 1.2fr;
  padding-block: 54px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  gap: 30px;
}

.feature-row::before {
  counter-increment: feature;
  content: "0" counter(feature);
  color: var(--color-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.feature-row h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.feature-row div p {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-row > p {
  margin: 0;
  color: #b7bac3;
  font-size: 1.02rem;
}

.support-page,
.data-request-page {
  padding-bottom: 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 64px;
  gap: 16px;
}

.contact-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 20px;
  background: rgb(19 22 28 / 52%);
}

.contact-card > span {
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 38px 0 14px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.contact-card p {
  margin: 0;
  color: #aeb1bb;
  font-size: 0.88rem;
}

.support-note {
  max-width: 760px;
  padding: 30px 0 0;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.support-note h2 {
  font-size: 1.5rem;
}

.support-note p {
  color: #aeb1bb;
}

.request-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 68px;
  gap: 16px;
}

.request-step {
  padding: 30px;
  border-top: 2px solid var(--color-secondary);
  background: var(--color-surface);
}

.request-step span {
  color: #8c7fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.request-step h2 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
}

.request-step p {
  margin: 0;
  color: #aeb1bb;
  font-size: 0.9rem;
}

.source-grid,
.license-grid {
  display: grid;
  padding-block: 64px 130px;
  gap: 16px;
}

.source-card,
.license-card {
  padding: 32px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 20px;
  background: rgb(19 22 28 / 48%);
}

.source-card h2,
.license-card h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.source-card p,
.license-card p {
  color: #b1b4be;
}

.source-card a,
.license-card a {
  color: var(--color-accent);
  font-weight: 800;
}

.source-card .source-role,
.license-card .license-type {
  display: block;
  margin-bottom: 24px;
  color: #878a95;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-page {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 100px;
}

.status-code {
  color: var(--color-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.status-page h1 {
  max-width: 800px;
  margin: 18px 0 0;
  font-size: clamp(3.1rem, 8vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.status-page p {
  max-width: 600px;
  margin: 28px 0 30px;
  color: #b5b8c1;
  font-size: 1.08rem;
}

.site-footer {
  border-top: 1px solid rgb(255 255 255 / 8%);
  background: #05070a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  padding-block: 76px;
  gap: 50px;
}

.footer-intro p {
  max-width: 340px;
  margin: 22px 0 16px;
  color: #8d909a;
  font-size: 0.88rem;
}

.footer-note {
  color: #626570;
  font-size: 0.72rem;
}

.footer-grid > div:not(.footer-intro) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #777a84;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-intro) a {
  color: #bec0c8;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid rgb(255 255 255 / 7%);
  color: #636670;
  font-size: 0.68rem;
}

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

  .desktop-nav,
  .availability-chip {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

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

  .app-stage {
    width: min(100%, 680px);
    margin: 10px auto 0;
  }

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

  .trust-grid p,
  .trust-grid p:first-child,
  .trust-grid p:last-child {
    min-height: 68px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 7%);
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

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

  .beta-hero {
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

  .beta-stage {
    width: min(100%, 680px);
    margin: 10px auto 0;
  }

  .beta-guidance-grid {
    grid-template-columns: 1fr;
  }

  .local-visual {
    order: 2;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .article-aside {
    position: static;
    max-width: 460px;
  }

  .privacy-hero {
    grid-template-columns: 1fr;
    padding-block: 82px 90px;
  }

  .privacy-hero-copy {
    max-width: 760px;
  }

  .privacy-snapshot {
    width: min(100%, 680px);
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .privacy-index {
    position: static;
    padding: 24px;
    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: 18px;
    background: rgb(255 255 255 / 2%);
  }

  .privacy-index nav {
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

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

  .contact-card {
    min-height: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero {
    min-height: 0;
    padding-block: 64px 80px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-promises {
    display: grid;
  }

  .app-stage {
    min-height: 620px;
  }

  .phone {
    left: 50%;
    width: min(325px, 88%);
    height: 660px;
    transform: translateX(-50%) rotate(2deg);
  }

  .floating-progress {
    top: 18%;
    right: -3%;
  }

  .floating-local {
    bottom: -2%;
    left: -2%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .feature-section {
    padding-block: 100px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .feature-card {
    min-height: 300px;
    padding: 26px;
  }

  .local-first {
    padding-block: 90px;
  }

  .local-visual {
    min-height: 380px;
    transform: scale(0.9);
  }

  .closing-cta {
    padding-block: 110px;
  }

  .beta-hero {
    min-height: 0;
    padding-block: 64px 80px;
  }

  .beta-copy h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .beta-stage {
    min-height: 620px;
  }

  .beta-pass {
    left: 50%;
    width: min(390px, 88%);
    transform: translateX(-50%) rotate(2deg);
  }

  .beta-device-card {
    top: 14%;
    right: -3%;
  }

  .beta-preview-card {
    bottom: 4%;
    left: -2%;
  }

  .beta-guidance {
    padding-block: 100px;
  }

  .page-hero {
    padding-block: 80px 54px;
  }

  .article-layout {
    padding-block: 54px 100px;
  }

  .privacy-hero {
    min-height: auto;
    padding-block: 70px 76px;
    gap: 54px;
  }

  .privacy-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .privacy-hero::before {
    top: 28%;
    right: -70%;
  }

  .privacy-snapshot {
    padding: 20px;
    border-radius: 21px;
  }

  .privacy-layout {
    padding-block: 72px 100px;
  }

  .privacy-index nav {
    grid-template-columns: 1fr;
  }

  .privacy-article-intro {
    padding-bottom: 54px;
  }

  .privacy-article > section {
    grid-template-columns: 36px minmax(0, 1fr);
    padding-block: 42px;
  }

  .privacy-section-number {
    font-size: 0.62rem;
  }

  .feature-row {
    grid-template-columns: 52px 1fr;
    padding-block: 38px;
    gap: 18px;
  }

  .feature-row > p {
    grid-column: 2;
  }

  .contact-grid,
  .request-steps,
  .source-grid,
  .license-grid {
    padding-block: 44px 100px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 60px;
    gap: 42px 24px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 430px) {
  .beta-pass {
    width: 92%;
    padding: 16px;
    border-radius: 26px;
  }

  .beta-pass-header {
    grid-template-columns: auto 1fr;
  }

  .beta-testflight {
    display: none;
  }

  .beta-device-card {
    right: -7px;
  }

  .beta-preview-card {
    left: -5px;
  }

  .phone {
    width: 310px;
  }

  .floating-card {
    padding: 10px 12px;
  }

  .floating-progress {
    right: -7px;
  }

  .floating-local {
    left: -5px;
  }

  .orbit {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  .site-header,
  .site-footer,
  .feature-card,
  .contact-card,
  .source-card,
  .license-card {
    border-color: rgb(255 255 255 / 32%);
  }

  .hero-lede,
  .page-lede,
  .article p,
  .article li,
  .privacy-lede,
  .privacy-section-copy > p,
  .privacy-callout p {
    color: #e5e6ea;
  }
}
