:root {
  color-scheme: light;
  --page: #f4f7fb;
  --page-deep: #e8eef6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #fbfdff;
  --surface-muted: #eaf0f7;
  --ink: #151922;
  --ink-soft: #4d5868;
  --ink-faint: #626e7e;
  --accent: #006edb;
  --accent-field: #006edb;
  --accent-hover: #0059b3;
  --accent-soft: #d9ebff;
  --line: rgba(49, 74, 105, 0.13);
  --line-bright: rgba(255, 255, 255, 0.84);
  --shadow: 0 24px 70px rgba(48, 78, 113, 0.14);
  --shadow-soft: 0 12px 42px rgba(48, 78, 113, 0.09);
  --radius-outer: 30px;
  --radius-inner: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1400px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --page: #10151c;
  --page-deep: #171e27;
  --surface: rgba(30, 38, 49, 0.8);
  --surface-solid: #1b232d;
  --surface-muted: #222d39;
  --ink: #f1f5f9;
  --ink-soft: #b7c2cf;
  --ink-faint: #8f9cab;
  --accent: #65adfa;
  --accent-field: #0068d0;
  --accent-hover: #73b6ff;
  --accent-soft: #173c62;
  --line: rgba(188, 209, 232, 0.14);
  --line-bright: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(2, 8, 15, 0.34);
  --shadow-soft: 0 12px 42px rgba(2, 8, 15, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 115, 230, 0.09), transparent 28rem),
    linear-gradient(180deg, var(--page) 0%, var(--page-deep) 100%);
  color: var(--ink);
  font-family: "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--page);
  transform: translateY(-160%);
  transition: transform 240ms var(--ease);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1120px);
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(48, 78, 113, 0.12), inset 0 1px 0 var(--line-bright);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .brand img,
[data-theme="dark"] .footer-brand img {
  mix-blend-mode: normal;
  border-radius: 8px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.desktop-nav a,
.text-link {
  position: relative;
  transition: color 420ms var(--ease);
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

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

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color 420ms var(--ease), color 420ms var(--ease), transform 160ms var(--ease);
}

.theme-toggle:hover,
.menu-toggle:hover {
  background: var(--surface-muted);
  color: var(--ink);
}

.theme-toggle:active,
.menu-toggle:active,
.primary-button:active,
.nav-cta:active {
  transform: scale(0.98);
}

.theme-toggle-label {
  font-size: 0.7rem;
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--page);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms var(--ease), background-color 420ms var(--ease);
}

.nav-cta:hover {
  background: var(--accent-field);
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  width: 19px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 520ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  place-items: center;
  padding: 96px 24px 40px;
  background: color-mix(in srgb, var(--page) 88%, transparent);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition: opacity 520ms var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  width: min(100%, 460px);
}

