/*---*\
WorthBook Landing Page
Responsive marketing page aligned with the app's visual system.
\*---*/

:root {
  --color-primary: #0f8f5f;
  --color-primary-dark: #0b6f4a;
  --color-primary-deep: #07583c;
  --color-primary-muted: #ddf8ea;
  --color-primary-pale: #effaf4;
  --color-background: #fafdfb;
  --color-surface: #ffffff;
  --color-text: #1d252d;
  --color-text-muted: #56645d;
  --color-border: #e4e8e1;
  --color-blue: #2563eb;
  --shadow-soft: 0 24px 80px rgba(12, 70, 47, 0.1);
  --shadow-device: 0 28px 70px rgba(20, 58, 41, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: var(--color-surface);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: 104px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(250, 253, 251, 0.94);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  background: #fafdfb;
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #082d62;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
}

.brand > span > span {
  color: var(--color-primary);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-navigation > a:not(.button) {
  position: relative;
  color: #3d4c45;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-navigation > a:not(.button):hover::after,
.primary-navigation > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: var(--color-primary-muted);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-text);
  transition: transform 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--color-primary-dark);
  border-radius: 999px;
  background: var(--color-primary-dark);
  box-shadow: 0 10px 24px rgba(11, 111, 74, 0.18);
  color: var(--color-surface);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover,
.button:focus-visible {
  border-color: var(--color-primary-deep);
  background: var(--color-primary-deep);
  box-shadow: 0 14px 30px rgba(11, 111, 74, 0.24);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: 144px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 28%, rgba(221, 248, 234, 0.85), transparent 42%),
    linear-gradient(180deg, var(--color-background) 0%, #f3f9f5 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  width: 52%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.8vw, 74px);
  font-weight: 600;
  letter-spacing: -2.4px;
  line-height: 1.02;
}

.hero-lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.text-link {
  color: var(--color-text);
  font-weight: 800;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-primary-dark);
  text-decoration-thickness: 3px;
}

.hero-visual {
  position: relative;
  width: 48%;
  min-height: 690px;
}

.screenshot-stage {
  position: relative;
  min-height: 690px;
}

.app-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--color-surface);
  border-radius: 42px;
  background: var(--color-surface);
  box-shadow: var(--shadow-device);
}

.app-shot img {
  width: 100%;
  height: auto;
}

.app-shot-primary {
  top: 0;
  right: 4%;
  z-index: 2;
  width: 330px;
  transform: rotate(2.5deg);
}

.app-shot-secondary {
  top: 105px;
  left: -1%;
  z-index: 1;
  width: 235px;
  opacity: 0.98;
  transform: rotate(-6deg);
}

.finance-floaters {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.finance-floater {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 174px;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(15, 143, 95, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(12, 70, 47, 0.14);
}

.finance-floater-icon {
  display: flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-primary-muted);
  color: var(--color-primary-dark);
}

.finance-floater-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.finance-floater > span:not(.finance-floater-icon) {
  display: flex;
  flex-direction: column;
}

.finance-floater small {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.finance-floater strong {
  margin-top: 3px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.2;
}

.finance-floater-growth {
  top: 54px;
  left: -10%;
  min-width: 256px;
}

.finance-floater-growth strong {
  color: var(--color-primary-dark);
}

.finance-sparkline {
  width: 76px;
  height: 42px;
  margin-left: auto;
  overflow: visible;
}

.finance-sparkline-area {
  fill: var(--color-primary-muted);
}

.finance-sparkline-line {
  fill: none;
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.finance-sparkline-dot {
  fill: var(--color-surface);
  stroke: var(--color-primary-dark);
  stroke-width: 2.5;
}

.finance-floater-savings {
  right: -8%;
  bottom: 154px;
}

.finance-floater-safe {
  bottom: 42px;
  left: 2%;
}

.section-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px 50px;
  margin-bottom: 58px;
}

.section-intro .eyebrow {
  width: 100%;
  margin-bottom: -5px;
}

.section-intro h2,
.smart-copy h2,
.privacy-copy h2,
.faq-intro h2,
.final-cta h2 {
  max-width: 740px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 600;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.section-intro > p:last-child {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--color-text-muted);
  font-size: 17px;
}

.feature-section {
  background: var(--color-surface);
}

.feature-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-background);
}

