:root {
  --ink: #12211d;
  --ink-soft: #4f5d57;
  --paper: #f4f3ec;
  --paper-light: #fbfaf6;
  --card: #fffefa;
  --green: #118c4f;
  --green-dark: #0c6f3d;
  --forest: #102d27;
  --mint: #d9f1df;
  --lime: #d7f169;
  --line: rgba(18, 33, 29, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 28px 80px rgba(31, 55, 46, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--mint);
  color: var(--forest);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

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

h1,
h2,
h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3.35rem, 7.2vw, 6.45rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 128px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #a9dfbd;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(17, 140, 79, 0.12);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--primary,
.button:not([class*="button--"]):not(.button-secondary) {
  background: var(--forest);
  color: #fff;
}

.button--primary:hover,
.button:not([class*="button--"]):not(.button-secondary):hover {
  background: #071d18;
}

.button--light {
  background: #f7f5eb;
  color: var(--forest);
}

.button--quiet,
.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.78rem;
}

.button--store {
  min-width: 205px;
  justify-content: flex-start;
  padding: 12px 21px;
  border-radius: 18px;
}

.button--store small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.button__mark {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 800;
}

.is-disabled,
[aria-disabled="true"] {
  cursor: default;
}

.button.is-disabled {
  opacity: 0.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.94rem;
  font-weight: 740;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  width: 0;
  height: 1px;
  content: "";
}

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

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid transparent;
}

.site-header[data-header] {
  position: sticky;
  top: 0;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-bottom-color: var(--line);
  background: rgba(244, 243, 236, 0.88);
  box-shadow: 0 7px 24px rgba(20, 40, 34, 0.04);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(25, 65, 52, 0.14);
}

.brand-name {
  font-size: 1.22rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #46534e;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: 68px 0 0;
}

