:root {
  --black: #000000;
  --red: #e31b23;
  --red-bright: #ee2c2c;
  --surface: #111113;
  --surface-raised: #1b1b1e;
  --line: rgba(255, 255, 255, 0.1);
  --muted: #a8a8af;
  --white: #ffffff;
  --page: min(1240px, calc(100% - 48px));
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(227, 27, 35, 0.11), transparent 24rem),
    var(--black);
  color: var(--white);
}

body::selection {
  color: var(--white);
  background: var(--red);
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 10, 11, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand b {
  color: var(--red-bright);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-navigation a {
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation a.active {
  background: rgba(227, 27, 35, 0.11);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 13px;
  background: var(--surface-raised);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(510px, 1.14fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  width: var(--page);
  min-height: 940px;
  margin: 0 auto;
  padding: 150px 0 70px;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: 8%;
  right: -18%;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.15), rgba(227, 27, 35, 0.025) 48%, transparent 70%);
  filter: blur(8px);
}

.hero-route {
  position: absolute;
  z-index: -1;
  top: 24%;
  right: 4%;
  width: 46%;
  height: 48%;
  transform: rotate(-25deg);
  border-top: 2px dashed rgba(227, 27, 35, 0.2);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 40px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h1 {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(4rem, 6.8vw, 7.15rem);
}

h2 {
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
}

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

.hero-copy > p {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: 0.94rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--red);
  box-shadow: 0 15px 40px rgba(227, 27, 35, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-bright);
}

.button-primary span {
  font-size: 1.35em;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(227, 27, 35, 0.45);
  color: var(--white);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 34px 0 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-list span {
  margin-right: 5px;
  color: var(--red-bright);
}

.phone-stage {
  position: relative;
  min-height: 690px;
}

.phone {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid #242427;
  border-radius: 54px;
  background: var(--black);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.66),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-island {
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 50%;
  width: 32%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.phone-main {
  z-index: 4;
  top: 10px;
  left: 50%;
  width: 306px;
  height: 665px;
  transform: translateX(-50%) rotate(1deg);
  border-color: #303034;
}

.phone-left,
.phone-right {
  z-index: 2;
  top: 105px;
  width: 230px;
  height: 500px;
  border-width: 6px;
  border-radius: 42px;
  filter: saturate(0.9) brightness(0.7);
}

.phone-left {
  left: 2%;
  transform: rotate(-10deg);
}

.phone-right {
  right: 2%;
  transform: rotate(10deg);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(227, 27, 35, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
}

.orbit-one {
  width: 670px;
  height: 460px;
}

.orbit-two {
  width: 530px;
  height: 530px;
  border-style: dashed;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px 32px;
  background: rgba(17, 17, 19, 0.94);
}

.hero-stats strong {
  color: var(--red-bright);
  font-size: 2rem;
  font-weight: 950;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

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

.section-heading p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(227, 27, 35, 0.035), transparent 46%),
    var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 27, 35, 0.46);
  background:
    linear-gradient(145deg, rgba(227, 27, 35, 0.1), transparent 52%),
    var(--surface);
}

.area-card-wide {
  grid-column: span 2;
}

.area-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.area-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 16px;
  background: rgba(227, 27, 35, 0.1);
  color: var(--red-bright);
  font-size: 1.25rem;
  font-weight: 900;
}

.area-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.area-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.learning {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9%;
  min-height: 920px;
}

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

.learning-ring {
  position: absolute;
  border: 1px solid rgba(227, 27, 35, 0.14);
  border-radius: 50%;
}

.ring-a {
  width: 590px;
  height: 590px;
}

.ring-b {
  width: 450px;
  height: 450px;
  border-style: dashed;
}

.single-phone {
  position: relative;
  z-index: 2;
  width: 290px;
  height: 630px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #303034;
  border-radius: 52px;
  background: var(--black);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.7);
}

.single-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 136px;
  padding: 14px 18px;
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 16px;
  background: rgba(27, 27, 30, 0.93);
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
}

