:root {
  color-scheme: dark;
  --bg: #120506;
  --bg-deep: #070304;
  --surface: rgba(29, 12, 12, 0.72);
  --surface-strong: rgba(37, 16, 16, 0.88);
  --line: rgba(255, 220, 182, 0.12);
  --line-strong: rgba(255, 220, 182, 0.2);
  --text: #fff4e6;
  --muted: rgba(255, 232, 204, 0.72);
  --accent: #ff9a4d;
  --accent-strong: #ffd38a;
  --accent-deep: #ff6d2d;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.34);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --shell: min(1200px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 129, 56, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 10%, rgba(255, 196, 106, 0.12), transparent 20rem),
    linear-gradient(180deg, #1b0708 0%, var(--bg) 26%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 82%);
  pointer-events: none;
  z-index: -2;
}

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

figure {
  margin: 0;
}

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

code {
  padding: 0.12rem 0.38rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 230, 0.9);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #1a0908;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
  z-index: -1;
}

.ambient-top {
  top: -10rem;
  left: 50%;
  width: 28rem;
  height: 20rem;
  transform: translateX(-50%);
  background: rgba(255, 136, 64, 0.28);
}

.ambient-left {
  top: 30rem;
  left: -9rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 96, 0, 0.16);
}

.ambient-right {
  top: 18rem;
  right: -10rem;
  width: 26rem;
  height: 26rem;
  background: rgba(255, 210, 128, 0.12);
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(12, 4, 5, 0.64);
  border-bottom: 1px solid rgba(255, 220, 182, 0.08);
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-lockup img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 210, 128, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.site-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  color: var(--muted);
  font-size: 0.96rem;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.footer-links a,
.text-link,
.inline-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--accent-strong);
  font-weight: 700;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover,
.inline-link:hover {
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent), var(--accent-strong));
  color: #1a0908;
  font-weight: 800;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  color: var(--muted);
}

.button-large {
  min-height: 3.3rem;
  padding-inline: 1.3rem;
}

.hero {
  padding: 3.5rem 0 2.4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: start;
}

.eyebrow,
.panel-label,
.showcase-number,
.footer-heading {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero h1,
.section-head h2,
.cta-panel h2,
.policy-hero h1,
.policy-section h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.hero-text,
.section-copy,
.showcase-copy p,
.detail-list li,
.signature-grid p,
.flow-list p,
.operator-points p,
.aside-list li,
.privacy-grid p,
.footer-copy,
.footer-meta,
.policy-copy,
.policy-list li,
.policy-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.cta-actions,
.operator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin: 1.8rem 0 1.4rem;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 240, 219, 0.82);
  font-size: 0.94rem;
}

.hero-stage {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  width: 100%;
  min-height: 36rem;
  padding: 2rem 0;
}

.hero-stage-glow {
  position: absolute;
  inset: 10% 6% auto;
  height: 62%;
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 199, 118, 0.42), transparent 32%),
    radial-gradient(circle at 72% 28%, rgba(255, 114, 43, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 140, 71, 0.2), rgba(92, 27, 18, 0.2));
  filter: blur(56px);
  pointer-events: none;
}

.hero-banner {
  position: relative;
  width: min(100%, 48rem);
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  border-radius: 2.2rem;
  border: 1px solid rgba(255, 228, 194, 0.16);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.45);
  object-fit: cover;
  object-position: center;
  transform:
    perspective(1200px)
    rotateX(calc(var(--pointer-y) * -3deg))
    rotateY(calc(var(--pointer-x) * 5deg))
    translateY(-0.2rem);
  transition: transform 160ms ease;
}

