@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #0b0d10;
  --surface: #14181d;
  --surface-raised: #1b2027;
  --warm: #231a16;
  --accent: #ff5a1f;
  --accent-light: #ff8a5d;
  --success: #34d399;
  --warning: #fbbf24;
  --text: rgba(255, 255, 255, 0.92);
  --text-strong: #fff;
  --muted: rgba(255, 255, 255, 0.65);
  --faint: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shell: min(1180px, calc(100vw - 40px));
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 90, 31, 0.055), transparent 26rem),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-light);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--warning);
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform 120ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text-strong);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.brand:hover {
  color: var(--text-strong);
}

.brand-route {
  position: relative;
  width: 27px;
  height: 19px;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 6px 0 0 6px;
}

.brand-route::after {
  position: absolute;
  width: 10px;
  height: 3px;
  right: -4px;
  top: 5px;
  background: var(--accent);
  box-shadow: 0 -5px 0 -1px var(--accent), 0 5px 0 -1px var(--accent);
  content: "";
  transform: rotate(-48deg);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--text-strong);
}

.site-header nav a[aria-current="page"]::before {
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.eyebrow,
.feature-kicker,
.section-tag,
.mini-label {
  margin: 0;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.1);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  color: #0b0d10;
  background: var(--accent);
  box-shadow: 0 14px 36px rgba(255, 90, 31, 0.18);
}

.button-primary:hover {
  color: #0b0d10;
  background: #ff7040;
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface-raised);
}

.button-disabled {
  border-color: var(--line-strong);
  color: var(--muted);
  background: var(--surface);
  cursor: not-allowed;
}

.hero {
  display: grid;
  min-height: 700px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding-block: 84px 100px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.hero h1,
.page-hero h1,
.contact-intro h1 {
  margin: 20px 0 26px;
  color: var(--text-strong);
  font-size: clamp(66px, 8vw, 116px);
  line-height: 0.82;
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.availability-note {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  min-width: 0;
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  width: 380px;
  height: 380px;
  top: 28px;
  left: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.16), rgba(255, 90, 31, 0) 68%);
  content: "";
  filter: blur(6px);
}

.stage-brand {
  position: absolute;
  z-index: -1;
  top: 14px;
  right: 10px;
  width: min(370px, 72%);
  opacity: 0.54;
  transform: rotate(2deg);
}

.stage-brand img {
  display: block;
  border-radius: 24%;
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.48);
}

.route-line {
  position: absolute;
  z-index: -2;
  border: 2px solid rgba(255, 255, 255, 0.14);
  content: "";
}

.route-line::after {
  position: absolute;
  width: 23px;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 4px, transparent 4px 7px);
  content: "";
}

.route-line-one {
  width: 280px;
  height: 410px;
  top: 46px;
  left: 78px;
  border-right-color: transparent;
  border-radius: 47% 23% 51% 30%;
  transform: rotate(24deg);
}

.route-line-one::after {
  right: -10px;
  bottom: 55px;
  transform: rotate(82deg);
}

.route-line-two {
  width: 180px;
  height: 290px;
  right: 34px;
  bottom: 22px;
  border-left-color: transparent;
  border-radius: 22% 50% 35% 48%;
  transform: rotate(-32deg);
}

.route-line-two::after {
  top: 25px;
  left: -9px;
  transform: rotate(65deg);
}

.update-card {
  position: absolute;
  border: 1px solid var(--line-strong);
  background: rgba(20, 24, 29, 0.94);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.update-card-primary {
  z-index: 3;
  width: min(430px, 90%);
  right: 20px;
  bottom: 48px;
  padding: 25px;
  border-radius: var(--radius-lg);
}

.card-topline,
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.live-source {
  color: var(--success);
}

.update-type {
  margin: 34px 0 4px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.update-copy {
  margin: 0 0 28px;
  color: var(--text-strong);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.03;
  text-transform: uppercase;
}

.card-meta {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  letter-spacing: 0;
  text-transform: none;
}

.update-card-secondary {
  z-index: 2;
  width: 250px;
  top: 174px;
  left: -12px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  transform: rotate(-3deg);
}

.update-card-secondary strong {
  display: block;
  margin-top: 7px;
  font-size: 13px;
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.signal-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.signal-inner i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.08);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.safety-section h2,
.beta-section h2,
.final-cta h2,
.deletion-section h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(48px, 6vw, 78px);
}

.section-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 6px auto;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  min-height: 390px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(27, 32, 39, 0.83), rgba(20, 24, 29, 0.64));
}