.floating-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--red-bright);
  font-size: 1.3rem;
}

.note-top {
  top: 22%;
  right: 1%;
}

.note-bottom {
  bottom: 20%;
  left: 0;
}

.learning-copy h2 {
  margin: 24px 0 52px;
}

.learning-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.learning-step > b {
  padding-top: 3px;
  color: var(--red-bright);
  font-size: 0.78rem;
}

.learning-step h3 {
  margin: 0;
  font-size: 1.15rem;
}

.learning-step p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 1fr;
  align-items: center;
  gap: 7%;
  padding: 75px;
  overflow: hidden;
  border: 1px solid rgba(227, 27, 35, 0.28);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 50%, rgba(227, 27, 35, 0.17), transparent 28%),
    linear-gradient(130deg, #141416, #090909);
}

.privacy-mark {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 220px;
  border: 1px solid rgba(227, 27, 35, 0.35);
  border-radius: 50%;
  background: rgba(227, 27, 35, 0.08);
  box-shadow:
    inset 0 0 0 32px rgba(227, 27, 35, 0.025),
    0 0 70px rgba(227, 27, 35, 0.09);
}

.privacy-mark::before,
.privacy-mark::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(227, 27, 35, 0.2);
  border-radius: 50%;
}

.privacy-mark::before {
  inset: -24px;
}

.privacy-mark::after {
  inset: 23px;
}

.privacy-mark span {
  color: var(--red-bright);
  font-size: 4.5rem;
}

.privacy-copy h2 {
  margin: 23px 0;
  font-size: clamp(3rem, 4.7vw, 5.1rem);
}

.privacy-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.privacy-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.text-link {
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.privacy-facts {
  display: grid;
  gap: 10px;
}

.privacy-facts div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.privacy-facts span {
  color: var(--red-bright);
  font-size: 0.67rem;
  font-weight: 900;
}

.privacy-facts strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.disclaimer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 10%;
}

