:root {
  color-scheme: dark;
  --bg: #0b0812;
  --bg-deep: #07050c;
  --surface: rgba(31, 25, 42, 0.72);
  --surface-strong: rgba(43, 35, 57, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #fbf9ff;
  --text-secondary: rgba(251, 249, 255, 0.67);
  --text-tertiary: rgba(251, 249, 255, 0.42);
  --purple: #c05aff;
  --purple-bright: #dc8cff;
  --cyan: #59d9f2;
  --line: rgba(255, 255, 255, 0.09);
  --purple-line: rgba(192, 90, 255, 0.42);
  --max-width: 1160px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-large: 30px;
  --radius-medium: 22px;
  --radius-small: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 4%, rgba(127, 55, 177, 0.2), transparent 32rem),
    radial-gradient(circle at 4% 38%, rgba(73, 191, 224, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}

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

.site-header {
  position: relative;
  z-index: 20;
  padding-top: 18px;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 11, 22, 0.68);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 1.06rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(192, 90, 255, 0.26);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 650;
}

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

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 730;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(120deg, var(--purple-bright), var(--purple) 58%, #8746c9);
  box-shadow: 0 14px 36px rgba(192, 90, 255, 0.25);
  color: #13091a;
}

.button-primary:hover {
  box-shadow: 0 17px 42px rgba(192, 90, 255, 0.34);
}

.button-quiet {
  justify-self: end;
  border-color: rgba(192, 90, 255, 0.26);
  background: rgba(192, 90, 255, 0.08);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--text-secondary);
  font-weight: 680;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  min-height: 760px;
  padding-block: 90px 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--purple-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(192, 90, 255, 0.12), 0 0 22px var(--purple);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.2vw, 7.3rem);
  font-weight: 780;
}

.hero h1 span {
  background: linear-gradient(112deg, var(--purple-bright), var(--purple) 48%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 31px;
  color: var(--text-secondary);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.beta-note {
  max-width: 510px;
  margin: 17px 0 0;
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.hero-stage::before {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 90, 255, 0.23), transparent 67%);
  content: "";
  filter: blur(6px);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(192, 90, 255, 0.16);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
}

.hero-orbit-two {
  width: 430px;
  height: 430px;
  border-color: rgba(89, 217, 242, 0.11);
}

.phone-preview {
  position: relative;
  z-index: 2;
  width: min(350px, 76vw);
  min-height: 638px;
  padding: 31px 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), transparent 32%),
    #0d0a14;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.58), 0 0 70px rgba(192, 90, 255, 0.12);
}

.phone-preview::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 100px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030205;
  content: "";
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-brand img {
  border-radius: 11px;
}

.phone-brand div {
  display: grid;
}

.phone-brand strong {
  font-size: 0.95rem;
}

.phone-brand span {
  color: var(--text-tertiary);
  font-size: 0.7rem;
}

.status-pill,
.mini-live {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(192, 90, 255, 0.46);
  border-radius: 999px;
  background: rgba(192, 90, 255, 0.16);
  color: var(--purple-bright);
  font-size: 0.57rem;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  padding: 10px 13px;
  border: 1px solid rgba(192, 90, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-tertiary);
  font-size: 0.7rem;
}

.preview-label {
  display: flex;
  justify-content: space-between;
  margin-block: 24px 11px;
  font-size: 0.74rem;
  font-weight: 720;
}

.preview-label span:last-child {
  color: var(--text-tertiary);
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.festival-preview {
  overflow: hidden;
  border: 1px solid rgba(192, 90, 255, 0.37);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 9px 34px rgba(192, 90, 255, 0.1);
}

.festival-art {
  position: relative;
  height: 225px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(192, 90, 255, 0.76), rgba(84, 167, 191, 0.43)),
    #362045;
}

.festival-art::after {
  position: absolute;
  right: -55px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.04), 0 0 0 64px rgba(255, 255, 255, 0.025);
  content: "";
}

.festival-moon {
  position: absolute;
  top: 36px;
  left: 40px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.17);
}

.festival-grid {
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to top, black, transparent);
}

.heart {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 6, 12, 0.25);
  font-size: 1.3rem;
  backdrop-filter: blur(12px);
}

.festival-copy {
  padding: 17px;
}

