:root {
  --midnight: #18223f;
  --panel: #101831;
  --signal: #3553a4;
  --signal-dark: #263f89;
  --turn: #70e1f5;
  --periwinkle: #7b8cff;
  --ink: #17203a;
  --muted: #5e6880;
  --soft: #edf2ff;
  --wash: #f7f9ff;
  --paper: #ffffff;
  --line: #dce3f1;
  --success: #177a45;
  --shadow-sm: 0 14px 38px rgba(24, 34, 63, 0.09);
  --shadow-lg: 0 30px 80px rgba(24, 34, 63, 0.17);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: var(--signal-dark);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--signal);
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--signal-dark);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--midnight);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 241, 0.86);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 10px;
  text-decoration: none;
}

.brand-link img {
  width: 174px;
  height: auto;
}

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

.site-nav a {
  color: #38425a;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

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

.nav-download {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--midnight);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(24, 34, 63, 0.16);
}

.nav-download:hover {
  background: var(--signal-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--midnight);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 88% 15%, rgba(112, 225, 245, 0.22), transparent 26%),
    radial-gradient(circle at 68% 80%, rgba(123, 140, 255, 0.17), transparent 34%),
    linear-gradient(180deg, #fbfcff 0%, #f3f6ff 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: -360px;
  right: -240px;
  width: 620px;
  height: 620px;
  border: 90px solid rgba(53, 83, 164, 0.06);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(24deg);
}

.hero::after {
  bottom: -90px;
  left: -80px;
  width: 230px;
  height: 230px;
  border: 46px solid rgba(112, 225, 245, 0.14);
  border-right-color: transparent;
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(460px, 1.13fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--signal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--turn);
  content: "";
}

.hero h1,
.section-heading,
.legal-hero h1 {
  margin: 0;
  color: var(--midnight);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.15rem, 6vw, 5.75rem);
}

.hero h1 .turn-word {
  position: relative;
  display: inline-block;
  color: var(--signal);
}

.hero h1 .turn-word::after {
  position: absolute;
  right: 0.02em;
  bottom: -0.06em;
  left: 0.02em;
  height: 0.09em;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--turn), var(--periwinkle));
  content: "";
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: #4f5b74;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 16px 30px rgba(53, 83, 164, 0.24);
}

.button-primary:hover {
  background: var(--signal-dark);
  color: #fff;
  box-shadow: 0 20px 36px rgba(53, 83, 164, 0.3);
}

.button-secondary {
  border-color: #cbd5e8;
  background: rgba(255, 255, 255, 0.7);
  color: var(--midnight);
}

.button-secondary:hover {
  border-color: #aebbd4;
  background: #fff;
  color: var(--midnight);
}

.ms-glyph {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.ms-glyph i {
  background: currentColor;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--turn);
  box-shadow: 0 0 0 3px rgba(112, 225, 245, 0.2);
  content: "";
}

.hero-visual {
  position: relative;
  padding: 32px 0 28px;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.hero-visual::before {
  top: -10px;
  right: -5px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(112, 225, 245, 0.34);
  border-bottom-color: transparent;
  transform: rotate(18deg);
}

.hero-visual::after {
  bottom: 0;
  left: -22px;
  width: 120px;
  height: 120px;
  border: 20px solid rgba(123, 140, 255, 0.25);
  border-top-color: transparent;
  transform: rotate(-22deg);
}

.app-frame {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.app-frame::before {
  display: block;
  height: 28px;
  border-radius: 16px 16px 6px 6px;
  background:
    radial-gradient(circle at 18px 14px, #ff6b6b 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 14px, #ffd166 0 4px, transparent 4.5px),
    radial-gradient(circle at 50px 14px, #3ddc97 0 4px, transparent 4.5px),
    #edf1f8;
  content: "";
}

.app-frame img {
  width: 100%;
  border: 1px solid rgba(16, 24, 49, 0.12);
  border-radius: 8px 8px 17px 17px;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  bottom: 4px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--midnight);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 760;
}

.floating-chip .check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #e1f7ea;
  color: var(--success);
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr 1fr;
  align-items: stretch;
}

.proof-item {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--soft);
  color: var(--signal);
  font-size: 1.15rem;
  font-weight: 800;
}

.proof-item strong {
  display: block;
  color: var(--midnight);
  font-size: 0.95rem;
  line-height: 1.25;
}

.proof-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  padding: clamp(84px, 10vw, 132px) 0;
}

.section-soft {
  background: var(--wash);
}

.section-heading {
  max-width: 800px;
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
}

.section-heading.small {
  font-size: clamp(2.1rem, 3.7vw, 3.45rem);
}