.hero-panel {
  position: absolute;
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 6, 7, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel p,
.hero-panel li {
  margin: 0;
  color: rgba(255, 239, 216, 0.8);
  line-height: 1.55;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-panel-top {
  top: 1.3rem;
  left: 0;
}

.hero-panel-bottom {
  right: 0;
  bottom: 1.4rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 241, 222, 0.84);
  font-size: 0.94rem;
  text-align: center;
}

.section {
  padding: 5.5rem 0 0;
}

.section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.cta-panel h2,
.policy-hero h1,
.policy-section h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.section-head h2 {
  max-width: 12ch;
}

.section-copy {
  max-width: 56ch;
  margin: 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.showcase-row-reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.showcase-row-reverse .showcase-copy {
  order: 2;
}

.showcase-row-reverse .browser-shot {
  order: 1;
}

.showcase-copy h3,
.signature-grid h3,
.flow-list h3,
.operator-points h3,
.privacy-grid h3,
.policy-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.showcase-copy p {
  margin: 0 0 1rem;
}

.signature-grid p,
.flow-list p,
.operator-points p,
.privacy-grid p,
.policy-card p,
.footer-meta p {
  margin: 0;
}

.detail-list,
.aside-list,
.policy-list {
  margin: 0;
  padding-left: 1.1rem;
}

.detail-list li,
.aside-list li,
.policy-list li {
  margin-bottom: 0.55rem;
}

.browser-shot,
.operator-aside,
.privacy-grid article,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.browser-shot {
  width: 100%;
  max-width: 39rem;
  margin: 0;
  justify-self: center;
  padding: 0.8rem;
  overflow: hidden;
}

.browser-shot:hover {
  transform: translateY(-4px);
  transition: transform 180ms ease;
}

.browser-shot img {
  width: 100%;
  border-radius: 1.35rem;
  background: rgba(9, 3, 4, 0.65);
}

.browser-shot figcaption {
  padding: 0.95rem 0.2rem 0.15rem;
  color: rgba(255, 236, 209, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.browser-shot-tall {
  max-width: 30rem;
}

.browser-chrome {
  display: flex;
  gap: 0.35rem;
  padding: 0.25rem 0.3rem 0.75rem;
}

.browser-chrome span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.feature-layout {
  display: grid;
  gap: 1.5rem;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
}

.signature-grid article {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 211, 138, 0.3), rgba(255, 109, 45, 0.22));
  color: var(--accent-strong);
  font-weight: 800;
}

.operator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: start;
}

.operator-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.operator-points article {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.operator-aside,
.cta-panel,
.policy-hero,
.policy-card {
  padding: 1.5rem;
}

.operator-links {
  margin-top: 1.2rem;
}

.text-link,
.inline-link {
  color: var(--accent-strong);
}

.privacy-layout {
  display: grid;
  gap: 1.6rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.privacy-grid article {
  padding: 1.35rem;
}

.section-cta {
  padding-bottom: 5.5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  border: 1px solid rgba(255, 207, 153, 0.2);
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at top right, rgba(255, 161, 88, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(39, 15, 15, 0.95), rgba(20, 7, 8, 0.92));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.4);
}

.site-footer {
  padding: 0 0 2.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.65fr));
  gap: 1.5rem;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 36ch;
  margin: 0;
}

.footer-heading {
  margin-bottom: 1rem;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.93rem;
}

[data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.site-policy .site-header {
  position: relative;
}

.policy-main {
  padding: 3.4rem 0 5rem;
}

.policy-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 207, 153, 0.18);
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at top right, rgba(255, 175, 102, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(34, 13, 13, 0.92), rgba(16, 6, 7, 0.9));
}

.policy-hero h1 {
  max-width: 12ch;
}

.policy-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255, 236, 209, 0.72);
  font-size: 0.93rem;
}

