:root {
  --bg: #0d2835;
  --bg-soft: #123444;
  --card: #355a70;
  --card-deep: #24495e;
  --text: #f8fbfd;
  --muted: #a8bbc7;
  --cyan: #18d4ef;
  --blue: #35a9ff;
  --orange: #ff6421;
  --orange-soft: #ff9c48;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.27);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 212, 239, 0.12), transparent 31rem),
    radial-gradient(circle at 88% 28%, rgba(255, 100, 33, 0.12), transparent 34rem),
    linear-gradient(180deg, #0b2532 0%, var(--bg) 52%, #0a222e 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: relative;
  z-index: 5;
  background: rgba(9, 34, 46, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand-bar {
  min-height: 76px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
  box-shadow: 0 10px 26px rgba(24, 212, 239, 0.22);
}

.brand-mark::before {
  content: "✦";
  color: #073146;
  font-size: 20px;
}

.footer-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 212, 239, 0.52);
  background: rgba(24, 212, 239, 0.07);
}

.button-primary {
  border: 0;
  color: #06273a;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 34px rgba(20, 180, 240, 0.22);
}

.button-primary:hover {
  background: linear-gradient(90deg, #31e3f8, #5cb8ff);
}

.button-orange {
  border: 0;
  color: #321207;
  background: linear-gradient(90deg, var(--orange-soft), var(--orange));
}

.hero {
  padding: 96px 0 70px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 212, 239, 0.26);
  background: rgba(24, 212, 239, 0.06);
  color: #9ceefa;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  font-size: 0.5em;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #bfe8f3;
}

.hero p {
  max-width: 700px;
  margin: 28px 0 0;
  color: #c3d2db;
  font-size: 1.12rem;
}

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

.hero-card {
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(53, 90, 112, 0.98), rgba(32, 72, 92, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.storage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.storage-copy h2 {
  margin: 0 0 8px;
  font-size: 1.65rem;
}

.storage-copy p {
  margin: 5px 0;
  color: #cfdae0;
  font-size: 0.98rem;
}

.storage-copy strong {
  color: var(--orange-soft);
}

.ring {
  flex: 0 0 126px;
  width: 126px;
  height: 126px;
  padding: 13px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 73%, #ffc260 73% 98%, rgba(255,255,255,.1) 98% 100%);
}

.ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--card);
  font-size: 1.7rem;
  font-weight: 900;
}

.smart-clean-bar {
  margin-top: 25px;
  padding: 17px 20px;
  text-align: center;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: linear-gradient(180deg, #27e1ed 0%, #27b6f2 55%, #318ef5 100%);
}

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

.mini-card {
  padding: 17px;
  border-radius: 20px;
  background: rgba(9, 40, 55, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card b {
  display: block;
  margin-bottom: 5px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

section {
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 35px;
}

.kicker {
  margin: 0 0 12px;
  color: #74e5f4;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 18px 0 0;
  color: #afc2cc;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.screenshot-card {
  display: flex;
  justify-content: center;
  padding: 28px;
  border-radius: 34px;
  background: rgba(53, 90, 112, 0.43);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.screenshot-card img {
  display: block;
  width: 470px;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.support-card,
.legal-card,
.note-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(53, 90, 112, 0.78), rgba(33, 72, 91, 0.78));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.feature-card {
  padding: 29px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  margin-bottom: 24px;
  color: #082e3f;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(145deg, #ffc267, var(--orange));
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
}

.feature-card p {
  margin: 0;
  color: #b9cad3;
}

.support-card {
  padding: clamp(28px, 6vw, 55px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 100, 33, 0.16), transparent 19rem),
    linear-gradient(145deg, rgba(53, 90, 112, 0.9), rgba(28, 67, 86, 0.9));
}

.support-card h2 {
  margin: 0 0 13px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
}

.support-card p {
  margin: 0;
  max-width: 720px;
  color: #c1d0d8;
}

.email-link {
  white-space: nowrap;
}

.site-footer {
  padding: 26px 0 48px;
  border-top: 1px solid var(--line);
  color: #93aab6;
}

.footer-stack {
  display: grid;
  gap: 22px;
}

.footer-nav-card {
  padding: clamp(24px, 5vw, 42px);
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 212, 239, 0.10), transparent 20rem),
    linear-gradient(145deg, rgba(43, 81, 101, 0.78), rgba(24, 57, 74, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-nav-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}

.footer-nav-copy p:last-child {
  max-width: 590px;
  margin: 10px 0 0;
  color: #aebfc8;
}

.footer-buttons {
  justify-content: flex-end;
  max-width: 460px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 4px;
  font-size: 0.92rem;
}

/* Legal pages */
.legal-hero {
  padding: 86px 0 52px;
  max-width: 980px;
}

.legal-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.legal-hero p {
  max-width: 820px;
  color: #b7c9d2;
  font-size: 1.08rem;
}

.meta {
  display: inline-flex;
  margin-top: 17px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #a9dce7;
  border: 1px solid rgba(24, 212, 239, 0.2);
  background: rgba(24, 212, 239, 0.05);
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 80px;
}

.toc {
  position: sticky;
  top: 24px;
  padding: 21px;
  border-radius: 22px;
  background: rgba(35, 75, 95, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toc strong {
  display: block;
  margin-bottom: 12px;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: #adc0ca;
  text-decoration: none;
  font-size: 0.91rem;
}

.toc a:hover {
  color: #fff;
}

.legal-card {
  padding: clamp(24px, 5vw, 48px);
}

.legal-card section {
  padding: 0;
  margin: 0 0 44px;
  scroll-margin-top: 28px;
}

.legal-card section:last-child {
  margin-bottom: 0;
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.legal-card h3 {
  margin: 24px 0 10px;
  font-size: 1.08rem;
}

.legal-card p,
.legal-card li {
  color: #c0d0d8;
}

.legal-card p {
  margin: 11px 0;
}

.legal-card ul {
  padding-left: 21px;
}

.legal-card li {
  margin: 8px 0;
}

.legal-card strong {
  color: #f7fbfd;
}

.legal-card a {
  color: #65dcf1;
}

.note-card {
  margin: 28px 0;
  padding: 22px 24px;
  border-color: rgba(255, 154, 70, 0.26);
  background: rgba(255, 105, 32, 0.07);
}

.note-card p {
  margin: 0;
  color: #f4d6c6;
}


.small-print {
  font-size: 0.9rem;
  color: #8da3af;
}

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

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

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

  .toc {
    position: static;
  }

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

  .footer-buttons {
    justify-content: flex-start;
    max-width: none;
  }
}

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

  .brand-bar {
    min-height: 68px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 17vw, 4.4rem);
  }

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

  .screenshot-card {
    padding: 16px;
  }

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

  .email-link {
    white-space: normal;
    width: 100%;
  }

  .storage-row {
    align-items: flex-start;
  }

  .ring {
    flex-basis: 100px;
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .ring-inner {
    font-size: 1.35rem;
  }

  .legal-card {
    border-radius: 22px;
  }

  .footer-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-buttons .button {
    width: 100%;
  }
}


/* ===== Redesigned landing page ===== */
.hero-new {
  padding: 86px 0 42px;
  overflow: hidden;
}

.hero-center {
  max-width: 980px;
  text-align: center;
}

.hero-center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-center h1 {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: .94;
  letter-spacing: -0.06em;
}

.hero-center h1 span {
  color: #a8dbe8;
}

.hero-lead {
  max-width: 760px;
  margin: 26px auto 0;
  color: #bed0d9;
  font-size: 1.14rem;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #bcd1da;
  font-size: .88rem;
  font-weight: 700;
}

.device-stage {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.device-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-shot img {
  display: block;
  width: 470px;
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(0,0,0,.34);
}

.device-shot-left {
  transform: translateY(-18px);
}

.device-shot-right {
  transform: translateY(42px);
}

.device-shot figcaption {
  width: min(100%, 470px);
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9cbd4;
  font-size: .92rem;
}

.device-shot figcaption span {
  color: var(--cyan);
  font-weight: 900;
}

.stage-copy {
  align-self: center;
  color: #98afba;
  font-size: .92rem;
}

.stage-line {
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.tool-strip-section {
  padding: 76px 0 36px;
}

.tool-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tool-strip > div {
  min-height: 190px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.tool-strip > div:last-child {
  border-right: 0;
}

.tool-strip span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange-soft);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.tool-strip b {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.tool-strip p {
  margin: 0;
  color: #93aab5;
  font-size: .93rem;
}

.split-feature,
.vault-section {
  padding: 100px 0;
}

.split-feature {
  background: rgba(255,255,255,.018);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.split-grid,
.vault-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 74px;
  align-items: center;
}

.split-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.split-copy > p:not(.kicker) {
  margin: 20px 0 0;
  color: #aec1cb;
}

.cleaner-panel {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(57,95,117,.97), rgba(25,62,80,.96));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: var(--shadow);
}

.cleaner-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.panel-label {
  display: block;
  margin-bottom: 8px;
  color: #9db2bd;
  font-size: .9rem;
}

.cleaner-panel-top strong {
  display: block;
  color: var(--orange-soft);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1;
}

.cleaner-panel-top strong small {
  color: #c4d0d6;
  font-size: .43em;
  font-weight: 600;
}

.cleaner-lines {
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.cleaner-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: #b7c7cf;
}

.cleaner-lines b {
  color: white;
}

.vault-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.password-card {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24,212,239,.14), transparent 18rem),
    #173b4e;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.password-card-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #a8bcc6;
  font-size: .9rem;
}

.password-card-head b {
  color: #72e7f5;
}

.password-value {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(6,31,43,.55);
  border: 1px solid rgba(255,255,255,.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.4rem, 4vw, 2.35rem);
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

.password-meter {
  height: 6px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.password-meter i {
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.password-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.password-options span {
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: #acc1cb;
  font-size: .83rem;
}

.vault-note {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #9fb4be;
}

.steps-section {
  padding: 92px 0;
  background: rgba(0,0,0,.08);
}

.steps-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 76px;
  align-items: start;
}

.compact-heading {
  position: sticky;
  top: 28px;
  margin-bottom: 0;
}

.steps-list {
  border-top: 1px solid var(--line);
}

.steps-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24,212,239,.08);
  border: 1px solid rgba(24,212,239,.2);
  color: var(--cyan);
  font-weight: 900;
}

.steps-list h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.steps-list p {
  margin: 0;
  color: #9eb2bc;
}

.support-section {
  padding: 96px 0 80px;
}

.support-card-new {
  border-radius: 36px;
}

@media (max-width: 980px) {
  .device-stage {
    grid-template-columns: 1fr 1fr;
  }

  .stage-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 520px;
    margin: 0 auto 8px;
    text-align: center;
  }

  .stage-line {
    margin-left: auto;
    margin-right: auto;
  }

  .device-shot-left,
  .device-shot-right {
    transform: none;
  }

  .tool-strip {
    grid-template-columns: 1fr 1fr;
  }

  .tool-strip > div:nth-child(2) {
    border-right: 0;
  }

  .tool-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split-grid,
  .vault-grid,
  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .compact-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero-new {
    padding-top: 58px;
  }

  .hero-center h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .device-stage {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 46px;
  }

  .stage-copy {
    grid-column: auto;
  }

  .device-shot figcaption {
    justify-content: center;
  }

  .tool-strip {
    grid-template-columns: 1fr;
  }

  .tool-strip > div,
  .tool-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tool-strip > div:last-child {
    border-bottom: 0;
  }

  .split-feature,
  .vault-section,
  .steps-section {
    padding: 72px 0;
  }

  .cleaner-panel,
  .password-card {
    padding: 24px;
  }

  .cleaner-panel-top {
    align-items: flex-start;
  }
}


/* ===== Simple legal document layout ===== */
.legal-page {
  width: min(calc(100% - 40px), 1040px);
}

.legal-simple-header {
  max-width: 900px;
  padding: 82px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-label {
  margin: 0 0 14px;
  color: #75e5f4;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-simple-header h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-intro {
  max-width: 820px;
  margin: 24px 0 0;
  color: #b9cbd4;
  font-size: 1.08rem;
  line-height: 1.75;
}

.legal-date {
  margin: 20px 0 0;
  color: #829ba8;
  font-size: 0.92rem;
}

.legal-document-body {
  max-width: 900px;
  padding: 24px 0 88px;
}

.legal-document-body section {
  padding: 34px 0 38px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  scroll-margin-top: 24px;
}

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

.legal-document-body h2 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(1.28rem, 2.5vw, 1.65rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.legal-document-body h3 {
  margin: 24px 0 10px;
  font-size: 1.08rem;
}

.legal-document-body p,
.legal-document-body li {
  color: #b9cbd4;
}

.legal-document-body p {
  max-width: 860px;
  margin: 11px 0;
}

.legal-document-body ul {
  max-width: 820px;
  padding-left: 22px;
}

.legal-document-body li {
  margin: 8px 0;
}

.legal-document-body strong {
  color: #f6fbfd;
}

.legal-document-body a {
  color: #66ddef;
}

.legal-document-body .note-card {
  max-width: 860px;
  margin: 24px 0;
  border-radius: 16px;
  box-shadow: none;
}

@media (max-width: 680px) {
  .legal-page {
    width: min(calc(100% - 26px), 1040px);
  }

  .legal-simple-header {
    padding: 58px 0 34px;
  }

  .legal-document-body {
    padding-bottom: 64px;
  }

  .legal-document-body section {
    padding: 28px 0 31px;
  }
}