.section-intro {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header.center .section-intro {
  margin-inline: auto;
}

.workflow-card {
  overflow: hidden;
  margin-top: 52px;
  border: 1px solid #cdd8ed;
  border-radius: var(--radius-lg);
  background: var(--midnight);
  box-shadow: var(--shadow-lg);
}

.workflow-card img {
  width: 100%;
  height: auto;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 28px 30px 30px;
  background: var(--midnight);
  color: #fff;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(112, 225, 245, 0.55);
  border-radius: 50%;
  color: var(--turn);
  font-size: 0.8rem;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 1px 0 6px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.workflow-step p {
  margin: 0;
  color: #b9c3dd;
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 34, 63, 0.055);
}

.feature-card::after {
  position: absolute;
  right: -48px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border: 18px solid rgba(112, 225, 245, 0.12);
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
}

.feature-card:nth-child(2n)::after {
  border-color: rgba(123, 140, 255, 0.11);
  border-right-color: transparent;
}

.feature-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--soft);
  color: var(--signal);
  font-size: 1.35rem;
  font-weight: 800;
}

.feature-card h3 {
  margin: 25px 0 10px;
  color: var(--midnight);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.media-grid.reverse {
  grid-template-columns: minmax(500px, 1.1fr) minmax(0, 0.9fr);
}

.media-grid.reverse .media-copy {
  order: 2;
}

.media-copy h2 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.media-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.plain-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 30px;
  color: #3f4a63;
}

.plain-list li::before {
  position: absolute;
  top: 0.68em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--turn);
  box-shadow: 0 0 0 4px rgba(112, 225, 245, 0.18);
  content: "";
}

.media-card {
  position: relative;
}

.media-card::before {
  position: absolute;
  z-index: 0;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(112, 225, 245, 0.48), rgba(123, 140, 255, 0.34));
  content: "";
}

.screenshot-button {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(24, 34, 63, 0.13);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
  transition: transform 180ms ease;
}

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

.screenshot-button img {
  width: 100%;
  border-radius: 17px;
}

.zoom-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 7px 11px;
  border-radius: 10px;
  background: rgba(16, 24, 49, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.video-wrap {
  overflow: hidden;
  margin-top: 52px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--panel);
}

.video-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 26px;
}

.truth-band {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
  color: #fff;
}

.truth-band::before {
  position: absolute;
  top: -170px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 68px solid rgba(112, 225, 245, 0.1);
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
}

.truth-band .section-heading {
  color: #fff;
}

.truth-band .section-intro {
  color: #c4cde2;
}

.limits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.limit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.limit-card .limit-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(112, 225, 245, 0.34);
  border-radius: 50%;
  color: var(--turn);
  font-size: 0.84rem;
  font-weight: 800;
}

.limit-card h3 {
  margin: 1px 0 7px;
  font-size: 1.05rem;
}

.limit-card p {
  margin: 0;
  color: #bdc7df;
  font-size: 0.93rem;
}

.formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.format-pill {
  padding: 8px 13px;
  border: 1px solid rgba(112, 225, 245, 0.24);
  border-radius: 999px;
  background: rgba(112, 225, 245, 0.08);
  color: #e8fbff;
  font-size: 0.82rem;
  font-weight: 750;
}

.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--midnight);
  font-size: 1.08rem;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--signal);
  content: "+";
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 26px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.cta-section {
  padding: 48px 0 92px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 38px;
  padding: clamp(42px, 6vw, 74px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(112, 225, 245, 0.22), transparent 25%),
    linear-gradient(135deg, var(--midnight), #263b76);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 380px;
  height: 380px;
  border: 55px solid rgba(123, 140, 255, 0.16);
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
}

.cta-card h2 {
  position: relative;
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.cta-card p {
  position: relative;
  max-width: 610px;
  margin: 18px 0 0;
  color: #c8d1e8;
}

.cta-card .button-primary {
  position: relative;
  flex: 0 0 auto;
  background: var(--turn);
  color: var(--panel);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.19);
}

.cta-card .button-primary:hover {
  background: #a0effc;
  color: var(--panel);
}

.site-footer {
  padding: 48px 0 24px;
  background: #0c1328;
  color: #b7c0d7;
}

.site-footer.compact {
  padding-top: 30px;
}

.site-footer.compact .footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #9ca8c2;
  font-size: 0.94rem;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #b7c0d7;
  font-size: 0.93rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--turn);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8591aa;
  font-size: 0.84rem;
}

.footer-bottom a {
  color: #aeb8ce;
}

.lightbox {
  width: min(94vw, 1420px);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}

.lightbox::backdrop {
  background: rgba(10, 16, 35, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox-figure {
  margin: 0;
  padding: 10px;
}

.lightbox-figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox-caption {
  padding: 12px 56px 10px 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(16, 24, 49, 0.88);
  color: #fff;
  cursor: pointer;
}

.legal-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(112, 225, 245, 0.2), transparent 24%),
    var(--wash);
}