.mobile-menu a {
  padding: 12px 0;
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.mobile-menu.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open a:nth-child(2) { transition-delay: 55ms; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 110ms; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 165ms; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 40px 36px;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 104px 0 30px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 9%;
  right: 4%;
  width: 34vw;
  height: 34vw;
  max-width: 540px;
  max-height: 540px;
  border-radius: 50%;
  background: rgba(0, 115, 230, 0.1);
  filter: blur(80px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-left: clamp(0px, 3vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 20px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 8.5ch;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 5.7vw, 6.15rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.hero-intro,
.automation-heading p,
.interface-copy p,
.cell-copy p,
.privacy-copy > p:last-child,
.cta-copy p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

.hero-intro {
  max-width: 28rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 6px 7px 6px 22px;
  border-radius: 999px;
  background: var(--accent-field);
  color: #f8fbff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0, 92, 184, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 180ms var(--ease), background-color 480ms var(--ease), box-shadow 480ms var(--ease);
}

.primary-button:hover {
  background: var(--accent-hover);
  box-shadow: 0 18px 42px rgba(0, 92, 184, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-island {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 520ms var(--ease), background-color 520ms var(--ease);
}

.primary-button:hover .button-island {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(2px) scale(1.04);
}

.text-link {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  justify-self: end;
}

.bezel-frame,
.showcase-shell {
  padding: 7px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-outer);
  background: color-mix(in srgb, var(--surface-solid) 66%, transparent);
  box-shadow: var(--shadow), inset 0 1px 1px var(--line-bright);
}

.bezel-core,
.showcase-core {
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: var(--surface-solid);
  box-shadow: inset 0 1px 1px var(--line-bright);
}

.bezel-core img {
  width: 100%;
  height: auto;
}

.hero-facts {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding-right: 16px;
}

.hero-facts span {
  padding: 9px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-solid) 62%, transparent);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 650;
  box-shadow: inset 0 0 0 1px var(--line);
}

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

.automation-heading,
.features-heading {
  max-width: 900px;
}

.automation-heading p,
.interface-copy p {
  max-width: 42rem;
}

.automation-rail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin: 72px 0 110px;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.automation-rail article {
  display: grid;
  gap: 8px;
  min-height: 190px;
  align-content: center;
  padding: 34px;
  background: var(--surface-solid);
}

.automation-rail strong {
  color: var(--accent);
  font-size: clamp(2rem, 4.3vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
}

.automation-rail span {
  color: var(--ink-soft);
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: center;
}

.process-item {
  min-height: 270px;
  padding: 34px 10px;
}

.process-item-offset {
  transform: translateY(58px);
}

.process-word {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.process-item p {
  max-width: 24rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.process-connector {
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--accent));
}

.interface-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(600px, 1.28fr);
  align-items: end;
  gap: 54px;
}

.interface-copy {
  padding-bottom: 64px;
}

.product-showcase {
  margin: 0;
}

.showcase-core {
  background: #0c121b;
}

.dashboard-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.dashboard-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-showcase figcaption {
  margin-top: 18px;
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.features-heading {
  margin-bottom: 72px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.bento-cell {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-outer);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft), inset 0 1px 1px var(--line-bright);
}

.bento-schedule {
  grid-column: span 7;
  display: grid;
  align-content: space-between;
  padding: clamp(30px, 4vw, 58px);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 115, 230, 0.16), transparent 20rem),
    var(--surface-solid);
}

.bento-sources {
  grid-column: span 5;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) 0;
}

.bento-sources img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 -12px 42px rgba(48, 78, 113, 0.1);
}

.source-media {
  align-self: end;
  aspect-ratio: 1280 / 1284;
  overflow: hidden;
  margin-top: 22px;
  border-radius: 18px;
}

.source-media img {
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.bento-library {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  align-items: center;
  gap: 28px;
  min-height: 460px;
  padding: clamp(28px, 3vw, 44px);
  background: var(--surface-muted);
}

.bento-library img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.library-media {
  aspect-ratio: 1280 / 1024;
  overflow: hidden;
  border-radius: 20px;
}

.library-media img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.bento-resilience {
  grid-column: span 4;
  display: grid;
  align-content: space-between;
  padding: clamp(30px, 4vw, 54px);
  background: var(--ink);
  color: var(--page);
}

.bento-resilience .cell-copy p {
  color: color-mix(in srgb, var(--page) 72%, transparent);
}

.resilience-mark {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent-field);
  color: #f8fbff;
  font-size: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.week-visual {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  width: 100%;
}

.week-visual span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: clamp(0.78rem, 1.3vw, 1rem);
  font-weight: 650;
}

.week-visual .active {
  background: var(--accent-field);
  color: #f8fbff;
  box-shadow: 0 14px 28px rgba(0, 115, 230, 0.22);
}

.privacy {
  padding-top: 90px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 80px;
  padding: clamp(40px, 7vw, 96px);
  border-radius: var(--radius-outer);
  background: var(--surface-solid);
  box-shadow: var(--shadow), inset 0 1px 0 var(--line-bright);
}

.privacy-copy h2 {
  max-width: 10ch;
}

.privacy-copy > p:last-child {
  max-width: 35rem;
  margin-bottom: 0;
}

.privacy-list {
  display: grid;
  gap: 28px;
  align-content: center;
}

.privacy-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: baseline;
  gap: 22px;
}

.privacy-list strong {
  color: var(--accent);
  font-size: 3.8rem;
  font-weight: 650;
  letter-spacing: -0.07em;
}

