:root {
  --blue: #075fff;
  --blue-bright: #2d7aff;
  --blue-dark: #05275c;
  --navy: #061d45;
  --navy-soft: #0d315f;
  --mint: #62f2cf;
  --mint-dark: #13b995;
  --ink: #0a1830;
  --muted: #596981;
  --line: #dbe4f1;
  --surface: #f5f8fc;
  --surface-blue: #edf4ff;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(15, 47, 89, 0.08);
  --shadow-lg: 0 32px 80px rgba(5, 39, 92, 0.18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

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

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

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(19, 49, 88, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 30px rgba(9, 38, 75, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 790;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(7, 95, 255, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a {
  color: #344560;
  transition: color 160ms ease;
}

.site-nav > a:hover {
  color: var(--blue);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 82px;
  padding: 6px 9px;
  border: 1px solid rgba(8, 40, 81, 0.1);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
}

.language-switch span {
  width: 1px;
  height: 14px;
  background: var(--line);
}

.language-switch button {
  padding: 0;
  color: #8390a2;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 760;
}

.language-switch button[aria-pressed="true"] {
  color: var(--blue);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: 12px;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 155px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 27%, rgba(68, 135, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 82%);
}

.hero::after {
  position: absolute;
  right: -15%;
  bottom: -44%;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(7, 95, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -170px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: rgba(65, 134, 255, 0.12);
}

.hero-glow-two {
  bottom: 40px;
  left: -160px;
  width: 320px;
  height: 320px;
  background: rgba(98, 242, 207, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  padding-top: 20px;
}

.eyebrow,
.section-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(7, 95, 255, 0.12);
  background: rgba(237, 244, 255, 0.8);
  border-radius: 999px;
  text-transform: none;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--mint-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(19, 185, 149, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 27px 0 24px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
}

.gradient-text {
  color: var(--blue);
  background: linear-gradient(110deg, var(--blue) 5%, #2c80ff 50%, var(--mint-dark) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 55px;
  padding: 0 24px;
  border-radius: 17px;
  font-size: 15px;
  font-weight: 730;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #2c7cff);
  box-shadow: 0 15px 34px rgba(7, 95, 255, 0.25);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.availability > span:last-child {
  display: flex;
  flex-direction: column;
}

.availability strong {
  font-size: 14px;
  line-height: 1.35;
}

.availability small {
  color: #78869a;
  font-size: 11px;
}

.apple-mark {
  position: relative;
  width: 36px;
  height: 36px;
  color: transparent;
  background: var(--ink);
  border-radius: 12px;
}

.apple-mark::before,
.apple-mark::after {
  position: absolute;
  background: var(--white);
  content: "";
}

.apple-mark::before {
  top: 11px;
  left: 11px;
  width: 14px;
  height: 15px;
  border-radius: 52% 48% 58% 42%;
}

.apple-mark::after {
  top: 7px;
  left: 19px;
  width: 6px;
  height: 4px;
  border-radius: 100% 0 100% 0;
  transform: rotate(-22deg);
}

.trust-list {
  display: flex;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #63728a;
  list-style: none;
  font-size: 13px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list li > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #078467;
  background: rgba(98, 242, 207, 0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.hero-product {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
}

.hero-product::before {
  position: absolute;
  width: 485px;
  height: 485px;
  background: linear-gradient(145deg, rgba(7, 95, 255, 0.09), rgba(98, 242, 207, 0.08));
  border-radius: 50%;
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(7, 95, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 650px;
  height: 650px;
  border-style: dashed;
  opacity: 0.48;
}

.phone-frame {
  position: relative;
  z-index: 3;
  width: 326px;
  height: 656px;
  padding: 9px;
  border: 3px solid #14243d;
  background: #08182f;
  border-radius: 49px;
  box-shadow: 0 42px 80px rgba(3, 33, 76, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: rotate(2deg);
}

.phone-frame::before,
.phone-frame::after {
  position: absolute;
  left: -7px;
  width: 4px;
  background: #243856;
  border-radius: 4px 0 0 4px;
  content: "";
}

.phone-frame::before {
  top: 124px;
  height: 52px;
}

.phone-frame::after {
  top: 189px;
  height: 72px;
}

.phone-sensor {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: 94px;
  height: 25px;
  background: #030a14;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 46px 15px 16px;
  overflow: hidden;
  background: #f5f7fb;
  border-radius: 38px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 13px;
}

.app-topbar > div {
  display: flex;
  flex-direction: column;
}

.app-topbar small {
  color: #758299;
  font-size: 9px;
}

.app-topbar strong {
  font-size: 17px;
}

.app-topbar img {
  border-radius: 11px;
  box-shadow: 0 6px 15px rgba(7, 95, 255, 0.2);
}

.trip-progress-card {
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #0758e7, #3986ff);
  border-radius: 17px;
  box-shadow: 0 10px 20px rgba(7, 95, 255, 0.18);
}

.trip-progress-head,
.trip-progress-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trip-progress-head span,
.trip-progress-head small,
.trip-progress-foot {
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
}

.trip-progress-head strong {
  font-size: 12px;
}

.progress-track {
  height: 5px;
  margin: 10px 0 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 60%;
  height: 100%;
  background: var(--mint);
  border-radius: inherit;
}

.converter-card {
  margin-top: 11px;
  padding: 13px 14px 10px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(20, 55, 97, 0.06);
}

.amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amount-row > strong {
  max-width: 150px;
  overflow: hidden;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
}

.result-row > strong {
  color: var(--blue);
}

.currency-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 74px;
  padding: 7px 9px;
  background: #eef3fa;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 780;
}

.currency-pill span {
  font-size: 13px;
}

.currency-pill b {
  margin-left: auto;
  color: #8b97a9;
}

.conversion-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0;
}

.conversion-rule span {
  flex: 1;
  height: 1px;
  background: #e7ecf3;
}

.conversion-rule i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--blue);
  background: var(--surface-blue);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.rate-note {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 8px;
  color: #909caf;
  border-top: 1px solid #edf0f5;
  font-size: 7px;
}

.payment-heading {
  display: flex;
  justify-content: space-between;
  margin: 14px 3px 8px;
  font-size: 10px;
  font-weight: 750;
}

.payment-heading small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 600;
}

.payment-option {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 7px;
  padding: 10px;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(15, 47, 89, 0.04);
}

.best-option {
  border-color: rgba(34, 205, 165, 0.38);
  background: #f7fffc;
}

.payment-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.cash-icon {
  color: var(--blue-dark);
  background: #eaf1fa;
}

.payment-option > span:nth-child(2),
.payment-option > span:last-child {
  display: flex;
  flex-direction: column;
}

.payment-option strong,
.payment-option b {
  font-size: 9px;
  line-height: 1.3;
}

.payment-option small {
  color: #8995a7;
  font-size: 7px;
}

.payment-option > span:last-child {
  align-items: flex-end;
}

.payment-option em {
  margin-top: 2px;
  padding: 1px 5px;
  color: #08795f;
  background: rgba(98, 242, 207, 0.25);
  border-radius: 999px;
  font-size: 6px;
  font-style: normal;
}

.fake-tabbar {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 47, 89, 0.12);
}

.fake-tabbar span:not(.scan-tab) {
  width: 15px;
  height: 15px;
  border: 2px solid #b5bdc9;
  border-radius: 5px;
}

.fake-tabbar span:first-child {
  background: var(--blue);
  border-color: var(--blue);
  border-radius: 50%;
}

.fake-tabbar .scan-tab {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: -22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #4792ff);
  border: 4px solid #f5f7fb;
  border-radius: 50%;
  font-size: 20px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(17, 51, 92, 0.15);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.rate-card {
  top: 80px;
  left: -17px;
  flex-direction: column;
  width: 184px;
  padding: 14px 16px;
  transform: rotate(-4deg);
}

.rate-card > span,
.rate-card small {
  color: #77869b;
  font-size: 9px;
}

.rate-card strong {
  margin: 2px 0 6px;
  font-size: 12px;
}

.rate-card small {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rate-card i {
  width: 6px;
  height: 6px;
  background: var(--mint-dark);
  border-radius: 50%;
}

.saving-card {
  right: -30px;
  bottom: 75px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  transform: rotate(3deg);
}

.saving-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #08795f;
  background: rgba(98, 242, 207, 0.28);
  border-radius: 10px;
  font-weight: 900;
}

.saving-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.saving-card small {
  color: #77869b;
  font-size: 8px;
}

.saving-card strong {
  font-size: 15px;
}

.proof-strip {
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
  background: #fbfdff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 31px;
}

.proof-grid > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  padding-left: 0;
}

.proof-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-grid strong {
  color: var(--blue-dark);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.proof-grid span {
  color: #768499;
  font-size: 11px;
  line-height: 1.35;
}

.section {
  padding: 112px 0;
}

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

.section-heading h2,
.privacy-copy h2,
.final-cta h2 {
  margin: 13px 0 15px;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.workflow-section {
  background: var(--white);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.workflow-card {
  position: relative;
  min-width: 0;
  min-height: 590px;
  padding: 31px 31px 0;
  overflow: hidden;
  border: 1px solid rgba(30, 70, 118, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.workflow-card h3,
.feature-tile h3 {
  margin: 18px 0 12px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.workflow-card p,
.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.workflow-card img {
  position: absolute;
  right: -25px;
  bottom: -48px;
  left: -25px;
  width: calc(100% + 50px);
  max-width: none;
}

.scan-card {
  background: linear-gradient(180deg, #f4f8ff, #eef5ff);
}

.compare-card {
  background: linear-gradient(180deg, #f5fffc, #eafff9);
}

.budget-card {
  background: linear-gradient(180deg, #f7f9ff, #eff1ff);
}

.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
}

.step-label span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--blue);
  border-radius: 9px;
  font-size: 10px;
}

.step-label b {
  font-weight: 750;
}

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

.split-heading h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.split-heading > p {
  padding-bottom: 7px;
}

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

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

.feature-tile {
  position: relative;
  min-height: 365px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(26, 65, 112, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 44px rgba(20, 55, 97, 0.06);
}

.feature-tile h3 {
  max-width: 430px;
  font-size: 27px;
}

.feature-tile p {
  max-width: 520px;
}

.feature-large {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.offline-feature {
  grid-column: span 4;
  background: linear-gradient(155deg, #0a2958, #075fff 120%);
}

.offline-feature .mini-kicker,
.offline-feature h3,
.offline-feature p {
  color: var(--white);
}

.offline-feature p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-feature,
.export-feature {
  grid-column: span 4;
}

.feature-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 1fr);
  gap: 30px;
  align-items: center;
}

.mini-kicker {
  font-size: 11px;
}

.dcc-feature {
  background: linear-gradient(145deg, #ffffff, #eef5ff);
}

.dcc-demo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(7, 95, 255, 0.09);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(7, 58, 130, 0.1);
  transform: rotate(1deg);
}

.dcc-demo > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 13px 14px;
  background: #f5f8fd;
  border-radius: 13px;
}

.dcc-demo small {
  color: #768499;
  font-size: 9px;
}

.dcc-demo strong {
  grid-column: 1;
  font-size: 16px;
}

.dcc-demo div > span {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #64738a;
  font-size: 10px;
}

.dcc-demo > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #dce7f6;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(20, 55, 97, 0.12);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.dcc-demo .dcc-warning {
  background: #fff3f0;
}

.dcc-demo .dcc-warning > span {
  color: #d04d32;
  font-weight: 700;
}

.feature-symbol {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  border-radius: 16px;
}

.signal-symbol {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-symbol i {
  width: 6px;
  background: var(--mint);
  border-radius: 4px;
}

.signal-symbol i:nth-child(1) { height: 10px; }
.signal-symbol i:nth-child(2) { height: 18px; }
.signal-symbol i:nth-child(3) { height: 27px; opacity: 0.35; }

.lock-symbol {
  position: relative;
  background: var(--surface-blue);
}

.lock-symbol::before {
  width: 16px;
  height: 14px;
  margin-top: -12px;
  border: 3px solid var(--blue);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  content: "";
}

.lock-symbol i {
  position: absolute;
  bottom: 11px;
  width: 26px;
  height: 22px;
  background: var(--blue);
  border-radius: 7px;
}

.history-feature {
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
}

.ledger-demo {
  padding: 13px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 52, 104, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(12, 52, 104, 0.09);
}

.ledger-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #edf1f6;
}

.ledger-row:last-child {
  border-bottom: 0;
}

.ledger-dot {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.food-dot { background: linear-gradient(135deg, #ffb75c, #ff7d55); }
.shop-dot { background: linear-gradient(135deg, #838cff, #4955e7); }
.transit-dot { background: linear-gradient(135deg, #54dcb8, #18a783); }

.ledger-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.ledger-row b,
.ledger-row strong {
  font-size: 11px;
}

.ledger-row small {
  color: #8390a2;
  font-size: 8px;
}

.export-feature {
  background: linear-gradient(155deg, #edfff9, #f8fffd);
}

.export-symbol {
  color: #087c62;
  background: rgba(98, 242, 207, 0.24);
  font-size: 24px;
  font-weight: 500;
}

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

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  min-height: 580px;
  padding: 66px 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 65%, rgba(51, 133, 255, 0.38), transparent 34%),
    linear-gradient(135deg, #051a3e 0%, #082e68 65%, #0754c4 140%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.privacy-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 410px;
}

.privacy-rings,
.privacy-rings i {
  position: absolute;
  border: 1px solid rgba(120, 192, 255, 0.14);
  border-radius: 50%;
}

.privacy-rings {
  width: 380px;
  height: 380px;
}

.privacy-rings i:nth-child(1) { inset: 38px; }
.privacy-rings i:nth-child(2) { inset: 76px; }
.privacy-rings i:nth-child(3) { inset: 114px; }

.shield-card {
  position: relative;
  z-index: 2;
  width: 278px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 15, 42, 0.3);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.shield-card > strong,
.shield-card > small {
  display: block;
  text-align: center;
}

.shield-card > strong {
  margin-top: 13px;
  font-size: 18px;
}

.shield-card > small {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.shield-lock {
  position: relative;
  display: grid;
  place-items: center;
  width: 70px;
  height: 76px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--mint), #27cda5);
  clip-path: polygon(50% 0, 92% 16%, 86% 70%, 50% 100%, 14% 70%, 8% 16%);
}

.shield-lock::before {
  width: 16px;
  height: 14px;
  margin-top: -11px;
  border: 3px solid #063868;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
}

.shield-lock i {
  position: absolute;
  bottom: 24px;
  width: 25px;
  height: 20px;
  background: #063868;
  border-radius: 6px;
}

.shield-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.shield-card > div b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--mint);
  background: rgba(98, 242, 207, 0.12);
  border-radius: 50%;
  font-size: 9px;
}

.light-kicker {
  color: var(--mint);
}

.privacy-copy h2 {
  font-size: clamp(38px, 4.6vw, 55px);
}

.privacy-copy p {
  margin: 0 0 27px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 730;
}

.light-link {
  color: var(--mint);
}

.final-cta {
  padding-top: 65px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 54px 60px;
  background: linear-gradient(135deg, #f0f6ff, #f4fffb);
  border: 1px solid rgba(7, 95, 255, 0.08);
  border-radius: var(--radius-lg);
}

.final-cta img {
  border-radius: 29px;
  box-shadow: 0 20px 38px rgba(7, 95, 255, 0.24);
}

.final-cta h2 {
  max-width: 690px;
  margin: 8px 0 12px;
  font-size: clamp(32px, 3.8vw, 46px);
}

.final-cta p {
  margin: 0;
  color: var(--muted);
}

.coming-soon-badge {
  display: flex;
  flex-direction: column;
  min-width: 168px;
  padding: 16px 21px;
  color: var(--white);
  background: var(--ink);
  border-radius: 17px;
}

.coming-soon-badge small {
  color: #b9c2d0;
  font-size: 9px;
}

.coming-soon-badge strong {
  font-size: 19px;
}

.site-footer {
  padding: 55px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.footer-brand p,
.footer-meta p {
  margin: 10px 0 0;
  color: #8190a3;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 25px;
  align-items: center;
  color: #55657a;
  font-size: 12px;
  font-weight: 650;
}

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

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 40, 0.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(98, 242, 207, 0.13), transparent 32%),
    var(--white);
  border: 1px solid rgba(7, 95, 255, 0.09);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(2, 23, 55, 0.3);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #53637a;
  background: #f0f4f9;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.contact-modal-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  background: linear-gradient(145deg, var(--blue), #428dff);
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(7, 95, 255, 0.22);
}

.contact-modal-mark::before {
  width: 27px;
  height: 19px;
  border: 2px solid var(--white);
  border-radius: 5px;
  content: "";
}

.contact-modal-mark i {
  position: absolute;
  top: 21px;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.contact-modal-panel h2 {
  margin: 9px 0 12px;
  max-width: 420px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.contact-modal-panel > p:not(.contact-copy-status) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-email-box {
  margin: 25px 0 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #eef5ff, #effffb);
  border: 1px solid rgba(7, 95, 255, 0.08);
  border-radius: 15px;
}

.contact-email-box span,
.contact-email-box code {
  display: block;
}

.contact-email-box span {
  margin-bottom: 3px;
  color: #738198;
  font-size: 10px;
}

.contact-email-box code {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  font-weight: 720;
  user-select: all;
}

.contact-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-modal-actions .button {
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

.contact-copy-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #2c7cff);
  box-shadow: 0 12px 26px rgba(7, 95, 255, 0.2);
}

.contact-send-button {
  color: var(--blue);
  background: var(--surface-blue);
}

.contact-copy-status {
  min-height: 21px;
  margin: 12px 0 -12px;
  color: #08795f;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

/* Privacy policy */
.legal-page {
  background: #f7f9fc;
}

.legal-hero {
  padding: 152px 0 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(44, 124, 255, 0.52), transparent 27%),
    linear-gradient(135deg, #04152f, #072b62 78%, #0648a8);
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
}

.legal-hero .section-kicker {
  color: var(--mint);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 13px 0 18px;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.legal-meta {
  min-width: 210px;
  padding: 19px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.legal-meta span,
.legal-meta strong {
  display: block;
}

.legal-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  text-transform: uppercase;
}

.legal-meta strong {
  margin: 2px 0 12px;
  font-size: 13px;
}

.legal-meta strong:last-child {
  margin-bottom: 0;
}

.legal-main {
  padding: 54px 0 110px;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 42px;
}

.summary-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(20, 55, 97, 0.04);
}

.summary-card > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--blue);
  background: var(--surface-blue);
  border-radius: 12px;
  font-weight: 800;
}

.summary-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 100px;
  padding: 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.policy-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}

.policy-toc a {
  display: block;
  padding: 6px 0;
  color: #6c7a8e;
  font-size: 11px;
  transition: color 150ms ease;
}

.policy-toc a:hover {
  color: var(--blue);
}

.policy-article {
  padding: 16px 54px 54px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(20, 55, 97, 0.05);
}

.policy-article section {
  padding-top: 42px;
}

.policy-article h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.policy-article h3 {
  margin: 25px 0 8px;
  font-size: 16px;
}

.policy-article p,
.policy-article li {
  color: #526278;
  font-size: 14px;
  line-height: 1.8;
}

.policy-article p {
  margin: 0 0 13px;
}

.policy-article ul {
  margin: 12px 0;
  padding-left: 22px;
}

.policy-article li + li {
  margin-top: 7px;
}

.policy-article a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(7, 95, 255, 0.28);
  text-underline-offset: 3px;
}

.policy-callout {
  margin: 20px 0;
  padding: 17px 19px;
  color: var(--navy);
  background: var(--surface-blue);
  border-left: 3px solid var(--blue);
  border-radius: 4px 13px 13px 4px;
  font-size: 13px;
}

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

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 12px;
}

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

.policy-table th {
  color: var(--navy);
  background: #f4f7fb;
  font-weight: 720;
}

.policy-table td {
  color: #596980;
}

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

.policy-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 21px;
  background: linear-gradient(135deg, var(--surface-blue), #f1fffb);
  border-radius: 16px;
}

.policy-contact strong,
.policy-contact span {
  display: block;
}

.policy-contact span {
  color: var(--muted);
  font-size: 11px;
}

.policy-contact a {
  white-space: nowrap;
  font-weight: 700;
}

[data-policy-language][hidden] {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.75fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(50px, 6.5vw, 72px);
  }

  .rate-card { left: 5px; }
  .saving-card { right: -6px; }

  .workflow-card {
    min-height: 560px;
    padding: 27px 25px 0;
  }

  .workflow-card h3 {
    font-size: 22px;
  }

  .privacy-panel {
    gap: 35px;
    padding: 58px 46px;
  }

  .final-cta-inner {
    grid-template-columns: 105px 1fr;
  }

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

  .coming-soon-badge {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    padding-top: 138px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .eyebrow,
  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero h1,
  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-product {
    margin-top: 15px;
  }

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

  .proof-grid > div {
    padding: 14px 22px;
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(3),
  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(3) {
    padding-left: 0;
  }

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

  .workflow-card {
    min-height: 500px;
  }

  .workflow-card img {
    right: 8%;
    bottom: -18%;
    left: auto;
    width: 55%;
  }

  .workflow-card h3,
  .workflow-card p {
    max-width: 44%;
  }

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

  .offline-feature,
  .privacy-feature,
  .export-feature {
    grid-column: span 6;
  }

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

  .privacy-visual {
    min-height: 340px;
  }

  .privacy-copy {
    text-align: center;
  }

  .legal-hero-inner {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    justify-self: start;
  }

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

  .policy-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 17px;
  }

  .policy-toc strong {
    width: 100%;
  }
}

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

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

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .menu-button {
    display: block;
  }

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

  .menu-button[aria-expanded="true"] > span:not(.sr-only):nth-of-type(3) {
    opacity: 0;
  }

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

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 67px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 40px rgba(9, 38, 75, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, padding 220ms ease, opacity 160ms ease, visibility 160ms ease;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    max-height: 420px;
    padding-top: 14px;
    padding-bottom: 22px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switch {
    align-self: flex-start;
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 55px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(43px, 13.4vw, 62px);
  }

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

  .hero-actions {
    flex-direction: column;
    gap: 19px;
  }

  .trust-list {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero-product {
    min-height: 600px;
    transform: scale(0.88);
    margin: -20px -25px -55px;
  }

  .rate-card {
    left: 2%;
  }

  .saving-card {
    right: 0;
  }

  .proof-grid strong {
    font-size: 21px;
  }

  .section {
    padding: 80px 0;
  }

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

  .section-heading h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .section-heading p {
    font-size: 15px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .workflow-card {
    min-height: 550px;
  }

  .workflow-card h3,
  .workflow-card p {
    max-width: none;
  }

  .workflow-card img {
    right: -15px;
    bottom: -45px;
    width: calc(100% + 30px);
  }

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

  .offline-feature,
  .privacy-feature,
  .export-feature {
    grid-column: 1 / -1;
  }

  .feature-tile {
    min-height: auto;
    padding: 28px;
  }

  .feature-symbol {
    margin-bottom: 32px;
  }

  .feature-tile h3 {
    font-size: 24px;
  }

  .dcc-demo,
  .ledger-demo {
    margin-top: 12px;
  }

  .privacy-panel {
    gap: 20px;
    padding: 38px 24px 48px;
    border-radius: 28px;
  }

  .privacy-visual {
    min-height: 320px;
    transform: scale(0.88);
    margin: -15px;
  }

  .final-cta {
    padding-top: 30px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 38px 28px;
    text-align: center;
  }

  .final-cta img,
  .coming-soon-badge {
    justify-self: center;
  }

  .coming-soon-badge {
    grid-column: 1;
    align-items: flex-start;
    text-align: left;
  }

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

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .footer-meta {
    grid-column: 1;
    flex-direction: column;
    gap: 4px;
  }

  .contact-modal {
    align-items: end;
    padding: 12px;
  }

  .contact-modal-panel {
    max-height: calc(100dvh - 24px);
    padding: 34px 22px 24px;
    overflow-y: auto;
    border-radius: 24px;
  }

  .contact-modal-close {
    top: 14px;
    right: 14px;
  }

  .contact-modal-panel h2 {
    padding-right: 24px;
    font-size: 26px;
  }

  .contact-modal-actions {
    grid-template-columns: 1fr;
  }

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

  .legal-hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .policy-summary {
    grid-template-columns: 1fr;
  }

  .policy-article {
    padding: 0 23px 35px;
    border-radius: 19px;
  }

  .policy-article h2 {
    font-size: 21px;
  }

  .policy-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 410px) {
  .hero-product {
    transform: scale(0.78);
    margin: -55px -50px -95px;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:nth-child(3) {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .proof-grid > div:first-child {
    border-top: 0;
  }

  .workflow-card {
    min-height: 500px;
  }

  .privacy-visual {
    transform: scale(0.78);
    margin: -45px;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .policy-toc,
  .policy-summary {
    display: none !important;
  }

  body,
  .legal-page {
    color: #000;
    background: #fff;
  }

  .legal-hero {
    padding: 30px 0;
    color: #000;
    background: #fff;
    border-bottom: 1px solid #ccc;
  }

  .legal-hero p,
  .legal-hero .section-kicker,
  .legal-meta span {
    color: #333;
  }

  .legal-meta,
  .policy-article {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .legal-main {
    padding: 0;
  }

  .policy-article section {
    break-inside: avoid;
  }
}