.feature-card h3 {
  max-width: 410px;
  margin: 56px 0 12px;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
}

.feature-card p {
  max-width: 420px;
  margin: 0;
  color: var(--color-text-muted);
}

.feature-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #8e9a94;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.feature-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--color-primary-muted);
  color: var(--color-primary-dark);
}

.feature-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card-large,
.feature-card-wide {
  display: flex;
  min-height: 410px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.feature-card-large {
  grid-column: 1 / -1;
  background: var(--color-primary-pale);
}

.feature-card-large .feature-copy,
.feature-card-wide .feature-copy {
  width: 47%;
}

.feature-card-large h3,
.feature-card-wide h3 {
  margin-top: 0;
}

.mini-overview {
  width: 47%;
  max-width: 460px;
  padding: 28px;
  border: 1px solid rgba(15, 143, 95, 0.13);
  border-radius: 22px;
  background: var(--color-surface);
  transform: rotate(1deg);
}

.mini-overview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.mini-overview-top svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.mini-overview > strong {
  display: block;
  margin: 20px 0 24px;
  font-size: 38px;
  letter-spacing: -1.8px;
}

.funds-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce3de;
}

.funds-bar i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-primary);
}

.funds-legend {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
}

.funds-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.funds-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.funds-legend span:last-child i {
  background: #dce3de;
}

.feature-card-dark {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-surface);
}

.feature-card-dark p,
.feature-card-dark .feature-number {
  color: #c8d0cc;
}

.feature-card-dark .feature-icon {
  background: rgba(221, 248, 234, 0.12);
  color: #8ce2bb;
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.planning-preview {
  width: 49%;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-surface);
}

.planning-tabs {
  display: flex;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  color: #7a8580;
  font-size: 10px;
  font-weight: 700;
}

.planning-tabs b {
  position: relative;
  color: var(--color-primary-dark);
}

.planning-tabs b::after {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  content: "";
}

.budget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
}

.budget-item > div {
  margin-right: auto;
}

.budget-item strong,
.budget-item small {
  display: block;
  line-height: 1.45;
}

.budget-item strong {
  font-size: 12px;
}

.budget-item small {
  color: #76827c;
  font-size: 9px;
}

.budget-item > b {
  font-size: 11px;
}

.budget-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.budget-mark.groceries {
  background: #ddf8ea;
}

.budget-mark.transport {
  background: #dce8ff;
}

.budget-progress {
  height: 5px;
  margin: 9px 0 0 44px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ece9;
}

.budget-progress i {
  display: block;
  width: 69%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-primary);
}

.budget-progress.second i {
  width: 52%;
  background: var(--color-blue);
}

.product-tour-section {
  overflow: hidden;
  background: #f4f8f5;
}

.product-tour {
  display: flex;
  min-height: 600px;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding-top: 10px;
}

.tour-shot {
  width: 28%;
  max-width: 250px;
  margin: 0;
}

.tour-shot img {
  width: 100%;
  height: auto;
  border: 5px solid var(--color-surface);
  border-radius: 32px;
  background: var(--color-surface);
  box-shadow: var(--shadow-device);
}

.tour-shot figcaption {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 18px;
  padding-left: 8px;
}

.tour-shot figcaption strong {
  font-size: 17px;
}

.tour-shot figcaption span {
  color: var(--color-text-muted);
  font-size: 12px;
}

.tour-shot-planning {
  transform: translateY(58px) rotate(-2.5deg);
}

.tour-shot-accounts {
  position: relative;
  z-index: 2;
}

.tour-shot-savings {
  transform: translateY(58px) rotate(2.5deg);
}

.smart-section {
  overflow: hidden;
  background: var(--color-primary-deep);
  color: var(--color-surface);
}

.smart-grid {
  display: flex;
  align-items: center;
  gap: 100px;
}