.disclaimer h2 {
  margin-top: 24px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.disclaimer > p {
  padding: 28px 0 3px;
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: 100px 24px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 70%, rgba(227, 27, 35, 0.17), transparent 34%),
    linear-gradient(var(--black), #080000);
}

.final-cta::before {
  position: absolute;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(227, 27, 35, 0.13);
  border-radius: 50%;
  content: "";
}

.final-cta h2 {
  position: relative;
  margin-top: 24px;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.final-cta p {
  position: relative;
  max-width: 620px;
  margin: 28px auto 34px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.eyebrow-center {
  position: relative;
  justify-content: center;
}

.final-plane {
  position: absolute;
  top: 15%;
  left: 56%;
  color: var(--red);
  font-size: 6rem;
  transform: rotate(-22deg);
  filter: drop-shadow(0 0 35px rgba(227, 27, 35, 0.25));
}

.coming-badge {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 24px;
  border: 1px solid rgba(227, 27, 35, 0.38);
  border-radius: 999px;
  background: rgba(227, 27, 35, 0.08);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: var(--page);
  min-height: 130px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.brand-footer {
  font-size: 0.78rem;
}

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

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: #6e6e75;
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-main {
  width: var(--page);
  margin: 0 auto;
  padding: 185px 0 100px;
}

.legal-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  column-gap: 9%;
  align-items: end;
  padding: 65px 0 90px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .eyebrow,
.legal-hero h1 {
  grid-column: 1;
}

.legal-hero h1 {
  margin-top: 25px;
}

.legal-lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.legal-meta {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 23px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-meta span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-meta strong {
  font-size: 0.9rem;
}

.legal-document {
  width: min(960px, 100%);
  margin: 65px auto 0;
}

.legal-document section {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.legal-number {
  padding-top: 5px;
  color: var(--red-bright);
  font-size: 0.75rem;
  font-weight: 900;
}

.legal-document h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-document p,
.legal-document li {
  color: #b9b9bf;
  line-height: 1.8;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  padding-left: 20px;
  margin: 8px 0 18px;
}

.legal-document address {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.legal-document address strong,
.legal-document address a {
  color: var(--white);
}

.legal-disclaimer {
  width: min(960px, 100%);
  padding: 30px;
  margin: 60px auto 0;
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 22px;
  background: rgba(227, 27, 35, 0.07);
}

.legal-disclaimer strong {
  color: var(--red-bright);
}

.legal-disclaimer p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-footer {
  margin-top: 30px;
}

.support-hero {
  padding-bottom: 65px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.support-card {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
}

.support-card > span {
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 900;
}

.support-card h2 {
  margin: 40px 0 15px;
  font-size: 1.5rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.support-card p,
.support-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.support-contact {
  border-color: rgba(227, 27, 35, 0.35);
  background:
    linear-gradient(145deg, rgba(227, 27, 35, 0.12), transparent 48%),
    var(--surface);
}

.support-contact .button {
  margin-top: 26px;
}

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .phone-stage {
    width: min(760px, 100%);
    margin: 25px auto 0;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-panel {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .privacy-facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }
}

@media (max-width: 850px) {
  :root {
    --page: min(100% - 32px, 720px);
  }

  .site-header {
    top: 10px;
  }

  .menu-button {
    display: block;
  }

  .site-navigation:not(.legal-navigation) {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12, 12, 13, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation:not(.legal-navigation) a {
    padding: 14px;
  }

  .legal-navigation a {
    padding: 10px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-stats div {
    min-height: 84px;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .learning {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .learning-visual {
    order: 2;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    padding: 52px 38px;
  }

  .privacy-mark {
    max-width: 160px;
  }

  .privacy-facts {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .disclaimer {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 35px 0;
    text-align: center;
  }

  .site-footer > p {
    justify-self: center;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-lead,
  .legal-meta {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (max-width: 580px) {
  :root {
    --page: calc(100% - 24px);
  }

  .site-header {
    min-height: 62px;
    border-radius: 18px;
  }

  .brand {
    gap: 9px;
    font-size: 0.74rem;
  }

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

  .legal-navigation a {
    padding: 8px 5px;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 135px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 12px;
    font-size: 0.72rem;
  }

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

  .phone-main {
    width: 250px;
    height: 543px;
    border-width: 6px;
    border-radius: 44px;
  }

  .phone-left,
  .phone-right {
    top: 90px;
    width: 180px;
    height: 391px;
  }

  .phone-left {
    left: -20%;
  }

  .phone-right {
    right: -20%;
  }

  .orbit-one {
    width: 480px;
    height: 350px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

  .hero-stats div {
    padding: 18px 22px;
  }

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

  .area-card-wide {
    grid-column: span 1;
  }

  .area-card {
    min-height: 235px;
  }

  .learning-visual {
    min-height: 590px;
  }

  .single-phone {
    width: 245px;
    height: 532px;
    border-width: 6px;
    border-radius: 44px;
  }

  .ring-a {
    width: 390px;
    height: 390px;
  }

  .ring-b {
    width: 310px;
    height: 310px;
  }

  .floating-note {
    min-width: 120px;
  }

  .note-top {
    right: -2%;
  }

  .privacy-panel {
    padding: 42px 24px;
    border-radius: 28px;
  }

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

  .text-link {
    text-align: center;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-plane {
    top: 14%;
    font-size: 4rem;
  }

  .legal-main {
    padding-top: 140px;
  }

  .legal-hero {
    padding: 45px 0 60px;
  }

  .legal-hero h1 {
    font-size: clamp(3.8rem, 19vw, 5.2rem);
  }

  .legal-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-document section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }

  .support-card {
    padding: 26px;
  }
}

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

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

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