:root {
  color-scheme: dark;
  --bg: #151311;
  --bg-deep: #100f0e;
  --surface: #1d1a17;
  --surface-raised: #25211d;
  --surface-soft: #2d2823;
  --text: #f7f5f2;
  --text-muted: #aaa39b;
  --text-faint: #77716a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --orange: #f6a817;
  --orange-bright: #ffbd38;
  --orange-deep: #8e5a00;
  --green: #4bd37b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: radial-gradient(
      circle at 71% 22%,
      rgba(246, 168, 23, 0.075),
      transparent 25rem
    ),
    linear-gradient(180deg, #171512 0%, var(--bg) 48%, var(--bg-deep) 100%);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #151311;
  background: #fff;
  border-radius: 6px;
  transform: translateY(-160%);
}

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

.page-shell {
  width: min(1440px, 100%);
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  padding: 0 clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 12px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 19px;
  border: 2px solid var(--orange);
  border-radius: 11px 11px 9px 9px;
  transform: skewX(-10deg);
}

.brand-mark::before {
  position: absolute;
  top: -7px;
  left: 7px;
  width: 12px;
  height: 10px;
  content: "";
  background: var(--bg);
  border: 2px solid var(--orange);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.text-link {
  transition: color 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease,
    border-color 180ms ease, color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.text-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(246, 168, 23, 0.45);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-light {
  color: #181614;
  background: #f6f5f2;
}

.button-light:hover {
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(520px, 1.13fr);
  min-height: 690px;
  padding: clamp(72px, 9vw, 124px) clamp(24px, 5vw, 72px) 76px;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  gap: 10px;
  color: #d9d3cd;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(75, 211, 123, 0.1);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h1 span {
  color: var(--orange-bright);
}

.hero-lede {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--text-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

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

.button-primary {
  color: #211500;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 12px 34px rgba(246, 168, 23, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffc852, #ffae19);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 0;
  gap: 11px 24px;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 18px;
}

.trust-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.product-stage {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.stage-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 75%;
  background: rgba(246, 168, 23, 0.16);
  border-radius: 50%;
  filter: blur(90px);
  transform: translate(-50%, -50%);
}

.panel-preview {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background: #181614;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotateY(-3deg) rotateX(1deg);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 28px;
  background: #1c1916;
  border-bottom: 1px solid var(--line);
}

.preview-kicker {
  margin: 0 0 5px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.preview-header h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.server-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8eec9;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.server-status span {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.preview-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 384px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 14px;
  gap: 18px;
  background: #12110f;
  border-right: 1px solid var(--line);
}

.preview-logo {
  width: 28px;
  height: 12px;
  margin-bottom: 8px;
  border: 2px solid var(--orange);
  border-radius: 8px;
}

.nav-line {
  width: 46px;
  height: 5px;
  background: #4a443d;
  border-radius: 5px;
}

.nav-line.short {
  width: 32px;
}

.nav-line.active {
  width: 58px;
  height: 28px;
  background: #f4f3ef;
  border-radius: 4px;
}

.nav-spacer {
  flex: 1;
}

.console-area {
  min-width: 0;
  padding: 24px;
}

.console-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #e8e4df;
  font-size: 12px;
  font-weight: 700;
}

.console-actions {
  display: flex;
  gap: 6px;
}

.console-actions i {
  width: 7px;
  height: 7px;
  background: #5f5851;
  border-radius: 50%;
}

.console-actions i:first-child {
  background: var(--orange);
}

.console-window {
  min-height: 224px;
  padding: 18px;
  overflow: hidden;
  color: #bdb8b2;
  background: #0f0e0d;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  line-height: 1.65;
}

.console-window p {
  margin: 0;
  white-space: nowrap;
}

.console-window b {
  color: #efebe6;
  font-weight: 650;
}

.console-window .console-accent,
.console-window .console-accent b {
  color: var(--orange-bright);
}

.command-line {
  display: block;
  margin-top: 24px;
  padding: 10px 12px;
  color: #5f5953;
  background: #191715;
  border-radius: 5px;
}

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

.stats-grid div {
  min-width: 0;
  padding: 11px 12px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.stats-grid dt {
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid dd {
  margin: 4px 0 0;
  overflow: hidden;
  color: #f4f1ed;
  font-size: 11px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 clamp(24px, 5vw, 72px) 72px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.spec-strip div {
  min-width: 0;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

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

.spec-strip strong,
.spec-strip span {
  display: block;
}

.spec-strip strong {
  margin-bottom: 6px;
  font-size: 14px;
}

.spec-strip span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.section,
.spec-strip {
  scroll-margin-top: 92px;
}

.section {
  padding: clamp(88px, 10vw, 144px) clamp(24px, 5vw, 72px);
}

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

.section h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p,
.centered-heading > p:last-child,
.plan-copy > p,
.premium-panel > div > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.centered-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 600px;
  margin: 22px auto 0;
}

.platform-section {
  position: relative;
}

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

.feature-card {
  position: relative;
  min-height: 244px;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.014)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  content: "";
  background: rgba(246, 168, 23, 0.06);
  border-radius: 50%;
  filter: blur(36px);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 504px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  margin-bottom: 44px;
  color: var(--orange-bright);
  background: rgba(246, 168, 23, 0.08);
  border: 1px solid rgba(246, 168, 23, 0.22);
  border-radius: 6px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
}

.feature-card > p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.mini-console {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  min-height: 224px;
  padding: 18px;
  color: #aaa49e;
  background: #100f0e;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.mini-console > div {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  gap: 8px;
  color: #a7eebd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mini-console > div i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.mini-console p {
  margin: 5px 0;
}

.mini-console b {
  color: #eeeae5;
}

.mini-console .mini-accent,
.mini-console .mini-accent b {
  color: var(--orange-bright);
}

.mini-console em {
  display: block;
  margin-top: 22px;
  padding: 10px 12px;
  color: #625c56;
  background: #1c1917;
  border-radius: 5px;
  font-style: normal;
}

.process-section {
  background: rgba(255, 255, 255, 0.012);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 260px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-grid li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  color: #1c1406;
  background: var(--orange);
  border-radius: 10px;
  font-weight: 850;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.plan-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  padding: clamp(28px, 5vw, 68px);
  gap: clamp(40px, 7vw, 96px);
  background: linear-gradient(125deg, rgba(246, 168, 23, 0.08), transparent 42%),
    var(--surface);
  border: 1px solid rgba(246, 168, 23, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.plan-copy > p {
  max-width: 720px;
  margin-top: 24px;
}

.check-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 15px;
  color: #d9d4cf;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.23em;
  left: 2px;
  width: 13px;
  height: 7px;
  content: "";
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  padding: 30px;
  background: #12110f;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}

.price-card > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card > strong {
  display: block;
  margin: 16px 0 4px;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-card > strong span {
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.price-card > small {
  margin-bottom: 28px;
  color: var(--text-faint);
}

.subtle-link {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 4px;
}

.subtle-link:hover {
  color: var(--text);
}

.premium-section {
  padding-top: 0;
  border-top: 0 !important;
}

.premium-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.44fr);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  gap: 60px;
  background: #efede8;
  border-radius: var(--radius-lg);
  color: #1b1917;
}

.premium-panel .section-kicker {
  color: #8e5a00;
}

.premium-panel > div > p {
  max-width: 720px;
  margin-top: 22px;
  color: #5f5a54;
}

.coming-soon {
  padding: 28px;
  background: #1b1917;
  border-radius: var(--radius-md);
  color: var(--text);
}

.coming-soon span,
.coming-soon strong,
.coming-soon small {
  display: block;
}

.coming-soon span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon strong {
  margin-top: 11px;
  font-size: 24px;
}

.coming-soon small {
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.55;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.safety-grid article {
  padding: 30px 30px 0 0;
  border-right: 1px solid var(--line);
}

.safety-grid article + article {
  padding-left: 30px;
}

.safety-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.safety-grid strong,
.safety-grid span {
  display: block;
}

.safety-grid strong {
  margin-bottom: 10px;
  font-size: 17px;
}

.safety-grid span {
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-section {
  background: rgba(255, 255, 255, 0.012);
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 26px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(246, 168, 23, 0.42);
  outline-offset: 4px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 340px;
  gap: 40px;
  background: radial-gradient(
      circle at 82% 50%,
      rgba(255, 190, 54, 0.2),
      transparent 20rem
    ),
    linear-gradient(135deg, #865600, #bf7d08 54%, #e39a13);
}

.final-cta .section-kicker {
  color: #2c1c00;
}

.final-cta h2 {
  max-width: 760px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 64px clamp(24px, 5vw, 72px) 34px;
  gap: 56px;
  background: #0f0e0d;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-mark::before {
  background: #0f0e0d;
}

.site-footer > div:first-child > p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 64px;
}

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

.footer-links strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 24px;
  color: #625d57;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.legal-page {
  background: var(--bg-deep);
}

.legal-page .page-shell {
  background: radial-gradient(
      circle at 78% 5%,
      rgba(246, 168, 23, 0.07),
      transparent 28rem
    ),
    var(--bg);
}

.legal-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(24px, 5vw, 72px) 120px;
  gap: clamp(40px, 8vw, 96px);
}

.legal-nav {
  position: sticky;
  top: 30px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.legal-nav strong {
  margin-bottom: 10px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 10px 12px;
  color: var(--text-muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 650;
}

.legal-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.legal-nav a[aria-current="page"] {
  color: #171513;
  background: #f5f3ef;
}

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

.legal-content > header {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(46px, 6vw, 72px);
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}

.legal-intro {
  margin: 30px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-content article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content article h2 {
  margin: 0 0 16px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.legal-content article h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.legal-content article p,
.legal-content article li {
  color: #bab4ad;
  line-height: 1.75;
}

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

.legal-content article ul {
  display: grid;
  margin: 16px 0 0;
  padding-left: 20px;
  gap: 8px;
}

.legal-content article a {
  color: var(--orange-bright);
  text-decoration: underline;
  text-decoration-color: rgba(246, 168, 23, 0.4);
  text-underline-offset: 3px;
}

.legal-note {
  padding: 18px 20px;
  color: #d9d4ce !important;
  background: rgba(246, 168, 23, 0.07);
  border: 1px solid rgba(246, 168, 23, 0.18);
  border-radius: 8px;
}

.error-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 34px 0 clamp(70px, 12vh, 140px);
}

.error-page > div {
  max-width: 780px;
}

.error-page h1 {
  font-size: clamp(54px, 9vw, 108px);
}

.error-page > div > p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

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

  .product-stage {
    width: min(760px, 100%);
  }

  .panel-preview {
    transform: none;
  }

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

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

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

  .split-heading,
  .plan-card,
  .premium-panel {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 24px;
  }

  .split-heading > p {
    max-width: 700px;
  }

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

  .feature-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .premium-panel {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

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

  .brand-mark {
    width: 25px;
    height: 16px;
  }

  .text-link {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding: 64px 18px 48px;
    gap: 54px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lede {
    font-size: 17px;
  }

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

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

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .preview-header {
    min-height: 74px;
    padding-inline: 18px;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .console-area {
    padding: 16px;
  }

  .console-window {
    min-height: 208px;
    font-size: 9px;
  }

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

  .spec-strip {
    grid-template-columns: 1fr;
    margin: 0 18px 48px;
  }

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

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

  .section {
    padding: 76px 18px;
  }

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

  .section h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .split-heading,
  .feature-grid,
  .process-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large {
    min-height: auto;
    padding: 24px;
  }

  .feature-card-large {
    padding-bottom: 310px;
  }

  .feature-index {
    margin-bottom: 30px;
  }

  .mini-console {
    right: 20px;
    bottom: 20px;
    left: 20px;
    min-height: 240px;
    overflow: hidden;
    font-size: 9px;
  }

  .process-grid li {
    min-height: 220px;
    padding: 24px;
  }

  .process-grid li > span {
    margin-bottom: 42px;
  }

  .plan-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .plan-card {
    padding: 28px 20px 20px;
  }

  .price-card {
    min-height: 310px;
    padding: 24px;
  }

  .premium-section {
    padding-top: 0;
  }

  .premium-panel {
    padding: 34px 22px 22px;
    gap: 30px;
  }

  .safety-grid {
    border-top: 0;
  }

  .safety-grid article,
  .safety-grid article + article {
    padding: 24px 0;
    border-top: 1px solid var(--line-strong);
    border-right: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding: 50px 18px 28px;
    gap: 44px;
  }

  .footer-links {
    gap: 30px;
  }

  .legal-main {
    grid-template-columns: 1fr;
    padding: 54px 18px 90px;
    gap: 36px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }

  .legal-nav a {
    padding: 10px 6px;
    text-align: center;
  }
}

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

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