.festival-copy h2 {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.festival-copy p {
  margin-bottom: 11px;
  color: var(--text-secondary);
  font-size: 0.74rem;
}

.tag-row {
  display: flex;
  gap: 7px;
}

.tag-row span {
  padding: 4px 9px;
  border: 1px solid rgba(192, 90, 255, 0.54);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.59rem;
}

.phone-tabs {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  justify-content: space-around;
  padding: 13px 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(24, 20, 31, 0.88);
  color: var(--text-tertiary);
  font-size: 0.51rem;
  backdrop-filter: blur(18px);
}

.phone-tabs .active {
  color: var(--purple-bright);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 13px 15px;
  border: 1px solid rgba(192, 90, 255, 0.26);
  border-radius: 17px;
  background: rgba(31, 25, 42, 0.76);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.floating-card div {
  display: grid;
}

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

.floating-card span:not(.floating-icon) {
  color: var(--text-tertiary);
  font-size: 0.64rem;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: rgba(192, 90, 255, 0.15);
  color: var(--purple-bright);
}

.floating-card-top {
  top: 113px;
  right: -33px;
}

.floating-card-bottom {
  bottom: 115px;
  left: -56px;
}

.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.trust-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding-block: 20px;
  color: var(--text-tertiary);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-list span[aria-hidden="true"] {
  color: var(--purple);
}

.section {
  padding-block: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--text-secondary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-large);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(140deg, rgba(192, 90, 255, 0.56), rgba(89, 217, 242, 0.14), rgba(255, 255, 255, 0.05)) border-box;
  box-shadow: var(--shadow), 0 13px 42px rgba(192, 90, 255, 0.06);
  backdrop-filter: blur(18px);
}

.feature-card {
  grid-column: span 3;
  min-height: 400px;
  padding: 34px;
}

.feature-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(192, 90, 255, 0.08);
  content: "";
  filter: blur(2px);
}

.feature-card-wide {
  grid-column: span 3;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 45px;
  border: 1px solid rgba(192, 90, 255, 0.35);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(192, 90, 255, 0.2), rgba(89, 217, 242, 0.06));
  color: var(--purple-bright);
  font-size: 1.4rem;
  box-shadow: 0 14px 30px rgba(192, 90, 255, 0.1);
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--purple-bright);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 430px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.feature-card > p:not(.card-kicker) {
  max-width: 490px;
  margin-bottom: 25px;
  color: var(--text-secondary);
}

.mini-events {
  display: grid;
  gap: 9px;
}

.mini-events > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.68rem;
}

.mini-events > div > span:last-child {
  color: var(--text-tertiary);
}

.schedule-lines {
  display: grid;
  gap: 11px;
  margin-top: 32px;
}

.schedule-lines span {
  width: var(--line-width);
  height: 18px;
  border: 1px solid rgba(192, 90, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(192, 90, 255, 0.2), rgba(255, 255, 255, 0.035));
}

.passport-stamps {
  display: flex;
  gap: 13px;
  margin-top: 28px;
}

.passport-stamps span {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  transform: rotate(-5deg);
  border: 1px dashed rgba(192, 90, 255, 0.55);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.68rem;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.passport-stamps span:nth-child(2) {
  transform: rotate(6deg);
  border-color: rgba(89, 217, 242, 0.38);
}

.passport-stamps b {
  color: var(--purple-bright);
  font-size: 0.9rem;
}

.offline-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-secondary);
  font-size: 0.74rem;
}

.offline-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(89, 217, 242, 0.08);
}

.preview-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 115%, rgba(192, 90, 255, 0.16), transparent 38rem),
    rgba(255, 255, 255, 0.015);
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 28px;
}

.screenshot-placeholder {
  display: grid;
  gap: 20px;
}

.screenshot-placeholder > div:last-child {
  text-align: center;
}

.screenshot-placeholder p {
  margin-bottom: 3px;
  font-weight: 760;
}

.screenshot-placeholder > div:last-child span {
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

.placeholder-screen {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 0.51;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(192, 90, 255, 0.27);
  border-radius: 39px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), transparent 30%),
    #0d0a14;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.42);
}

.screenshot-featured .placeholder-screen {
  width: min(100%, 330px);
  border-color: rgba(192, 90, 255, 0.5);
  box-shadow: 0 35px 88px rgba(0, 0, 0, 0.5), 0 0 70px rgba(192, 90, 255, 0.11);
}