.smart-demo {
  position: relative;
  width: 50%;
  min-height: 650px;
}

.smart-screenshot,
.smart-add-screenshot {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--color-surface);
  border-radius: 42px;
  background: var(--color-surface);
  box-shadow: 0 35px 80px rgba(0, 24, 15, 0.4);
}

.smart-screenshot {
  top: 0;
  left: 10%;
  width: 330px;
  transform: rotate(-2deg);
}

.smart-add-screenshot {
  right: -1%;
  bottom: 20px;
  width: 230px;
  transform: rotate(4deg);
}

.smart-screenshot img,
.smart-add-screenshot img {
  width: 100%;
  height: auto;
}

.activity-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.activity-icon {
  position: absolute;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(140, 226, 187, 0.28);
  border-radius: 15px;
  background: var(--color-surface);
  box-shadow: 0 14px 32px rgba(0, 24, 15, 0.3);
  color: var(--color-primary-dark);
}

.activity-icon > span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--color-primary-muted);
}

.activity-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.activity-icon small {
  display: none;
  color: var(--color-text);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.activity-icon-entry {
  top: 24px;
  right: 10px;
}

.activity-icon-savings {
  top: 190px;
  left: 0;
}

.activity-icon-payment {
  bottom: 96px;
  left: 4px;
}

.activity-icon-expense {
  top: 300px;
  right: 2px;
}

.activity-icon-investment {
  right: 22px;
  bottom: 18px;
}

@media (min-width: 768px) {
  .activity-icon {
    width: auto;
    height: auto;
    justify-content: flex-start;
    gap: 9px;
    padding: 8px 12px 8px 8px;
    border-radius: 16px;
  }

  .activity-icon small {
    display: block;
  }

  .activity-icon-entry {
    top: 36px;
    right: 4%;
  }

  .activity-icon-savings {
    top: 210px;
    left: -1%;
  }

  .activity-icon-payment {
    bottom: 118px;
    left: 1%;
  }

  .activity-icon-expense {
    top: 330px;
    right: 0;
  }

  .activity-icon-investment {
    right: 18%;
    bottom: 18px;
  }
}

@media (min-width: 1200px) {
  .activity-icon-entry {
    right: 0;
  }

  .activity-icon-savings {
    left: -5%;
  }

  .activity-icon-payment {
    bottom: 140px;
    left: -2%;
  }

  .activity-icon-expense {
    right: -6%;
  }

  .activity-icon-investment {
    right: 14%;
    bottom: 28px;
  }
}

.smart-copy {
  width: 50%;
}

.eyebrow-light {
  color: #8ce2bb;
}

.smart-copy h2 {
  color: var(--color-surface);
}

.smart-copy > p:not(.eyebrow, .compatibility) {
  max-width: 520px;
  margin: 22px 0 0;
  color: #c7ddd2;
  font-size: 17px;
}

.smart-steps {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.smart-steps li {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.smart-steps li > span {
  display: flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(221, 248, 234, 0.14);
  color: #8ce2bb;
  font-size: 13px;
  font-weight: 800;
}

.smart-steps strong,
.smart-steps small {
  display: block;
}

.smart-steps strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.smart-steps small {
  color: #a8c4b6;
  font-size: 14px;
  line-height: 1.5;
}

.compatibility {
  max-width: 520px;
  margin: 32px 0 0;
  color: #8eaa9c;
  font-size: 13px;
  line-height: 1.55;
}

.insights-section {
  background: var(--color-background);
}

.section-intro.centered {
  display: block;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.section-intro.centered h2 {
  margin-inline: auto;
}

.section-intro.centered > p:last-child {
  max-width: 610px;
  margin: 22px auto 0;
}

.report-showcase {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.report-nav {
  display: flex;
  gap: 8px;
  padding: 12px 18px 0;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}

.report-tab {
  position: relative;
  min-height: 48px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: #7d8983;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.report-tab:hover {
  background: var(--color-primary-muted);
  color: var(--color-primary-dark);
}

.report-tab[aria-selected="true"] {
  color: var(--color-primary-dark);
}

.report-tab[aria-selected="true"]::after {
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  height: 2px;
  background: var(--color-primary);
  content: "";
}

.report-panel {
  display: flex;
  align-items: center;
  gap: 54px;
  padding: 54px;
}

.report-panel[hidden] {
  display: none;
}

.report-copy {
  width: 42%;
}

.report-shot {
  width: 58%;
  max-width: 220px;
  margin: 0 auto;
  overflow: hidden;
  border: 6px solid var(--color-background);
  border-radius: 34px;
  background: var(--color-background);
  box-shadow: var(--shadow-device);
}

.report-shot img {
  width: 100%;
  height: auto;
}

.report-label {
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.report-copy h3 {
  margin: 15px 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.12;
}

.report-copy p {
  margin: 0;
  color: var(--color-text-muted);
}

.report-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.report-stat strong {
  font-size: 24px;
  letter-spacing: -0.6px;
}

.report-stat span {
  max-width: 120px;
  color: #77837d;
  font-size: 12px;
  line-height: 1.3;
}

.insight-note {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.privacy-section {
  background: var(--color-surface);
}

.privacy-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.privacy-copy {
  width: 42%;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--color-text-muted);
  font-size: 17px;
}

.privacy-copy a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.privacy-copy a:hover,
.privacy-copy a:focus-visible {
  color: var(--color-primary);
}

.privacy-points {
  width: 48%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.privacy-points li:first-child {
  padding-top: 0;
}

.privacy-points li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-points strong,
.privacy-points span {
  display: block;
}

.privacy-points strong {
  margin-bottom: 6px;
  font-size: 17px;
}

.privacy-points span {
  color: var(--color-text-muted);
  font-size: 15px;
}

.themes-section {
  overflow: hidden;
  background: #f4f8f5;
}

.themes-section .section-intro {
  margin-bottom: 40px;
}

.theme-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 12px;
  margin: 0;
}

.js-theme-slider {
  overflow: hidden;
}

.js-theme-slider .slick-list {
  overflow: hidden;
  margin: 0;
}

.js-theme-slider .slick-track {
  display: flex !important;
  align-items: flex-start;
}

.js-theme-slider .slick-slide {
  width: 160px;
  height: auto;
  margin-right: 14px;
  float: none;
}

.js-theme-slider .slick-slide > div {
  height: 100%;
}

.js-theme-slider.is-auto-scrolling .slick-track {
  transition-timing-function: linear !important;
}

.theme-shot {
  margin: 0;
  width: 160px;
}

.theme-shot img {
  width: 100%;
  height: auto;
  border: 4px solid var(--color-surface);
  border-radius: 24px;
  background: var(--color-surface);
}

.theme-shot figcaption {
  margin-top: 10px;
  padding-left: 2px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.pro-section {
  background: var(--color-background);
}

.pro-layout {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.pro-card {
  width: 58%;
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-primary-pale);
}

.pro-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-primary-muted);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pro-card h3 {
  margin: 18px 0 0;
  font-size: 28px;
  letter-spacing: -1px;
}

.pro-features {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.pro-features li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(15, 143, 95, 0.12);
  font-size: 15px;
}

.pro-features li::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
}

.pro-aside {
  display: flex;
  width: 42%;
  flex-direction: column;
  gap: 16px;
}

.pro-aside article {
  flex: 1;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.pro-aside h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pro-aside p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.faq-section {
  background: #f4f8f5;
}

.faq-grid {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  width: 43%;
}

.faq-intro > p:last-child {
  margin: 22px 0 0;
  color: var(--color-text-muted);
}

.faq-intro a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.faq-intro a:hover,
.faq-intro a:focus-visible {
  color: var(--color-primary-deep);
  text-decoration-thickness: 2px;
}

.faq-list {
  width: 57%;
}

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--color-primary-dark);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--color-primary-deep);
  color: var(--color-surface);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.final-cta img {
  margin-bottom: 22px;
  border-radius: 18px;
}

.final-cta-action {
  max-width: 320px;
}

.final-cta-action p {
  margin: 0 0 22px;
  color: #c7ddd2;
}

.button-light {
  border-color: var(--color-surface);
  background: var(--color-surface);
  box-shadow: none;
  color: var(--color-primary-deep);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--color-primary-muted);
  background: var(--color-primary-muted);
  color: var(--color-primary-deep);
}

.site-footer {
  padding: 28px 0;
  background: #042f20;
  color: #aec7bb;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.site-footer .brand {
  color: var(--color-surface);
  font-size: 19px;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--color-surface);
}

@media (min-width: 1200px) {
  body.site-animation--desktop .reveal,
  body.site-animation--desktop .js-tour-shot {
    opacity: 0;
  }

  body.site-animation--desktop .tour-shot-planning,
  body.site-animation--desktop .tour-shot-accounts,
  body.site-animation--desktop .tour-shot-savings {
    transform: none;
  }
}

@media (max-width: 1199px), (prefers-reduced-motion: reduce) {
  .reveal,
  .js-tour-shot {
    opacity: 1 !important;
  }
}

@media (min-width: 768px) {
  .js-theme-slider .slick-slide,
  .theme-shot {
    width: 180px;
  }

  .js-theme-slider .slick-slide {
    margin-right: 18px;
  }
}

@media (min-width: 1200px) {
  .js-theme-slider .slick-slide,
  .theme-shot {
    width: 190px;
  }

  .js-theme-slider .slick-slide {
    margin-right: 20px;
  }
}

@media (max-width: 1199px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-copy {
    width: 50%;
  }

  .hero-visual {
    width: 50%;
  }

  .smart-grid,
  .faq-grid {
    gap: 60px;
  }

  .report-panel {
    gap: 36px;
    padding: 40px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--color-background);
    box-shadow: 0 18px 35px rgba(29, 37, 45, 0.09);
    visibility: hidden;
    transition: max-height 0.25s ease, visibility 0.25s ease;
  }

  .primary-navigation.is-open {
    max-height: calc(100vh - 72px);
    padding: 14px 20px 24px;
    overflow-y: auto;
    visibility: visible;
  }

  .primary-navigation > a:not(.button) {
    min-height: 50px;
    padding: 14px 8px;
    border-bottom: 1px solid var(--color-border);
  }

  .primary-navigation .button {
    margin-top: 16px;
  }

  .hero {
    min-height: 0;
    padding-top: 122px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    width: 100%;
    max-width: 760px;
    margin-bottom: 48px;
  }

  .hero-visual {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    min-height: 640px;
  }

  .screenshot-stage {
    min-height: 640px;
  }

  .app-shot-primary {
    right: 18%;
  }

  .app-shot-secondary {
    left: 5%;
  }

  .finance-floater-growth {
    left: 0;
  }

  .finance-floater-savings {
    right: 0;
  }

  .feature-card-large,
  .feature-card-wide {
    display: block;
  }

  .feature-card-large .feature-copy,
  .feature-card-wide .feature-copy,
  .mini-overview,
  .planning-preview {
    width: 100%;
  }

  .mini-overview,
  .planning-preview {
    max-width: 560px;
    margin-top: 38px;
  }

  .smart-grid {
    flex-direction: column-reverse;
  }

  .smart-copy,
  .smart-demo {
    width: 100%;
  }

  .smart-copy {
    max-width: 760px;
    align-self: flex-start;
  }

  .smart-demo {
    min-height: 630px;
  }

  .smart-screenshot {
    left: 23%;
  }

  .smart-add-screenshot {
    right: 10%;
  }

  .report-panel {
    display: block;
  }

  .report-copy,
  .report-shot {
    width: 100%;
  }

  .report-copy {
    max-width: 620px;
    margin-bottom: 36px;
  }

  .report-shot {
    max-width: 200px;
  }

  .privacy-layout,
  .pro-layout,
  .faq-grid {
    display: block;
  }

  .privacy-copy,
  .privacy-points,
  .pro-card,
  .pro-aside,
  .faq-intro,
  .faq-list {
    width: 100%;
  }

  .privacy-points,
  .pro-aside,
  .faq-list {
    margin-top: 40px;
  }

  .faq-intro {
    position: static;
    max-width: 720px;
  }

  .final-cta-inner {
    display: block;
  }

  .final-cta-action {
    max-width: 430px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .header-inner {
    min-height: 64px;
  }

  .primary-navigation {
    top: 64px;
  }

  .brand {
    font-size: 20px;
  }

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

  .hero {
    padding: 105px 0 48px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -1.8px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

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

  .text-link {
    align-self: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .screenshot-stage {
    min-height: 560px;
  }

  .app-shot-primary {
    right: 4%;
    width: 270px;
    border-width: 5px;
    border-radius: 34px;
  }

  .app-shot-secondary {
    top: 90px;
    left: -6%;
    width: 180px;
    border-width: 5px;
    border-radius: 30px;
  }

  .finance-floater {
    min-width: 0;
    padding: 9px 11px 9px 9px;
    border-radius: 15px;
  }

  .finance-floater-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 10px;
  }

  .finance-floater-icon svg {
    width: 18px;
    height: 18px;
  }

  .finance-floater small {
    font-size: 8px;
  }

  .finance-floater strong {
    font-size: 12px;
  }

  .finance-floater-growth {
    top: 30px;
    left: -8px;
    min-width: 228px;
  }

  .finance-floater-growth .finance-floater-icon {
    display: none;
  }

  .finance-sparkline {
    width: 64px;
    height: 36px;
  }

  .finance-floater-savings {
    right: -8px;
    bottom: 105px;
  }

  .finance-floater-safe {
    bottom: 20px;
    left: 12px;
  }

  .section-intro {
    display: block;
  }

  .section-intro .eyebrow {
    margin-bottom: 20px;
  }

  .section-intro h2,
  .smart-copy h2,
  .privacy-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -1.2px;
  }

  .section-intro > p:last-child {
    margin-top: 20px;
  }

  .feature-bento {
    display: block;
  }

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

  .feature-card:first-child {
    margin-top: 0;
  }

  .feature-card h3 {
    margin-top: 48px;
    font-size: 24px;
  }

  .feature-card-large h3,
  .feature-card-wide h3 {
    margin-top: 0;
  }

  .feature-number {
    top: 26px;
    right: 26px;
  }

  .mini-overview,
  .planning-preview {
    padding: 19px;
  }

  .mini-overview > strong {
    font-size: 29px;
  }

  .product-tour {
    min-height: 0;
    justify-content: flex-start;
    gap: 16px;
    padding: 8px 8px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .tour-shot {
    width: 210px;
    max-width: none;
    flex: 0 0 auto;
    scroll-snap-align: center;
    transform: none;
  }

  .tour-shot img {
    border-width: 4px;
    border-radius: 28px;
  }

  .smart-demo {
    min-height: 565px;
  }

  .smart-screenshot {
    left: 1%;
    width: 285px;
    border-width: 5px;
    border-radius: 34px;
  }

  .smart-add-screenshot {
    right: -7%;
    bottom: 0;
    width: 175px;
    border-width: 5px;
    border-radius: 30px;
  }

  .report-nav {
    padding: 8px 8px 0;
  }

  .report-panel {
    margin-top: 0;
    padding: 26px;
  }

  .report-copy h3 {
    font-size: 28px;
  }

  .report-shot {
    border-width: 5px;
    border-radius: 30px;
  }

  .js-theme-slider .slick-slide,
  .theme-shot {
    width: 140px;
  }

  .theme-shot img {
    border-radius: 20px;
  }

  .pro-card {
    padding: 26px;
  }

  .faq-list {
    margin-top: 44px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 15px;
  }

  .final-cta {
    padding: 74px 0;
  }

  .final-cta img {
    width: 58px;
    height: 58px;
  }

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

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

.support-page .site-header {
  background: rgba(250, 253, 251, 0.98);
  border-bottom-color: var(--color-border);
}

.support-hero {
  padding: 140px 0 48px;
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 143, 95, 0.14), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.08), transparent 36%),
    linear-gradient(180deg, #f3faf6 0%, var(--color-background) 100%);
}

.support-hero-inner {
  max-width: 720px;
}

.support-hero h1 {
  margin: 0 0 16px;
  color: #082d62;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.08;
}

.support-lead {
  margin: 0;
  max-width: 54ch;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.support-contact-section {
  padding-top: 40px;
}

.support-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.support-contact-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.support-contact-copy > p:last-child {
  margin: 0;
  max-width: 48ch;
  color: var(--color-text-muted);
}

.support-contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--color-primary-pale), var(--color-surface) 55%);
  box-shadow: var(--shadow-soft);
}

