:root {
  --ink: #0b2620;
  --forest: #073f34;
  --forest-2: #0a4b3e;
  --lime: #c8f05a;
  --mint: #dff2e9;
  --cream: #f6f3ea;
  --paper: #fffdf8;
  --line: rgba(11, 38, 32, 0.14);
  --muted: #61716c;
  --white: #fff;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(15, 51, 43, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

img,
svg {
  display: block;
}

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

.section {
  padding: 112px 0;
}

.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(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.topbar {
  position: relative;
  z-index: 20;
  color: #eaf4ef;
  background: #062e27;
  font-size: 12px;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.topbar__inner > a {
  margin-left: 12px;
  color: var(--lime);
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 240, 90, 0.14);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  background: rgba(7, 63, 52, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest);
  background: var(--lime);
  border-radius: 10px;
}

.brand__mark svg {
  width: 28px;
  fill: currentColor;
}

.brand__mark svg path:last-child {
  fill: var(--lime);
}

.brand__text {
  font-size: 19px;
  font-weight: 820;
  letter-spacing: -0.7px;
}

.brand__text span {
  color: var(--lime);
}

.brand__city {
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button--small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 12px;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(5, 26, 22, .16);
}

.button--dark:hover {
  background: #051d18;
}

.nav-cta {
  color: var(--ink);
  background: var(--lime);
  box-shadow: none;
}

.button--lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 15px 36px rgba(178, 219, 65, .18);
}

.button--lime:hover,
.nav-cta:hover {
  background: #d5fa6d;
}

.button--full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  background: transparent;
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 10px;
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 auto;
  padding: 24px 20px 28px;
  color: var(--white);
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

.mobile-nav a {
  display: block;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 88px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 64% 70%, rgba(25, 101, 83, .75), transparent 32%),
    linear-gradient(145deg, #073f34 0%, #06372f 50%, #052e28 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.12);
}

.hero__glow {
  position: absolute;
  border: 1px solid rgba(200, 240, 90, .1);
  border-radius: 50%;
}

.hero__glow--one {
  width: 620px;
  height: 620px;
  top: -310px;
  left: -190px;
}

.hero__glow--two {
  width: 850px;
  height: 850px;
  right: -490px;
  bottom: -530px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}

.hero__content {
  padding-bottom: 76px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  color: #dcebe5;
}

.eyebrow__icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 16px;
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .96;
}

.hero h1 span,
h2 em {
  color: var(--lime);
  font-weight: 400;
  font-style: italic;
}

.hero__lead {
  max-width: 590px;
  margin: 0;
  color: #bdd0ca;
  font-size: 17px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  color: #e8f2ee;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
  color: var(--lime);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 54px;
}

.hero__proof div {
  display: flex;
  flex-direction: column;
}