.placeholder-island,
.placeholder-title,
.placeholder-subtitle,
.placeholder-control,
.placeholder-card,
.placeholder-row,
.placeholder-stats,
.placeholder-photo {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.placeholder-island {
  top: 14px;
  left: 50%;
  width: 82px;
  height: 23px;
  transform: translateX(-50%);
  background: #020104;
}

.placeholder-title {
  top: 70px;
  left: 22px;
  width: 44%;
  height: 17px;
  background: rgba(255, 255, 255, 0.24);
}

.placeholder-subtitle {
  top: 98px;
  left: 22px;
  width: 68%;
  height: 8px;
}

.placeholder-control {
  top: 133px;
  right: 22px;
  left: 22px;
  height: 32px;
  border: 1px solid rgba(192, 90, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.placeholder-card {
  top: 192px;
  right: 22px;
  left: 22px;
  height: 235px;
  border: 1px solid rgba(192, 90, 255, 0.3);
  border-radius: 20px;
  background:
    linear-gradient(to bottom, rgba(192, 90, 255, 0.36) 0 55%, rgba(255, 255, 255, 0.06) 55%),
    rgba(255, 255, 255, 0.04);
}

.placeholder-row {
  top: 140px;
  right: 22px;
  left: 22px;
  height: 82px;
  border: 1px solid rgba(192, 90, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.placeholder-row::before {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 58%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 21px 0 rgba(255, 255, 255, 0.07);
  content: "";
}

.placeholder-row.row-two {
  top: 237px;
}

.placeholder-row.row-three {
  top: 334px;
}

.placeholder-stats {
  top: 137px;
  left: 22px;
  width: 104px;
  height: 48px;
  border: 1px solid rgba(192, 90, 255, 0.25);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.placeholder-stats::after {
  position: absolute;
  left: 116px;
  width: 104px;
  height: 48px;
  border: 1px solid rgba(192, 90, 255, 0.25);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  content: "";
}

.placeholder-photo {
  top: 210px;
  right: 22px;
  left: 22px;
  height: 230px;
  border: 1px solid rgba(192, 90, 255, 0.27);
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 30%, rgba(220, 140, 255, 0.32), transparent 24%),
    linear-gradient(145deg, rgba(192, 90, 255, 0.23), rgba(89, 217, 242, 0.12));
}

.about-section {
  padding-block: 130px 150px;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 70px;
  overflow: hidden;
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid rgba(192, 90, 255, 0.34);
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 10%, rgba(89, 217, 242, 0.12), transparent 20rem),
    radial-gradient(circle at 10% 110%, rgba(192, 90, 255, 0.18), transparent 28rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.about-card h2 {
  max-width: 750px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
}

.about-card p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 1.07rem;
}

.about-actions {
  display: grid;
  justify-items: start;
  gap: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 70px;
  padding-block: 44px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-shell > div:first-child > p {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 650;
}

.copyright {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

.privacy-main {
  padding-block: 105px 140px;
}

.privacy-hero {
  max-width: 850px;
  margin-bottom: 65px;
}

.privacy-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 7vw, 7rem);
}

.privacy-hero > p:not(.eyebrow, .effective-date) {
  max-width: 660px;
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.effective-date {
  margin: 26px 0 0;
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

.privacy-card {
  overflow: hidden;
  border: 1px solid var(--purple-line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-card section {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 30px;
  padding: 40px 46px;
}

.privacy-card section + section {
  border-top: 1px solid var(--line);
}

.privacy-number {
  margin: 5px 0 0;
  color: var(--purple-bright);
  font-size: 0.72rem;
  font-weight: 830;
  letter-spacing: 0.12em;
}

.privacy-card h2 {
  margin-bottom: 13px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.privacy-card section div p {
  max-width: 790px;
  margin: 0;
  color: var(--text-secondary);
}

.privacy-card section div a {
  color: var(--purple-bright);
  text-decoration: underline;
  text-decoration-color: rgba(192, 90, 255, 0.45);
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
  }

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

  .hero-stage {
    min-height: 690px;
  }

  .floating-card-top {
    right: 4%;
  }

  .floating-card-bottom {
    left: 4%;
  }

  .trust-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-heading,
  .about-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 6;
  }

  .screenshot-strip {
    gap: 16px;
  }

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

  .copyright {
    grid-column: 1 / -1;
  }
}

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

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    min-height: 60px;
    padding: 8px 9px 8px 10px;
    border-radius: 18px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-shell .button-small {
    min-height: 40px;
    padding: 10px 13px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
    padding-block: 84px 80px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 5.5rem);
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .beta-note {
    text-align: center;
  }

  .hero-stage {
    min-height: 610px;
  }

  .hero-orbit-one {
    width: 420px;
    height: 420px;
  }

  .hero-orbit-two {
    width: 350px;
    height: 350px;
  }

  .phone-preview {
    min-height: 580px;
    border-radius: 42px;
  }

  .festival-art {
    height: 190px;
  }

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

  .floating-card-top {
    top: 95px;
    right: -8px;
  }

  .floating-card-bottom {
    bottom: 90px;
    left: -8px;
  }

  .floating-card span:not(.floating-icon) {
    display: none;
  }

  .trust-list {
    gap: 12px;
    padding-block: 18px;
    font-size: 0.61rem;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .feature-grid {
    gap: 14px;
  }

  .feature-card {
    min-height: 0;
    padding: 27px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .mini-events > div {
    grid-template-columns: auto 1fr;
  }

  .mini-events > div > span:last-child {
    display: none;
  }

  .screenshot-strip {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .screenshot-placeholder .placeholder-screen,
  .screenshot-featured .placeholder-screen {
    width: min(78vw, 310px);
  }

  .about-card {
    padding: 34px 25px;
    border-radius: 28px;
  }

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

  .about-actions .text-link {
    justify-self: center;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .privacy-main {
    padding-block: 82px 100px;
  }

  .privacy-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .privacy-card section {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 30px 24px;
  }
}

@media (max-width: 430px) {
  .nav-shell .brand span {
    display: none;
  }

  .hero-stage {
    min-height: 570px;
  }

  .phone-preview {
    width: 88vw;
  }

  .floating-card-top {
    right: -32px;
  }

  .floating-card-bottom {
    left: -28px;
  }
}

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

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