.privacy-list span {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  margin-bottom: 70px;
  overflow: hidden;
  border-radius: var(--radius-outer);
  background: var(--accent-field);
  color: #f8fbff;
  box-shadow: 0 28px 80px rgba(0, 92, 184, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 780px;
  padding: 64px 24px;
  text-align: center;
}

.cta-copy h2 {
  margin-bottom: 18px;
}

.cta-copy p {
  margin-bottom: 28px;
  color: rgba(248, 251, 255, 0.78);
}

.primary-button-dark {
  background: #17202a;
  color: #f8fbff;
  box-shadow: 0 14px 34px rgba(13, 43, 76, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.primary-button-dark:hover {
  background: #24303d;
}

.primary-button-dark:hover .button-island {
  transform: translate(2px, -2px) scale(1.04);
}

.cta-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orbit::before,
.cta-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.cta-orbit::before {
  top: -40%;
  left: -8%;
  width: 62%;
  aspect-ratio: 1.7;
  transform: rotate(12deg);
}

.cta-orbit::after {
  right: -9%;
  bottom: -48%;
  width: 60%;
  aspect-ratio: 1.65;
  transform: rotate(-14deg);
}

.cta-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.cta-orbit span:nth-child(1) { top: 18%; left: 14%; }
.cta-orbit span:nth-child(2) { right: 18%; bottom: 16%; width: 7px; height: 7px; }
.cta-orbit span:nth-child(3) { top: 30%; right: 11%; width: 5px; height: 5px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0 38px;
  color: var(--ink-faint);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-enter 900ms var(--ease) forwards;
}

.hero-copy .hero-reveal:nth-child(2) { animation-delay: 90ms; }
.hero-copy .hero-reveal:nth-child(3) { animation-delay: 170ms; }
.hero-copy .hero-reveal:nth-child(4) { animation-delay: 250ms; }
.hero-visual.hero-reveal { animation-delay: 140ms; }
.hero-facts.hero-reveal { animation-delay: 330ms; }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 860ms var(--ease), transform 860ms var(--ease);
}

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

.section-shell:target .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(280px, 0.85fr) minmax(440px, 1.15fr);
  }

  .interface-stage {
    grid-template-columns: 1fr;
  }

  .interface-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .bento-library {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
    min-height: 100dvh;
    padding: 116px 0 36px;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.85rem, 10.8vw, 4.5rem);
  }

  .hero-visual {
    width: 100%;
  }

  .hero-facts {
    justify-content: flex-start;
    padding-right: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-facts::-webkit-scrollbar {
    display: none;
  }

  .hero-facts span {
    flex: 0 0 auto;
  }

  .section-shell {
    padding: 105px 0;
  }

  .automation-rail {
    grid-template-columns: 1fr;
    margin: 54px 0 76px;
  }

  .automation-rail article {
    min-height: 150px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-item,
  .process-item-offset {
    min-height: 0;
    padding: 28px 0 44px;
    transform: none;
  }

  .process-connector {
    display: none;
  }

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

  .bento-schedule,
  .bento-sources,
  .bento-library,
  .bento-resilience {
    grid-column: 1;
    width: 100%;
  }

  .bento-library {
    grid-template-columns: 1fr;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 6px 7px 6px 11px;
  }

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

  .theme-toggle,
  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
  }

  .hero,
  .section-shell,
  .site-footer {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 102px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .bezel-frame,
  .showcase-shell {
    padding: 4px;
    border-radius: 23px;
  }

  .bezel-core,
  .showcase-core {
    border-radius: 19px;
  }

  .bezel-core img {
    height: auto;
  }

  .section-shell {
    padding: 88px 0;
  }

  .week-visual {
    gap: 4px;
  }

  .privacy-panel {
    padding: 30px 24px;
  }

  .privacy-list div {
    grid-template-columns: 70px 1fr;
  }

  .privacy-list strong {
    font-size: 3rem;
  }

  .final-cta {
    min-height: 520px;
    margin-bottom: 30px;
  }
}

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

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

  .hero-reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .mobile-menu {
    background: var(--surface-solid);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