.hero__proof strong {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.hero__proof span:not(.proof-divider) {
  margin-top: 6px;
  color: #90aaa2;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.14);
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.availability-pill {
  position: absolute;
  z-index: 7;
  top: 0;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.13);
  color: #c4d7d0;
  background: rgba(4, 42, 35, .72);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 10px;
}

.availability-pill span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.availability-pill strong {
  color: var(--white);
}

.terminal-scene {
  position: absolute;
  inset: 34px 0 0;
}

.terminal-scene::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: 70px;
  left: 84px;
  background: radial-gradient(circle, rgba(200, 240, 90, .17), rgba(200, 240, 90, .02) 56%, transparent 70%);
  border-radius: 50%;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(200, 240, 90, .13);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.orbit--one {
  width: 460px;
  height: 290px;
  top: 124px;
  left: 16px;
}

.orbit--two {
  width: 390px;
  height: 220px;
  top: 154px;
  left: 52px;
}

.terminal {
  position: absolute;
  z-index: 4;
  top: 34px;
  left: 50%;
  width: 224px;
  height: 452px;
  padding: 19px 18px;
  background: linear-gradient(145deg, #202a29, #070d0c 72%);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 32px 32px 40px 40px;
  box-shadow: 12px 38px 65px rgba(0, 0, 0, .48), inset 2px 2px 3px rgba(255,255,255,.1);
  transform: translateX(-50%) rotate(-5deg);
}

.terminal::after {
  content: "";
  position: absolute;
  inset: 4px 4px auto auto;
  width: 36%;
  height: 55%;
  border-right: 1px solid rgba(255,255,255,.07);
  border-radius: 0 28px 25px 0;
}

.terminal__speaker {
  width: 38px;
  height: 4px;
  margin: 0 auto 12px;
  background: #070b0b;
  border-radius: 4px;
}

.terminal__screen {
  position: relative;
  z-index: 2;
  height: 203px;
  padding: 13px 13px 15px;
  color: var(--ink);
  background: linear-gradient(165deg, #eff9c8, #d9f471 54%, #bddd55);
  border: 2px solid #030706;
  border-radius: 13px;
  box-shadow: inset 0 0 22px rgba(255,255,255,.45);
  text-align: center;
}

.screen-brand {
  text-align: left;
  font-size: 10px;
  font-weight: 850;
}

.screen-icon {
  display: grid;
  width: 49px;
  height: 49px;
  margin: 10px auto 7px;
  place-items: center;
  border: 1px solid rgba(11,38,32,.18);
  border-radius: 50%;
}

.screen-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.terminal__screen small,
.terminal__screen span {
  display: block;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .12em;
}

.terminal__screen strong {
  display: block;
  margin: 3px 0 9px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.terminal__screen span {
  padding: 5px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  letter-spacing: 0;
}

.terminal__keys,
.classic-device__keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 13px;
  padding: 17px 13px 10px;
}

.terminal__keys i,
.classic-device__keys i {
  height: 15px;
  background: linear-gradient(#29302f, #141918);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0,0,0,.5);
}

.terminal__keys .key--red { background: #a84840; }
.terminal__keys .key--yellow { background: #d69b38; }
.terminal__keys .key--green { background: #4d9d69; }

.terminal__brand {
  margin-top: 11px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.contactless-card {
  position: absolute;
  z-index: 2;
  width: 188px;
  height: 112px;
  padding: 18px;
  background: linear-gradient(135deg, #e1f1b0, #abc34e);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 17px;
  box-shadow: 0 24px 40px rgba(0,0,0,.25);
}

.contactless-card--back {
  top: 102px;
  left: 26px;
  transform: rotate(-17deg);
}

.contactless-card__top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-style: italic;
  font-weight: 900;
}

.contactless-card__top i {
  width: 28px;
  height: 21px;
  background: #d3b55a;
  border-radius: 4px;
}

.contactless-card > strong {
  display: block;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: .1em;
}

.success-card {
  position: absolute;
  z-index: 6;
  right: -8px;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255, 253, 248, .95);
  border-radius: 13px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  transform: rotate(-2deg);
}

.success-card__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
}

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

.success-card small {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.success-card strong {
  font-size: 11px;
}

.tap-card {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 119px;
  width: 128px;
  height: 76px;
  padding: 15px;
  color: var(--white);
  background: linear-gradient(135deg, #315e53, #15342d);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transform: rotate(14deg);
}

.tap-card span {
  font-size: 8px;
  letter-spacing: .08em;
}

.tap-card svg {
  width: 27px;
  margin: 10px 0 0 auto;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.payment-strip {
  position: relative;
  z-index: 3;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
}

.payment-strip > span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.payment-strip > strong {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  letter-spacing: .02em;
}

.mastercard {
  display: inline-flex;
  align-items: center;
  font-size: 11px !important;
}

.mastercard i {
  width: 18px;
  height: 18px;
  background: #eb6e49;
  border-radius: 50%;
}

.mastercard i:nth-child(2) {
  margin-left: -7px;
  margin-right: 5px;
  background: rgba(241, 177, 55, .86);
}

.section-kicker {
  color: #6d7b76;
}

h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: 1.02;
}

h2 em {
  color: #3c7b68;
}

.intro {
  padding-bottom: 80px;
  background: var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 130px;
  align-items: end;
}

.intro__copy > p {
  max-width: 590px;
  margin: 0 0 28px;
  color: #50625c;
  font-size: 16px;
  line-height: 1.8;
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 21px;
}

.mini-features span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 750;
}

.mini-features i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--forest);
  background: var(--lime);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.products {
  padding-top: 90px;
  background: var(--paper);
}

.section-heading {
  position: relative;
  margin-bottom: 56px;
}

.section-heading > p {
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f3f0e7;
  border: 1px solid rgba(11,38,32,.08);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card--featured {
  background: #ebf5d3;
  border-color: rgba(105,143,44,.22);
}

.product-card__meta {
  position: absolute;
  z-index: 3;
  inset: 18px 18px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tag {
  padding: 7px 10px;
  color: #52635d;
  background: rgba(255,255,255,.7);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tag--lime { color: var(--ink); background: var(--lime); }
.tag--mint { color: #174d41; background: #d2eee3; }

.product-number {
  color: #78857f;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.product-device {
  position: relative;
  height: 300px;
}

.product-device::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 245px;
  height: 245px;
  left: 50%;
  bottom: 3px;
  background: rgba(255,255,255,.56);
  border-radius: 50%;
  transform: translateX(-50%);
}

.smart-device {
  z-index: 1;
  width: 156px;
  height: 255px;
  margin: 57px auto 0;
  padding: 12px;
  background: linear-gradient(150deg, #27302e, #0b1110);
  border-radius: 22px 22px 31px 31px;
  box-shadow: 13px 19px 30px rgba(19,38,33,.28);
  transform: rotate(-5deg);
}

.smart-device::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 245px;
  height: 245px;
  left: 50%;
  bottom: -8px;
  background: rgba(255,255,255,.56);
  border-radius: 50%;
  transform: translateX(-50%);
}

.smart-device::after {
  display: none;
}

.smart-device__screen {
  position: relative;
  z-index: 1;
  height: 166px;
  padding: 12px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 12px;
  text-align: center;
}

.smart-device__screen > span {
  display: block;
  text-align: left;
  font-size: 8px;
  font-weight: 850;
}

.smart-device__screen svg,
.phone-device svg {
  width: 49px;
  margin: 20px auto 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.smart-device__screen small {
  font-size: 7px;
  font-weight: 700;
}

.classic-device {
  z-index: 1;
  width: 150px;
  height: 245px;
  margin: 57px auto 0;
  padding: 15px 12px;
  background: linear-gradient(155deg, #333c3a, #101615);
  border-radius: 21px 21px 32px 32px;
  box-shadow: 13px 19px 30px rgba(19,38,33,.28);
  transform: rotate(5deg);
}

.classic-device::after { display: none; }

.classic-device::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 245px;
  height: 245px;
  left: 50%;
  bottom: -8px;
  background: rgba(255,255,255,.65);
  border-radius: 50%;
  transform: translateX(-50%);
}

.classic-device__screen {
  display: flex;
  height: 105px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #172c26;
  background: #d8e6d2;
  border: 2px solid #070c0b;
  border-radius: 9px;
}

.classic-device__screen span { font-family: Georgia, serif; font-size: 19px; }
.classic-device__screen small { margin-top: 7px; font-size: 6px; font-weight: 800; }
.classic-device__keys { gap: 6px 10px; padding: 14px 9px; }
.classic-device__keys i { height: 11px; }

.phone-device {
  z-index: 1;
  width: 146px;
  height: 260px;
  margin: 50px auto 0;
  padding: 20px 14px;
  color: var(--ink);
  background: linear-gradient(155deg, #effcf4, #bfe9d8);
  border: 7px solid #12201d;
  border-radius: 29px;
  box-shadow: 13px 19px 30px rgba(19,38,33,.23);
  text-align: center;
  transform: rotate(-3deg);
}

.phone-device::after { display: none; }

.phone-device::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 245px;
  height: 245px;
  left: 50%;
  bottom: -5px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  transform: translateX(-50%);
}

.phone-device__notch {
  position: absolute;
  width: 54px;
  height: 12px;
  top: -1px;
  left: 50%;
  background: #12201d;
  border-radius: 0 0 8px 8px;
  transform: translateX(-50%);
}

.phone-device__brand {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  font-weight: 850;
}

.phone-device svg { margin-top: 26px; }
.phone-device strong { display: block; margin: 12px 0 18px; font-family: Georgia, serif; font-size: 19px; }
.phone-device small { display: block; padding: 7px 3px; color: var(--white); background: var(--forest); border-radius: 7px; font-size: 6px; }

.product-card__body {
  position: relative;
  z-index: 2;
  padding: 24px 28px 28px;
  background: rgba(255,255,255,.94);
  border-radius: 20px 20px 0 0;
}

.product-type {
  color: #75837e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.product-card h3 {
  margin: 8px 0 8px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.product-card__body > p {
  min-height: 63px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  color: #344a44;
  font-size: 11px;
  font-weight: 600;
}

.product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3d806b;
  font-weight: 900;
}

.card-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.card-link span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  transition: transform .2s ease;
}

.card-link:hover span { transform: translateX(3px); }

.program {
  background: var(--paper);
}

.program__card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 80%, rgba(43, 115, 95, .7), transparent 35%),
    var(--forest);
  border-radius: var(--radius-lg);
}

.program__card::before,
.program__card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(200,240,90,.11);
  border-radius: 50%;
}

.program__card::before { width: 560px; height: 560px; right: -190px; top: -190px; }
.program__card::after { width: 380px; height: 380px; right: -90px; top: -80px; }

.program__content {
  position: relative;
  z-index: 3;
  width: 58%;
  padding: 72px 0 62px 70px;
}

.section-kicker--light { color: #b7cdc5; }
.program h2 { font-size: clamp(48px, 5vw, 68px); }
.program h2 em { color: var(--lime); }

.program__content > p {
  max-width: 530px;
  margin: 23px 0 28px;
  color: #b7cbc4;
  font-size: 14px;
  line-height: 1.8;
}

.program__stats {
  display: flex;
  gap: 0;
  margin: 25px 0 30px;
}

.program__stats > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.program__stats > div:first-child { padding-left: 0; }
.program__stats > div:last-child { border: 0; }
.program__stats strong { color: var(--lime); font-family: Georgia, serif; font-size: 31px; font-weight: 500; }
.program__stats span { color: #b6cac3; font-size: 9px; line-height: 1.35; text-transform: uppercase; }

.program__fineprint {
  display: block;
  max-width: 570px;
  margin-top: 21px;
  color: #73968b;
  font-size: 8px;
  line-height: 1.55;
}

.program__visual {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 auto;
  width: 44%;
}

.zero-ring {
  position: absolute;
  right: 55px;
  top: 92px;
  display: grid;
  width: 272px;
  height: 272px;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(200,240,90,.35);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 170px;
  font-style: italic;
  line-height: 1;
  text-shadow: 0 0 50px rgba(200,240,90,.12);
}

.zero-ring::before,
.zero-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(200,240,90,.12);
  border-radius: 50%;
}

.zero-ring::before { inset: -32px; }
.zero-ring::after { inset: 28px; }
.zero-ring span { position: absolute; right: 22px; bottom: 58px; font-family: Inter, sans-serif; font-size: 21px; font-style: normal; font-weight: 800; }

.program-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 162px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255,253,248,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.program-card i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.program-card span { color: #75817d; font-size: 8px; text-transform: uppercase; }
.program-card strong { color: var(--ink); font-size: 9px; }
.program-card--one { top: 76px; left: 3px; transform: rotate(-4deg); }
.program-card--two { top: 333px; right: 25px; transform: rotate(4deg); }
.program-card--three { bottom: 67px; left: 10px; transform: rotate(-2deg); }

.fit {
  background: #f0ede4;
}

.fit__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.fit__heading > p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.fit__tabs {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.fit-tab {
  min-width: 220px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  color: #60716b;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.fit-tab::after { content: "→"; float: right; opacity: 0; }
.fit-tab.is-active { color: var(--white); background: var(--forest); border-color: var(--forest); }
.fit-tab.is-active::after { opacity: 1; color: var(--lime); }

.fit__result {
  padding: 42px;
  background: var(--paper);
  border: 1px solid rgba(11,38,32,.1);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(24,50,42,.07);
}

.fit__badge {
  display: inline-block;
  padding: 7px 10px;
  color: #27473e;
  background: var(--lime);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .1em;
}

.fit__result-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0 19px;
}

.fit__icon {
  display: grid;
  width: 67px;
  height: 67px;
  flex: 0 0 67px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 17px;
  font-family: Georgia, serif;
  font-size: 26px;
}

.fit__result-top small { color: #83908c; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.fit__result h3 { margin: 5px 0 0; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.fit__result > p { color: var(--muted); font-size: 13px; line-height: 1.75; }

.fit__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 23px 0 28px;
}

.fit__benefits span {
  padding: 8px 11px;
  color: #496159;
  background: #eef2ec;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
}

.steps {
  background: var(--paper);
}

.section-heading--center {
  text-align: center;
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
}

.steps article {
  position: relative;
  padding: 36px 26px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 7px;
  right: 18px;
  color: #a8b1ae;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.step-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 17px;
  font-size: 21px;
}

.steps h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.steps p {
  max-width: 240px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.step-line {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(11,38,32,.24) 0 3px, transparent 3px 8px);
}

.contact {
  background: var(--paper);
  padding-top: 20px;
}

.contact__card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  padding: 70px;
  background: var(--lime);
  border-radius: var(--radius-lg);
}

.contact h2 em { color: #3d745f; }

.contact__content > p {
  max-width: 410px;
  margin: 23px 0 30px;
  color: #476055;
  font-size: 14px;
  line-height: 1.75;
}

.contact__promise {
  display: flex;
  align-items: center;
  gap: 11px;
}

.contact__promise > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 12px;
}

.contact__promise div {
  display: flex;
  flex-direction: column;
}

.contact__promise strong { font-size: 11px; }
.contact__promise small { margin-top: 2px; color: #5f746a; font-size: 9px; }

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact__details > a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(7,63,52,.12);
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}

.contact__details > a:hover {
  background: rgba(255,255,255,.65);
  transform: translateY(-2px);
}

.contact__details > a > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.contact__details div {
  display: flex;
  flex-direction: column;
}

.contact__details small {
  color: #62776d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact__details strong {
  font-size: 10px;
}

.lead-form {
  padding: 32px;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(30,67,52,.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 13px;
}

.lead-form label > span:first-child {
  display: block;
  margin: 0 0 7px;
  color: #475a54;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.lead-form label > span:first-child small { color: #9aa39f; font-size: 8px; font-weight: 500; text-transform: none; }

.lead-form input:not([type="checkbox"]),
.lead-form select {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(11,38,32,.16);
  color: var(--ink);
  background: #fff;
  border-radius: 9px;
  outline: none;
  font-size: 12px;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: #3e806b;
  box-shadow: 0 0 0 3px rgba(62,128,107,.1);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid {
  border-color: #be4a4a;
}

.field-error {
  display: none;
  margin: 4px 2px 0;
  color: #a33333;
  font-size: 8px;
}

.is-invalid + .field-error,
.consent-error.is-visible {
  display: block;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 9px;
  align-items: start;
  margin: 18px 0 5px;
  cursor: pointer;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-label > span {
  display: grid !important;
  width: 17px;
  height: 17px;
  margin: 0 !important;
  place-items: center;
  border: 1px solid rgba(11,38,32,.24);
  background: #fff;
  border-radius: 4px;
}

.checkbox-label input:checked + span {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.checkbox-label input:checked + span::after { content: "✓"; font-size: 10px; }
.checkbox-label input:focus-visible + span { box-shadow: 0 0 0 3px rgba(62,128,107,.2); }
.checkbox-label small { color: #7e8985; font-size: 8px; line-height: 1.5; }
.lead-form .button { margin-top: 18px; }

.form-note,
.form-status {
  margin: 11px 0 0;
  color: #8c9692;
  font-size: 8px;
  text-align: center;
}

.form-status {
  padding: 10px;
  color: #1d5b48;
  background: #e1f3e9;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}

.form-status.is-error { color: #7c2d2d; background: #f8e1e1; }

.form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 110px;
}

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

.accordion summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 18px;
  list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: absolute; right: 5px; color: #457361; font-family: Inter, sans-serif; font-size: 18px; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -7px 0 22px; padding-right: 40px; color: var(--muted); font-size: 12px; line-height: 1.8; }

.footer {
  padding: 65px 0 25px;
  color: var(--white);
  background: #062e27;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
}

.brand--footer .brand__city { display: none; }
.footer__top > div:first-child > p { max-width: 300px; margin: 18px 0 0; color: #8eaaa1; font-size: 11px; line-height: 1.7; }

.footer__company {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 13px;
  max-width: 390px;
  margin-top: 20px;
  color: #8eaaa1;
  font-size: 9px;
  font-style: normal;
}

.footer__company strong {
  flex-basis: 100%;
  color: #dbe8e3;
  font-size: 10px;
  letter-spacing: .06em;
}

.footer__company a:hover {
  color: var(--lime);
}

.footer__links {
  display: flex;
  gap: 90px;
}

.footer__links > div {
  display: flex;
  min-width: 140px;
  flex-direction: column;
  gap: 10px;
}

.footer__links strong { margin-bottom: 7px; color: #dbe8e3; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer__links a { color: #90aaa2; font-size: 10px; }
.footer__links a:hover { color: var(--lime); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #78978d;
  font-size: 8px;
}

.footer__bottom p { max-width: 700px; margin: 0; text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal--delay { transition-delay: .13s; }
.reveal--delay-sm { transition-delay: .08s; }
.reveal--delay-lg { transition-delay: .16s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero__grid { grid-template-columns: 1fr 470px; }
  .hero h1 { font-size: 66px; }
  .intro__grid { gap: 70px; }
  .product-card__body { padding: 23px 21px 25px; }
  .program__content { width: 62%; padding-left: 50px; }
  .program__visual { width: 40%; }
  .zero-ring { right: 20px; }
  .contact__card { padding: 55px; gap: 45px; }
}

@media (max-width: 880px) {
  .section { padding: 84px 0; }
  .hero { padding-top: 70px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 35px; }
  .hero__visual { width: min(100%, 560px); min-height: 530px; margin: 0 auto; }
  .payment-strip { flex-wrap: wrap; justify-content: center; padding: 25px 0; }
  .intro__grid { grid-template-columns: 1fr; gap: 35px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); margin: 0 auto; }
  .section-heading > p { position: static; width: auto; max-width: 440px; margin-top: 20px; }
  .program__content { width: 100%; padding: 60px 50px 430px; }
  .program__visual { inset: auto 0 0; width: 100%; height: 390px; }
  .zero-ring { width: 220px; height: 220px; right: calc(50% - 110px); top: 30px; font-size: 140px; }
  .program-card--one { top: 20px; left: 8%; }
  .program-card--two { top: 190px; right: 8%; }
  .program-card--three { bottom: 25px; left: 13%; }
  .fit__grid { grid-template-columns: 1fr; gap: 45px; }
  .fit__tabs { flex-direction: row; flex-wrap: wrap; }
  .fit-tab { min-width: 0; }
  .steps__grid { grid-template-columns: 1fr 30px 1fr 30px 1fr; }
  .contact__card { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .topbar__inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .topbar__inner > a { display: none; }
  .nav-wrap { min-height: 66px; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .brand__city { max-width: 85px; overflow: hidden; text-overflow: ellipsis; }
  .mobile-nav { inset: 66px 0 auto; }
  .hero { min-height: 0; padding-top: 54px; }
  .hero h1 { margin-top: 21px; font-size: clamp(48px, 15.2vw, 64px); }
  .hero__lead { font-size: 15px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__proof { gap: 12px; justify-content: space-between; }
  .hero__proof strong { font-size: 19px; }
  .hero__proof span:not(.proof-divider) { font-size: 8px; }
  .hero__visual { min-height: 465px; transform: scale(.88); transform-origin: top center; margin-bottom: -55px; }
  .availability-pill { right: 0; }
  .success-card { right: 0; }
  .contactless-card--back { left: 0; }
  .tap-card { right: -5px; }
  .payment-strip { gap: 18px 25px; }
  .payment-strip > span { flex-basis: 100%; text-align: center; }
  h2 { font-size: 44px; }
  .mini-features { align-items: flex-start; flex-direction: column; }
  .products { padding-top: 65px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; width: 100%; }
  .product-card__body > p { min-height: 0; }
  .program__card { width: calc(100% - 20px); border-radius: 26px; }
  .program__content { padding: 45px 26px 410px; }
  .program__content > p { font-size: 13px; }
  .program__stats { justify-content: space-between; }
  .program__stats > div { gap: 4px; padding: 0 8px; flex-direction: column; align-items: flex-start; }
  .program__stats strong { font-size: 25px; }
  .program .button { width: 100%; gap: 10px; font-size: 13px; }
  .zero-ring { width: 190px; height: 190px; right: calc(50% - 95px); font-size: 120px; }
  .program-card { min-width: 144px; padding: 10px; }
  .program-card--one { left: 2%; }
  .program-card--two { right: 2%; }
  .program-card--three { left: 4%; }
  .fit__tabs { display: grid; grid-template-columns: 1fr; }
  .fit__result { padding: 28px 22px; }
  .fit__result-top { align-items: flex-start; }
  .steps__grid { grid-template-columns: 1fr; }
  .step-line { width: 1px; height: 30px; margin: 0 auto; background: repeating-linear-gradient(0deg, rgba(11,38,32,.24) 0 3px, transparent 3px 8px); }
  .steps article { padding: 20px 26px; }
  .contact { padding-top: 0; }
  .contact__card { width: 100%; padding: 52px 20px; border-radius: 0; }
  .contact__details { flex-direction: column; align-items: flex-start; }
  .lead-form { padding: 23px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .faq__grid { gap: 30px; }
  .accordion summary { font-size: 16px; }
  .footer__top { flex-direction: column; }
  .footer__links { gap: 25px; justify-content: space-between; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer__bottom p { text-align: left; }
}