.support-contact-label {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-contact-email {
  color: var(--color-text);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  text-decoration: none;
  word-break: break-word;
}

.support-contact-email:hover,
.support-contact-email:focus-visible {
  color: var(--color-primary-dark);
}

.support-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.support-topics-section {
  padding-top: 24px;
}

.support-topics {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.support-topics li {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.support-topics li:last-child {
  padding-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.support-topics h3 {
  margin: 0 0 8px;
  color: #082d62;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.support-topics p {
  margin: 0;
  max-width: 62ch;
  color: var(--color-text-muted);
}

.support-topics a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.support-topics a:hover,
.support-topics a:focus-visible {
  color: var(--color-primary);
}

.support-faq-section .faq-list a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.support-faq-section .faq-list a:hover,
.support-faq-section .faq-list a:focus-visible {
  color: var(--color-primary);
}

.primary-navigation a[aria-current="page"] {
  color: var(--color-primary-dark);
}

.primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (min-width: 768px) {
  .support-contact-grid {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
  }

  .support-contact-copy,
  .support-contact-card {
    flex: 1 1 0;
  }

  .support-topics {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 36px;
  }

  .support-topics li {
    flex: 1 1 calc(50% - 18px);
  }

  .support-topics li:nth-last-child(-n + 2) {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
  }
}

@media (min-width: 1200px) {
  .support-hero {
    padding: 160px 0 64px;
  }

  .support-contact-card {
    padding: 36px;
  }
}

.legal-page .site-header {
  background: rgba(250, 253, 251, 0.98);
  border-bottom-color: var(--color-border);
}

.legal-meta {
  margin: 20px 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-section {
  padding-top: 24px;
  padding-bottom: 80px;
}

.legal-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.legal-toc {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--color-primary-pale), var(--color-surface) 60%);
}

.legal-toc h2 {
  margin: 0 0 14px;
  color: #082d62;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-toc ol {
  margin: 0;
  padding: 0 0 0 1.15rem;
}

.legal-toc li {
  margin: 0 0 8px;
  color: var(--color-text-muted);
}

.legal-toc li:last-child {
  margin-bottom: 0;
}

.legal-toc a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-content {
  max-width: 72ch;
}

.legal-content article {
  margin: 0 0 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 110px;
}

.legal-content article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 14px;
  color: #082d62;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
}

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

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 14px;
  padding-left: 1.2rem;
}

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

.legal-content li:last-child {
  margin-bottom: 0;
}

.legal-content a:not(.button) {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.legal-content a:not(.button):hover,
.legal-content a:not(.button):focus-visible {
  color: var(--color-primary);
}

.legal-content a.button {
  color: var(--color-surface);
}

.legal-content a.button:hover,
.legal-content a.button:focus-visible {
  color: var(--color-surface);
}

.legal-content strong {
  color: var(--color-text);
  font-weight: 800;
}

.legal-callouts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.legal-callouts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.legal-callouts strong {
  color: #082d62;
  font-size: 1.02rem;
  letter-spacing: -0.2px;
}

.legal-callouts span {
  color: var(--color-text-muted);
}

.legal-request-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--color-primary-pale), var(--color-surface) 55%);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1200px) {
  .legal-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .legal-toc {
    position: sticky;
    top: 110px;
    flex: 0 0 260px;
  }

  .legal-content {
    flex: 1 1 auto;
  }
}

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

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