.legal-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.legal-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.updated {
  display: inline-flex;
  margin-top: 26px;
  padding: 8px 12px;
  border: 1px solid #d1dcf0;
  border-radius: 999px;
  background: #fff;
  color: #4f5b74;
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  justify-content: center;
  gap: clamp(50px, 8vw, 100px);
  padding: 74px 0 110px;
}

.legal-nav {
  position: sticky;
  top: 112px;
  align-self: start;
}

.legal-nav h2 {
  margin: 0 0 15px;
  color: var(--midnight);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.legal-content {
  min-width: 0;
}

.legal-summary {
  margin-bottom: 50px;
  padding: 26px 28px;
  border: 1px solid #cbdcf2;
  border-left: 5px solid var(--turn);
  border-radius: 0 18px 18px 0;
  background: #f4fbff;
  color: #34415d;
}

.legal-summary strong {
  color: var(--midnight);
}

.legal-section {
  margin-top: 52px;
  scroll-margin-top: 110px;
}

.legal-section:first-of-type {
  margin-top: 0;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: var(--midnight);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-section h3 {
  margin: 30px 0 12px;
  color: var(--midnight);
  font-size: 1.15rem;
}

.legal-section p,
.legal-section li {
  color: #4f5a70;
}

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

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
}

.legal-section a {
  overflow-wrap: anywhere;
}

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--soft);
  color: var(--midnight);
  font-weight: 750;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.changelog-main {
  display: grid;
  min-height: calc(100vh - 76px - 278px);
  place-items: center;
  padding: 80px 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(112, 225, 245, 0.13), transparent 34%),
    var(--wash);
}

.release-line {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  text-align: center;
}

.release-line span {
  color: var(--signal);
}

.not-found {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 60px 20px;
  background: var(--wash);
  text-align: center;
}

.not-found img {
  width: 82px;
  margin: 0 auto 26px;
}

.not-found h1 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.05em;
}

.not-found p {
  margin: 14px 0 28px;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .hero-grid,
  .media-grid,
  .media-grid.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 74px;
  }

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

  .hero-visual {
    width: min(100%, 820px);
    margin-inline: auto;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(3) {
    padding-left: 0;
  }

  .media-grid.reverse .media-copy {
    order: initial;
  }

  .media-grid.reverse .media-card {
    order: 2;
  }

  .media-card {
    width: min(100%, 860px);
    margin-inline: auto;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 24px 50px rgba(24, 34, 63, 0.14);
  }

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

  .site-nav > a {
    padding: 13px 8px;
    border-bottom: 1px solid #edf0f7;
  }

  .site-nav .nav-download {
    justify-content: center;
    margin-top: 18px;
    padding-inline: 18px;
    border-bottom: 0;
  }

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

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

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

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

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

  .legal-nav {
    position: static;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--wash);
  }

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

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-link img {
    width: 150px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .hero {
    padding: 58px 0 52px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

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

  .floating-chip {
    position: relative;
    bottom: auto;
    left: auto;
    width: fit-content;
    margin: 15px auto 0;
  }

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

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .workflow-card {
    margin-top: 38px;
    border-radius: 22px;
  }

  .workflow-step {
    padding: 22px;
  }

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

  .media-card::before {
    top: -10px;
    right: -8px;
    bottom: 10px;
    left: 8px;
  }

  .video-wrap {
    padding: 5px;
    border-radius: 22px;
  }

  .video-placeholder iframe {
    border-radius: 17px;
  }

  .cta-section {
    padding-bottom: 66px;
  }

  .cta-card {
    padding: 36px 25px;
    border-radius: 24px;
  }

  .cta-card .button {
    width: 100%;
  }

  .footer-grid,
  .legal-nav ol {
    grid-template-columns: 1fr;
  }

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

  .legal-hero {
    padding: 58px 0 48px;
  }

  .legal-layout {
    padding: 52px 0 78px;
  }

  .legal-summary {
    padding: 22px;
  }

  .lightbox {
    width: 96vw;
    border-radius: 16px;
  }
}

@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;
  }
}

@media (forced-colors: active) {
  .button,
  .nav-download,
  .menu-toggle,
  .feature-card,
  .workflow-card,
  .limit-card,
  .cta-card,
  .legal-summary {
    border: 1px solid ButtonText;
  }

  .hero h1 .turn-word::after,
  .hero::before,
  .hero::after,
  .hero-visual::before,
  .hero-visual::after,
  .feature-card::after,
  .truth-band::before,
  .cta-card::before {
    display: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-nav,
  .cta-section {
    display: none;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .legal-hero,
  .section-soft {
    background: #fff;
  }

  .legal-layout {
    display: block;
    padding: 30px 0;
  }

  a {
    color: #000;
  }
}