.hero::before {
  position: absolute;
  top: 80px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(211, 239, 221, 0.48);
  content: "";
  filter: blur(1px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 42px 0 90px;
}

.hero-copy h1 {
  max-width: 740px;
  margin-bottom: 30px;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 31px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  color: #5c6964;
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.hero-trust span {
  color: var(--green);
  font-weight: 800;
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 690px;
}

.phone-frame {
  position: absolute;
  z-index: 3;
  bottom: -52px;
  left: 50%;
  width: 342px;
  height: 688px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 54px;
  background: #101513;
  box-shadow: 0 55px 100px rgba(17, 46, 38, 0.24), 0 10px 28px rgba(17, 46, 38, 0.17);
  transform: translateX(-50%) rotate(1.2deg);
}

.phone-frame::before {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background: #0a0d0c;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 18px 20px 22px;
  border-radius: 45px;
  background: #f6f6f1;
}

.phone-status {
  display: flex;
  height: 31px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 7px;
  color: #14211e;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px 20px;
}

.app-heading small,
.app-heading strong {
  display: block;
}

.app-heading small {
  margin-bottom: 3px;
  color: #6b7672;
  font-size: 0.69rem;
}

.app-heading strong {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.app-heading img {
  border-radius: 11px;
}

.balance-card {
  padding: 23px;
  border-radius: 25px;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 14px 35px rgba(16, 45, 39, 0.18);
}

.balance-card > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

.balance-card > strong {
  display: block;
  margin: 5px 0 17px;
  font-size: 2.1rem;
  letter-spacing: -0.055em;
}

.balance-card > strong small {
  font-size: 1rem;
  font-weight: 650;
}

.balance-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
}

.app-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 2px 11px;
}

.app-section-title strong {
  font-size: 0.88rem;
}

.app-section-title span {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 650;
}

.voucher-card {
  display: grid;
  align-items: center;
  margin-bottom: 9px;
  padding: 12px;
  border: 1px solid rgba(20, 44, 36, 0.07);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(30, 51, 44, 0.055);
  grid-template-columns: 39px minmax(0, 1fr) auto;
  gap: 10px;
}

.voucher-store {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
}

.voucher-store--green {
  background: var(--green);
}

.voucher-store--navy {
  background: #27433b;
}

.voucher-data strong,
.voucher-data span {
  display: block;
  white-space: nowrap;
}

.voucher-data strong {
  overflow: hidden;
  font-size: 0.68rem;
  text-overflow: ellipsis;
}

.voucher-data span {
  margin-top: 2px;
  color: #7b8581;
  font-size: 0.57rem;
}

.voucher-amount {
  font-size: 0.68rem;
}

.scan-button {
  position: absolute;
  right: 20px;
  bottom: 31px;
  left: 20px;
  display: flex;
  height: 49px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 17px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 760;
}

.scan-button span {
  font-size: 1.1rem;
}

.phone-homebar {
  position: absolute;
  bottom: 9px;
  left: 50%;
  width: 103px;
  height: 4px;
  border-radius: 999px;
  background: #15211e;
  transform: translateX(-50%);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 174px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 17px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 18px 45px rgba(25, 50, 42, 0.13);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.floating-note small,
.floating-note strong {
  display: block;
}

.floating-note small {
  color: #71807a;
  font-size: 0.61rem;
  line-height: 1.25;
}

.floating-note strong {
  margin-top: 2px;
  font-size: 0.86rem;
}

.floating-note__icon,
.floating-note__check {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: #fff0c7;
  color: #7a5a09;
  font-size: 0.8rem;
  font-weight: 800;
}

.floating-note__check {
  background: var(--mint);
  color: var(--green-dark);
}

.floating-note--top {
  top: 119px;
  right: -8px;
}

.floating-note--bottom {
  right: -14px;
  bottom: 88px;
}

.orbit {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(17, 140, 79, 0.13);
  border-radius: 50%;
  transform: translateX(-50%);
}

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

.orbit--two {
  bottom: 111px;
  width: 410px;
  height: 410px;
  border-color: rgba(17, 140, 79, 0.08);
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  color: #63706b;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.hero-footnote p {
  margin: 0;
}

.hero-footnote span {
  height: 1px;
  flex: 1;
  background: var(--line);
}

/* Editorial */
.editorial-section {
  padding: 155px 0;
  background: var(--paper-light);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
}

.section-index {
  padding-top: 13px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-grid h2 {
  max-width: 900px;
  margin-bottom: 36px;
}

.editorial-grid > div > p {
  max-width: 650px;
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.75;
}

/* How it works */
.how-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 72px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 70px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > .eyebrow {
  margin-bottom: -42px;
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

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

.step-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.4);
}

.step-card--accent {
  border-color: transparent;
  background: var(--mint);
}

.step-top {
  display: flex;
  min-height: 145px;
  align-items: flex-start;
  justify-content: space-between;
}

.step-number {
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.step-top svg {
  width: 57px;
  height: 57px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.step-card h3 {
  margin-bottom: 16px;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Features */
.features-section {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.feature-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
}

.feature-sticky {
  position: sticky;
  top: 125px;
}

.feature-sticky h2 {
  margin-bottom: 30px;
}

.feature-sticky > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.mini-stat {
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mini-stat strong {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 1.65rem;
  letter-spacing: -0.045em;
}

.mini-stat span {
  max-width: 150px;
  color: #68756f;
  font-size: 0.73rem;
  line-height: 1.4;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
}

.feature-card--dark {
  border-color: transparent;
  background: var(--forest);
  color: #fff;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 72px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f6f6ef;
  color: var(--green-dark);
  font-size: 1.22rem;
  font-weight: 700;
}

.feature-card--dark .feature-icon {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--lime);
}

.feature-label {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card--dark .feature-label {
  color: #a9dfbd;
}

.feature-card h3 {
  margin-bottom: 17px;
}

.feature-card > p:last-of-type {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.72;
}

.feature-card--dark > p:last-of-type {
  color: rgba(255, 255, 255, 0.68);
}

.scan-lines {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: grid;
  padding: 17px;
  border: 1px solid rgba(17, 140, 79, 0.15);
  border-radius: 15px;
  gap: 7px;
}

.scan-lines span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #dfe7e1;
}

.scan-lines span:nth-child(2) {
  width: 72%;
}

.scan-lines span:nth-child(3) {
  width: 52%;
}

.scan-lines i {
  position: absolute;
  top: 50%;
  right: -1px;
  left: -1px;
  height: 1px;
  background: var(--green);
  box-shadow: 0 0 9px rgba(17, 140, 79, 0.5);
}

.notification-preview {
  position: absolute;
  right: 25px;
  bottom: 28px;
  left: 25px;
  display: grid;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
}

.notification-preview img {
  border-radius: 9px;
}

.notification-preview strong,
.notification-preview span {
  display: block;
}

.notification-preview strong {
  font-size: 0.67rem;
}

.notification-preview span {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.56rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-preview small {
  align-self: start;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.48rem;
}

.filter-pills {
  position: absolute;
  right: 27px;
  bottom: 29px;
  left: 27px;
  display: flex;
  gap: 6px;
}

.filter-pills span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #7a8580;
  font-size: 0.53rem;
}

.filter-pills .active {
  border-color: transparent;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 700;
}

.barcode {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: flex;
  height: 59px;
  align-items: stretch;
  justify-content: center;
  gap: 3px;
}

.barcode i {
  width: 3px;
  background: var(--ink);
}

.barcode i:nth-child(3n) {
  width: 7px;
}

.barcode i:nth-child(4n) {
  width: 2px;
}

/* Privacy */
.privacy-section {
  overflow: hidden;
  padding: 145px 0;
  background: var(--forest);
  color: #fff;
}

.privacy-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 95px;
}

.privacy-symbol {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  place-items: center;
}

.privacy-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(215, 241, 105, 0.22);
  border-radius: 50%;
}

.privacy-ring::before,
.privacy-ring::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.privacy-ring::after {
  inset: 29%;
}

.privacy-lock {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 94px;
  border-radius: 27px;
  background: var(--lime);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.privacy-lock::before {
  position: absolute;
  top: -58px;
  left: 24px;
  width: 60px;
  height: 72px;
  border: 11px solid var(--lime);
  border-bottom: 0;
  border-radius: 35px 35px 0 0;
  content: "";
}

.privacy-lock span {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 12px;
  height: 30px;
  border-radius: 999px;
  background: var(--forest);
  transform: translateX(-50%);
}

.privacy-copy h2 {
  margin-bottom: 31px;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.08rem;
  line-height: 1.75;
}

.privacy-points {
  margin: 37px 0 39px;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.92rem;
}

.privacy-points li:first-child {
  border-top: 1px solid var(--line-light);
}

.privacy-points span {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

/* Compatibility */
.compatibility-section {
  background: var(--paper);
}

.compatibility-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
}

.compatibility-grid h2 {
  margin-bottom: 0;
}

.compatibility-lead {
  margin: 46px 0 25px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.8;
}

.legal-note {
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #5f6c67;
  font-size: 0.74rem;
  line-height: 1.7;
}

/* FAQ */
.faq-section {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin-bottom: 28px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 7px;
  color: var(--ink-soft);
}

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

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary > span {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  transition: transform 180ms ease;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 9px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.faq-list summary > span::after {
  transform: rotate(90deg);
}

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

.faq-list details > p {
  max-width: 670px;
  margin: -3px 45px 27px 4px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Support CTA */
.support-section {
  padding: 42px 0 115px;
  background: var(--paper-light);
}

.support-section > .support-card {
  position: relative;
  display: grid;
  min-height: 350px;
  align-items: center;
  overflow: hidden;
  padding: 60px;
  border-radius: var(--radius-lg);
  background: var(--mint);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
}

.support-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.support-copy h2 {
  margin-bottom: 25px;
}

.support-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.support-action {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 200px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.support-action > a {
  font-size: 0.75rem;
  font-weight: 670;
  text-decoration: none;
}

.support-decoration {
  position: absolute;
  top: 50%;
  right: -88px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(16, 45, 39, 0.13);
  border-radius: 50%;
  transform: translateY(-50%);
}

.support-decoration span {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(16, 45, 39, 0.1);
  border-radius: 50%;
}

.support-decoration span:nth-child(2) {
  inset: 35%;
}

.support-decoration span:nth-child(3) {
  inset: 47%;
  background: var(--lime);
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  background: #0b211c;
  color: #fff;
}

.site-footer .brand {
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 65px;
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 95px;
}

.footer-links > div {
  display: flex;
  min-width: 110px;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

/* Informational pages */
.page-hero {
  padding: 100px 0 92px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 80% 20%, rgba(217, 241, 223, 0.72), transparent 32%), var(--paper);
}

.page-hero .container {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 28px;
}

.page-hero .prose {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.75;
}

.legal-meta {
  margin: 28px 0 0;
  color: #5f6c67;
  font-size: 0.78rem;
}

.prose {
  color: var(--ink-soft);
}

.legal-content {
  max-width: 850px;
}

.legal-content > section {
  margin: 78px 0;
  scroll-margin-top: 105px;
}

.legal-content h2 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}

.legal-content h3 {
  margin: 35px 0 13px;
  color: var(--ink);
  font-size: 1.16rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
}

.legal-content a {
  color: var(--green-dark);
  overflow-wrap: anywhere;
}

.legal-content ul {
  padding-left: 22px;
}

.content-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: 0 12px 35px rgba(25, 48, 41, 0.035);
}

.content-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.content-card h3 {
  font-size: 1.5rem;
}

.content-card > :last-child {
  margin-bottom: 0;
}

.legal-summary {
  border-color: rgba(17, 140, 79, 0.22);
  background: var(--mint);
}

.legal-summary ul {
  margin-bottom: 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: var(--paper-light);
}

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

.support-grid .support-card {
  min-height: 100%;
}

.support-grid .support-card > p:not(.eyebrow),
.support-grid .support-card li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.support-grid .button {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.support-closing {
  padding-top: 0;
}

.support-closing .content-card {
  max-width: 850px;
  border-color: transparent;
  background: var(--mint);
}

.support-closing .content-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.footer-shell {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 35px;
}

.footer-shell nav {
  justify-self: center;
}

.footer-shell .footer-links {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

/* 404 */
.error-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.error-page .site-header {
  border-bottom: 1px solid var(--line);
}

.error-page .site-header > .container {
  display: flex;
  min-height: 82px;
  align-items: center;
}

.error-page__content {
  display: grid;
  flex: 1;
  place-items: center;
  padding: 90px 0;
  text-align: center;
}

.error-page__content .container {
  max-width: 760px;
}

.error-page__content .eyebrow {
  justify-content: center;
}

.error-page__content h1 {
  margin-bottom: 25px;
}

.error-page__content p:not(.eyebrow) {
  max-width: 530px;
  margin: 0 auto 33px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.error-page .site-footer {
  padding: 24px 0;
}

.error-page .site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 35px;
  }

  .floating-note--top,
  .floating-note--bottom {
    right: -35px;
  }

  .feature-layout {
    gap: 42px;
  }

  .feature-card {
    min-height: 460px;
  }

  .privacy-grid {
    gap: 45px;
  }

  .faq-layout {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .section {
    padding: 95px 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 81px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 23px 18px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(244, 243, 236, 0.98);
    box-shadow: 0 16px 35px rgba(20, 40, 34, 0.08);
    flex-direction: column;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 13px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .site-nav > .button {
    align-self: flex-start;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding: 40px 0 20px;
  }

  .hero-art {
    min-height: 650px;
  }

  .floating-note--top {
    right: 7%;
  }

  .floating-note--bottom {
    right: 4%;
  }

  .editorial-section {
    padding: 110px 0;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .editorial-grid > div > p {
    margin-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > .eyebrow {
    margin-bottom: 0;
  }

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

  .step-card {
    min-height: 280px;
  }

  .step-top {
    min-height: 95px;
  }

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

  .feature-sticky,
  .faq-intro {
    position: static;
  }

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

  .privacy-symbol {
    width: 330px;
    margin-inline: auto;
  }

  .compatibility-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .compatibility-lead {
    margin-top: 0;
  }

  .support-section > .support-card {
    align-items: start;
    padding: 45px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .support-action {
    align-items: flex-start;
  }

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

  .footer-shell nav {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    min-height: 72px;
  }

  .site-nav {
    top: 71px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-art {
    min-height: 590px;
  }

  .phone-frame {
    bottom: -38px;
    width: 292px;
    height: 590px;
    border-radius: 46px;
  }

  .phone-screen {
    padding: 16px 16px 20px;
    border-radius: 37px;
  }

  .balance-card {
    padding: 19px;
  }

  .balance-card > strong {
    font-size: 1.75rem;
  }

  .voucher-card {
    padding: 10px;
  }

  .floating-note {
    min-width: 146px;
    padding: 10px;
  }

  .floating-note--top {
    top: 92px;
    right: -8px;
  }

  .floating-note--bottom {
    right: -6px;
    bottom: 70px;
  }

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

  .orbit--two {
    width: 310px;
    height: 310px;
  }

  .hero-footnote {
    display: none;
  }

  .editorial-section,
  .section,
  .privacy-section {
    padding: 82px 0;
  }

  .editorial-grid h2,
  .section-heading h2,
  .feature-sticky h2,
  .privacy-copy h2,
  .compatibility-grid h2,
  .faq-intro h2 {
    font-size: clamp(2.45rem, 12.5vw, 3.6rem);
  }

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

  .feature-card {
    min-height: 420px;
  }

  .privacy-symbol {
    width: 250px;
  }

  .privacy-lock {
    transform: scale(0.82);
  }

  .support-section {
    padding: 20px 0 82px;
  }

  .support-section > .support-card {
    padding: 34px 26px;
    border-radius: 24px;
  }

  .support-copy h2 {
    font-size: 2.6rem;
  }

  .support-action {
    min-width: 0;
  }

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

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 35px;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }

  .page-hero {
    padding: 72px 0 68px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .content-card {
    padding: 26px;
  }

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

  .footer-shell .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 24px;
  }

  .legal-content > section {
    margin: 62px 0;
  }

  .error-page__content h1 {
    font-size: 3.6rem;
  }
}

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

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