.feature-card h3 {
  max-width: 530px;
  margin: 14px 0 18px;
  color: var(--text-strong);
  font-size: clamp(24px, 2.8vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.feature-card > p:not(.feature-kicker),
.event-feature > div > p:not(.feature-kicker) {
  max-width: 590px;
  color: var(--muted);
}

.feature-wide {
  grid-column: 1 / -1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}

.map-icon {
  position: relative;
}

.map-icon::before,
.map-icon::after,
.map-icon span {
  position: absolute;
  border: 2px solid var(--muted);
  border-radius: 50%;
  content: "";
}

.map-icon::before {
  inset: 19px 20px 20px 18px;
  border-right-color: transparent;
  transform: rotate(35deg);
}

.map-icon::after {
  width: 7px;
  height: 7px;
  top: 22px;
  right: 21px;
  border: 0;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.12);
}

.pulse-icon,
.bell-icon {
  position: relative;
}

.pulse-icon::before {
  position: absolute;
  width: 35px;
  height: 18px;
  top: 26px;
  left: 17px;
  background: linear-gradient(135deg, transparent 0 32%, var(--accent) 33% 39%, transparent 40% 51%, var(--muted) 52% 58%, transparent 59%);
  content: "";
}

.bell-icon::before {
  position: absolute;
  width: 23px;
  height: 27px;
  top: 18px;
  left: 22px;
  border: 2px solid var(--muted);
  border-radius: 12px 12px 6px 6px;
  content: "";
}

.bell-icon::after {
  position: absolute;
  width: 6px;
  height: 6px;
  right: 14px;
  top: 13px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.filter-row span {
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 600;
}

.event-feature {
  min-height: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}

.event-stack {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.event-stack > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.event-stack > div:last-child {
  border-bottom: 0;
}

.event-stack time {
  color: var(--faint);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.event-stack b,
.event-stack small {
  display: block;
}

.event-stack small {
  margin-top: 2px;
  color: var(--faint);
}

.event-stack .event-alert {
  border-left: 3px solid var(--accent);
  background: rgba(255, 90, 31, 0.08);
}

.event-stack .event-alert small {
  color: var(--accent-light);
}

.safety-section {
  display: grid;
  grid-template-columns: 130px 1fr 1.1fr;
  align-items: center;
  gap: 42px;
  padding-block: 72px;
  border-block: 1px solid var(--line);
}

.safety-number {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 8px solid var(--accent);
  border-radius: 50%;
  color: var(--text-strong);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  font-weight: 700;
  transform: rotate(-6deg);
}

.safety-section h2 {
  margin-top: 10px;
  font-size: clamp(42px, 5vw, 68px);
}

.safety-section > p {
  margin: 0;
  color: var(--muted);
}

.beta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 8vw, 110px);
  padding-block: 130px;
}

.beta-copy h2 {
  margin-top: 20px;
}

.beta-details > p {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.truth-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.truth-list li {
  padding: 18px 0 18px 27px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.truth-list li::before {
  position: absolute;
  margin: 8px 0 0 -25px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.truth-list strong {
  color: var(--text);
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
  padding: clamp(44px, 8vw, 90px);
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.13), transparent 50%),
    var(--surface);
}

.final-cta::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -210px;
  border: 18px solid rgba(255, 255, 255, 0.045);
  border-right-color: var(--accent);
  border-radius: 45% 31% 50% 24%;
  content: "";
  transform: rotate(25deg);
}

.final-cta h2 {
  max-width: 780px;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.final-cta > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.final-cta .button {
  margin-top: 16px;
}

.site-footer {
  padding-block: 64px 30px;
  border-top: 1px solid var(--line);
  background: #080a0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  gap: 50px;
}

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

.footer-grid p {
  max-width: 430px;
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact span {
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.footer-contact a {
  font-size: 14px;
  font-weight: 600;
}

.footer-grid .copyright {
  grid-column: 1 / -1;
  max-width: none;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* Legal pages */
.legal-shell {
  padding-block: 86px 120px;
}

.legal-hero {
  max-width: 900px;
  padding-bottom: 70px;
}

.legal-hero h1 {
  margin: 18px 0 20px;
  color: var(--text-strong);
  font-size: clamp(60px, 8vw, 100px);
}

.legal-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.legal-hero dl {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin: 40px 0 0;
}

.legal-hero dl div {
  display: grid;
  gap: 4px;
}

.legal-hero dt,
.legal-nav > p {
  color: var(--faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-hero dd {
  margin: 0;
  font-size: 13px;
}

.legal-status {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  margin: -24px 0 64px;
  padding: 24px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-md);
  background: rgba(251, 191, 36, 0.06);
}

.legal-status strong {
  color: var(--warning);
}

.legal-status p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-status span {
  color: var(--text);
  font-weight: 600;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.legal-nav nav {
  display: grid;
  gap: 2px;
}

.legal-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--faint);
  font-size: 12px;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--text);
}

.legal-content section {
  scroll-margin-top: 28px;
  padding: 0 0 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 22px;
  color: var(--text-strong);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-transform: none;
}

.legal-content h3 {
  margin: 30px 0 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 11px;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--text);
}

.legal-content .section-tag {
  margin-bottom: 11px;
  color: var(--accent-light);
}

.todo-block,
.safety-callout {
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 3px solid var(--warning);
  background: rgba(251, 191, 36, 0.06);
}

.todo-block strong {
  color: var(--warning);
}

.todo-block p {
  margin: 5px 0 0;
  font-size: 14px;
}

.safety-callout {
  margin: 0 0 24px;
  border-left-color: var(--accent);
  background: rgba(255, 90, 31, 0.07);
}

/* Support and contact */
.page-hero {
  max-width: 980px;
  padding-block: 100px 110px;
}

.page-hero h1,
.contact-intro h1 {
  font-size: clamp(72px, 11vw, 132px);
}

.page-hero > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 19px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 120px;
}

.support-grid article {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.support-index {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-light);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.support-grid h2 {
  margin: 0 0 14px;
  color: var(--text-strong);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 25px;
  text-transform: none;
}

.support-grid p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
}

.support-grid a {
  margin-top: auto;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.deletion-section {
  padding-block: 100px;
  border-block: 1px solid var(--line);
}

.deletion-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.deletion-intro .eyebrow {
  grid-column: 1 / -1;
}

.deletion-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.deletion-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.deletion-steps li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.deletion-steps > li > span {
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.deletion-steps h3,
.email-fallback h3 {
  margin: 0 0 7px;
  color: var(--text-strong);
  font-size: 20px;
}

.deletion-steps p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.email-fallback {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.email-fallback h3 {
  margin-top: 8px;
}

.email-fallback p:last-child {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.response-note {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 50px;
  padding-block: 90px 120px;
}

.response-note h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 25px;
  font-family: "Inter", system-ui, sans-serif;
  text-transform: none;
}

.response-note p {
  margin: 0;
  color: var(--muted);
}

.contact-main {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
  padding-block: 100px 130px;
}

.contact-intro p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.contact-card > .feature-kicker,
.contact-card > h2,
.contact-card > .contact-footnote {
  margin-inline: 32px;
}

.contact-card > .feature-kicker {
  margin-top: 32px;
}

.contact-card h2 {
  margin-top: 10px;
  margin-bottom: 34px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(21px, 3vw, 32px);
  letter-spacing: -0.025em;
  text-transform: none;
}

.contact-card h2 a {
  text-decoration: none;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.025);
}

.contact-links span {
  color: var(--accent);
}

.contact-footnote {
  margin-block: 25px;
  color: var(--faint);
  font-size: 12px;
}

.contact-safety {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-safety p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

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

  .stage-brand {
    right: 7%;
  }

  .section-heading,
  .beta-section,
  .deletion-intro,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-left: 0;
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

  .safety-section {
    grid-template-columns: 105px 1fr;
  }

  .safety-section > p {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
  }

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

  .support-grid article {
    min-height: 300px;
  }

  .email-fallback {
    grid-template-columns: 1fr;
  }

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

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

  body {
    font-size: 15px;
  }

  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0;
    padding-block: 12px;
  }

  .brand {
    font-size: 21px;
  }

  .site-header nav {
    width: 100%;
    flex-basis: 100%;
    order: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-header nav a {
    justify-content: center;
    padding-inline: 7px;
    font-size: 12px;
  }

  .site-header nav a[aria-current="page"]::before {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 62px 72px;
  }

  .hero h1,
  .page-hero h1,
  .contact-intro h1 {
    font-size: clamp(52px, 15.5vw, 68px);
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-stage {
    width: 100%;
    min-height: 430px;
    overflow: hidden;
  }

  .stage-brand {
    width: 82%;
    right: 3%;
  }

  .route-line-one {
    width: 230px;
    height: 340px;
    left: 34px;
  }

  .route-line-two,
  .update-card-secondary {
    display: none;
  }

  .update-card-primary {
    width: calc(100% - 12px);
    right: 6px;
    bottom: 10px;
  }

  .update-copy {
    font-size: 27px;
  }

  .signal-inner {
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .signal-inner i {
    width: 3px;
    height: 3px;
  }

  .feature-section,
  .beta-section {
    padding-block: 90px;
  }

  .section-heading h2,
  .safety-section h2,
  .beta-section h2,
  .final-cta h2,
  .deletion-section h2 {
    font-size: 50px;
  }

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

  .feature-card,
  .feature-wide {
    min-height: auto;
    grid-column: auto;
  }

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

  .safety-section {
    grid-template-columns: 1fr;
  }

  .safety-number {
    width: 85px;
    height: 85px;
    border-width: 6px;
    font-size: 29px;
  }

  .safety-section > p {
    grid-column: auto;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin-bottom: 70px;
  }

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

  .footer-grid .copyright {
    grid-column: auto;
  }

  .legal-shell {
    padding-block: 65px 90px;
  }

  .legal-hero h1 {
    font-size: 58px;
  }

  .legal-status {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-content section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

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

  .deletion-section {
    padding-block: 80px;
  }

  .deletion-steps li {
    grid-template-columns: 46px 1fr;
  }

  .deletion-steps > li > span {
    font-size: 34px;
  }

  .email-fallback {
    padding: 24px;
  }

  .response-note,
  .contact-safety {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-main {
    padding-block: 70px 100px;
  }

  .contact-card > .feature-kicker,
  .contact-card > h2,
  .contact-card > .contact-footnote {
    margin-inline: 22px;
  }

  .contact-links a {
    padding-inline: 22px;
  }
}

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

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