.policy-breadcrumbs span[aria-current="page"] {
  color: var(--text);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.help-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.help-quicklinks a {
  padding: 0.62rem 0.92rem;
  border: 1px solid rgba(255, 220, 182, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 239, 216, 0.8);
  font-size: 0.93rem;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.help-quicklinks a:hover {
  color: var(--accent-strong);
  border-color: rgba(255, 220, 182, 0.22);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.policy-card h3 {
  font-size: 1.3rem;
}

.policy-section {
  padding-top: 3rem;
}

.policy-section h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.policy-copy {
  max-width: 66ch;
  margin: 0 0 1rem;
}

.policy-meta {
  margin: -0.15rem 0 0;
  color: rgba(255, 236, 209, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
}

#showcase,
#features,
#how-it-works,
#operators,
#privacy,
#overview,
#get-started,
#commands,
#studio,
#media,
#anniversaries,
#reliability,
#faq {
  scroll-margin-top: 7rem;
}

@media (max-width: 1120px) {
  .trust-strip,
  .flow-list,
  .operator-points,
  .privacy-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-row,
  .showcase-row-reverse,
  .hero-layout,
  .operator-layout,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-row-reverse .showcase-copy,
  .showcase-row-reverse .browser-shot {
    order: initial;
  }

  .cta-panel {
    align-items: start;
  }

  .footer-meta {
    flex-direction: column;
  }

  .trust-strip {
    padding: 1rem 1.1rem;
    border-radius: 1.7rem;
  }
}

@media (max-width: 840px) {
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.65rem;
    padding-bottom: 0.3rem;
    white-space: nowrap;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 0.85rem;
    padding: 0.9rem 0;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 220, 182, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .header-actions .button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero-layout {
    gap: 1.35rem;
  }

  .hero-text {
    max-width: none;
    margin-top: 1rem;
  }

  .hero-actions {
    margin: 1.4rem 0 1.15rem;
  }

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

  .hero-stage {
    display: grid;
    gap: 0.9rem;
    max-width: 34rem;
    min-height: auto;
    margin: 0 auto;
    padding-top: 0.35rem;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-stage-glow {
    inset: 8% 4% auto;
    height: 50%;
    filter: blur(44px);
  }

  .hero-banner {
    width: 100%;
    border-radius: 1.7rem;
    transform: none;
  }

  .hero-panel {
    position: static;
    width: 100%;
    max-width: none;
    padding: 1rem;
  }

  .showcase-row {
    gap: 1.15rem;
  }

  .browser-shot {
    max-width: 34rem;
    padding: 0.72rem;
  }

  .browser-shot-tall {
    max-width: 27rem;
  }

  .operator-aside {
    max-width: 34rem;
    width: 100%;
    justify-self: center;
  }

  .policy-main {
    padding-top: 2.5rem;
  }

  .policy-hero h1 {
    max-width: 13ch;
  }

  .signature-grid,
  .flow-list,
  .operator-points,
  .privacy-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    border-radius: 1.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1200px, calc(100% - 1.2rem));
  }

  .site-header {
    background: rgba(12, 4, 5, 0.82);
  }

  .brand-lockup {
    gap: 0.7rem;
  }

  .brand-lockup img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-lockup span {
    font-size: 1.2rem;
  }

  .header-actions {
    gap: 0.7rem;
  }

  .header-actions .button {
    flex: 1 1 auto;
  }

  .site-nav {
    margin-inline: -0.05rem;
    padding-bottom: 0.15rem;
  }

  .site-nav a {
    padding: 0.5rem 0.72rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 1.15rem 0 1.6rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .hero-actions,
  .cta-actions,
  .policy-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .help-quicklinks a {
    width: 100%;
    text-align: center;
  }

  .hero-signals li {
    width: 100%;
    text-align: center;
  }

  .hero-stage {
    gap: 0.75rem;
  }

  .hero-panel,
  .operator-aside,
  .cta-panel,
  .policy-hero,
  .policy-card,
  .privacy-grid article {
    padding: 1.2rem;
  }

  .section,
  .section-cta,
  .policy-main {
    padding-top: 3.5rem;
  }

  .section-head {
    margin-bottom: 1.3rem;
  }

  .showcase-row {
    padding: 1.9rem 0;
  }

  .browser-shot {
    padding: 0.65rem;
    border-radius: 1.45rem;
  }

  .browser-chrome {
    padding-bottom: 0.6rem;
  }

  .flow-list li {
    padding: 1.2rem;
  }

  .operator-points {
    margin-top: 1.4rem;
  }

  .cta-panel {
    gap: 1rem;
  }

  .footer-grid {
    padding: 1.7rem 0 1.2rem;
    gap: 1.2rem;
  }

  .footer-meta {
    font-size: 0.89rem;
  }

  .policy-copy {
    max-width: none;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: min(1200px, calc(100% - 1rem));
  }

  .hero-signals li,
  .trust-strip p {
    font-size: 0.91rem;
  }

  .policy-breadcrumbs {
    font-size: 0.88rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-banner,
  .browser-shot:hover,
  .button:hover {
    transform: none;
  }
}
