:root {
  --green: #00d875;
  --green-strong: #00bf65;
  --green-soft: #9df7cd;
  --ink: #07110c;
  --ink-2: #0b1710;
  --ink-3: #102219;
  --paper: #f5f7f5;
  --white: #ffffff;
  --text: #ecf5ef;
  --muted: #9eada4;
  --line: rgba(255, 255, 255, .11);
  --line-green: rgba(0, 216, 117, .24);
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 5%, rgba(0, 216, 117, .08), transparent 28rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img, svg { display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

::selection { color: var(--ink); background: var(--green); }

.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: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--green);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 17, 12, .86);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--shell);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { border-radius: 50%; }
.brand span { font-size: 1.15rem; font-weight: 900; letter-spacing: -.055em; }
.brand em { color: var(--green); font-style: normal; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #c5d1ca;
  font-size: .88rem;
  font-weight: 700;
}

.desktop-nav a, .site-footer nav a, .site-footer nav button {
  text-decoration: none;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover,
.site-footer nav button:hover { color: var(--green); }

.button {
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s ease, background-color .25s ease, border-color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: #02170c; background: var(--green); box-shadow: 0 12px 35px rgba(0, 216, 117, .18); }
.button-primary:hover { background: var(--green-soft); box-shadow: 0 16px 42px rgba(0, 216, 117, .27); }
.button-quiet { color: var(--text); border-color: var(--line); background: rgba(255, 255, 255, .035); }
.button-quiet:hover { border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .075); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: .85rem; }
.button-large { min-height: 56px; padding: 15px 25px; }

.menu-button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: none;
  place-items: center;
  background: rgba(255, 255, 255, .04);
}

.menu-button span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .25s var(--ease);
}

.menu-button span:nth-child(2) { transform: translateY(-3px); }
.menu-button span:nth-child(3) { transform: translateY(3px); }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.mobile-nav {
  width: var(--shell);
  margin: 0 auto 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  flex-direction: column;
  gap: 4px;
  background: rgba(10, 24, 16, .97);
  box-shadow: var(--shadow);
}

.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav > a:not(.button) { min-height: 46px; padding: 12px 8px; text-decoration: none; font-weight: 750; }
.mobile-nav .button { margin-top: 8px; }

.hero {
  min-height: max(760px, 100svh);
  padding-top: 132px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.hero-aura {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.aura-one {
  width: 520px;
  height: 520px;
  right: -140px;
  top: 8%;
  background: radial-gradient(circle, rgba(0, 216, 117, .16), transparent 68%);
}

.aura-two {
  width: 360px;
  height: 360px;
  left: -200px;
  bottom: 0;
  background: radial-gradient(circle, rgba(71, 151, 255, .09), transparent 68%);
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.15rem, 6.4vw, 6.65rem);
  font-weight: 920;
  letter-spacing: -.075em;
  line-height: .91;
}

.hero h1 span,
.section-title span { color: var(--green); }

.hero-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: #adbbb2;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.hero-lead strong { color: var(--text); font-weight: 760; }

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.microcopy {
  margin: 17px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #809087;
  font-size: .78rem;
}

.microcopy svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 216, 117, .15);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: -4px;
  left: 50%;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.orbit-one { width: 460px; height: 460px; animation: orbit-spin 22s linear infinite; }
.orbit-two { width: 540px; height: 540px; border-color: rgba(255, 255, 255, .06); animation: orbit-spin 32s linear infinite reverse; }

.phone {
  width: min(310px, 72vw);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 48px;
  background: linear-gradient(145deg, #263229, #050906);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .55), 0 0 70px rgba(0, 216, 117, .08);
  transform: rotate(2deg);
  animation: phone-float 6s var(--ease) infinite;
}

.phone-frame {
  padding: 7px;
  border-radius: 40px;
  background: #030604;
}

.phone-screen {
  min-height: 590px;
  padding: 13px 14px 12px;
  border-radius: 34px;
  overflow: hidden;
  color: #132219;
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 216, 117, .16), transparent 26%),
    #f5f7f5;
  position: relative;
}

.phone-status {
  padding: 2px 8px 16px;
  display: flex;
  justify-content: space-between;
  color: #233c2d;
  font-size: .56rem;
  font-weight: 850;
}

.app-head {
  display: grid;
  grid-template-columns: 34px 1fr 27px;
  align-items: center;
  gap: 10px;
}

.app-head img { border-radius: 10px; }
.app-head small, .app-head strong { display: block; }
.app-head small { color: #6b7a70; font-size: .56rem; }
.app-head strong { font-size: .76rem; }
.avatar { width: 27px; height: 27px; border-radius: 50%; border: 1px solid #d8ded9; background: #e8ece9; }

.balance-card {
  min-height: 176px;
  margin-top: 19px;
  padding: 20px;
  border-radius: 24px;
  color: var(--text);
  background: linear-gradient(145deg, #0c1a12, #0e2a1b);
  box-shadow: 0 18px 36px rgba(11, 35, 23, .18);
  overflow: hidden;
  position: relative;
}

.balance-card small, .balance-card strong, .balance-card span { position: relative; z-index: 1; display: block; }
.balance-card small { color: #93aa9b; font-size: .62rem; }
.balance-card strong { margin-top: 9px; font-size: 1.15rem; line-height: 1.18; letter-spacing: -.035em; }
.balance-card > span { width: max-content; margin-top: 18px; padding: 7px 10px; border-radius: 99px; color: #032414; background: var(--green); font-size: .56rem; font-weight: 900; }
.balance-glow { position: absolute; width: 150px; height: 150px; right: -40px; bottom: -50px; border-radius: 50%; background: rgba(0, 216, 117, .24); filter: blur(8px); }

.phone-title { margin: 23px 0 10px; font-size: .72rem; font-weight: 900; }
.phone-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-benefits > div { min-height: 95px; padding: 12px; border: 1px solid #dfe6e1; border-radius: 16px; background: #fff; }
.phone-benefits strong, .phone-benefits small { display: block; }
.phone-benefits strong { margin-top: 8px; font-size: .65rem; }
.phone-benefits small { color: #77827b; font-size: .52rem; }
.mini-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: #083a21; background: #baf7da; font-size: .7rem; font-weight: 900; }

.phone-code {
  margin-top: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dfe6e1;
  border-radius: 16px;
  background: #fff;
}

.phone-code strong, .phone-code small { display: block; }
.phone-code strong { font-size: .64rem; }
.phone-code small { color: #7b887f; font-size: .51rem; }
.code-lines { width: 38px; height: 38px; border: 5px double #163c27; background: repeating-linear-gradient(90deg, #163c27 0 2px, transparent 2px 4px); }

.phone-tabbar {
  position: absolute;
  inset: auto 13px 10px;
  height: 37px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e7e3;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
}

.phone-tabbar span { width: 11px; height: 11px; border-radius: 4px; background: #cbd3cd; }
.phone-tabbar .active { background: var(--green-strong); }

.benefit-chip {
  position: absolute;
  z-index: 3;
  min-width: 185px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  background: rgba(16, 34, 25, .88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.benefit-chip small, .benefit-chip span > span { display: block; }
.benefit-chip small { color: var(--muted); font-size: .61rem; font-weight: 650; }
.benefit-chip span > span { font-size: .77rem; font-weight: 850; }
.chip-icon { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: var(--green); background: rgba(0, 216, 117, .1); }
.chip-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chip-discount { left: 0; top: 20%; animation: chip-float 5s var(--ease) infinite; }
.chip-return { right: -10px; bottom: 20%; animation: chip-float 5s 1.2s var(--ease) infinite; }

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #708078;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-hint span { width: 24px; height: 38px; border: 1px solid #3c4e43; border-radius: 99px; position: relative; }
.scroll-hint span::after { content: ""; position: absolute; width: 3px; height: 7px; left: 50%; top: 7px; border-radius: 4px; background: var(--green); transform: translateX(-50%); animation: scroll-dot 2s infinite; }

.story { padding-block: 130px 110px; }
.story-line { width: 100%; height: 1px; margin-bottom: 96px; display: flex; align-items: center; background: var(--line); overflow: hidden; }
.line-dot { width: 8px; height: 8px; border: 2px solid var(--green); border-radius: 50%; background: var(--ink); flex: 0 0 auto; }
.line-flow { width: 28%; height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); animation: line-flow 4s linear infinite; }

.story-copy { max-width: 800px; margin-inline: auto; text-align: center; }
.story-copy .eyebrow, .section-heading .eyebrow, .how-heading .eyebrow, .faq-heading .eyebrow, .download .eyebrow { justify-content: center; }

.section-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  font-weight: 920;
  letter-spacing: -.065em;
  line-height: .98;
}

.section-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.story-copy .section-lead { margin-inline: auto; }

.value-cycle {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.cycle-step {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  position: relative;
}

.cycle-step > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cycle-step h3 { margin: 0 0 5px; font-size: 1.25rem; }
.cycle-step p { margin: 0; color: var(--muted); }
.step-number { position: absolute; right: 22px; top: 18px; color: rgba(255, 255, 255, .14); font-size: .75rem; font-weight: 900; }
.cycle-arrow { color: #486354; font-size: 1.4rem; }

.human-experience {
  padding-bottom: 125px;
  display: grid;
  grid-template-columns: 1.36fr .64fr;
  gap: 18px;
}

.human-panel {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #0b1811;
}

.human-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--ease);
}

.human-panel:hover img { transform: scale(1.025); }
.human-panel-primary img { object-position: 58% center; }
.human-panel-care img { object-position: 34% center; }
.human-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 12, 8, .92), rgba(5, 12, 8, .34) 58%, rgba(5, 12, 8, .08)); }
.human-panel-care .human-shade { background: linear-gradient(0deg, rgba(5, 12, 8, .95), rgba(5, 12, 8, .06) 70%); }
.human-copy { width: min(580px, 75%); padding: clamp(32px, 5vw, 66px); position: absolute; z-index: 1; inset: auto auto 0 0; }
.human-copy .eyebrow { margin-bottom: 18px; }
.human-copy h2, .human-copy h3 { margin: 0; letter-spacing: -.055em; line-height: .98; }
.human-copy h2 { font-size: clamp(2.4rem, 5.6vw, 5.25rem); }
.human-copy h2 span { color: var(--green); }
.human-copy h3 { font-size: clamp(1.85rem, 3vw, 3rem); }
.human-copy > p:last-child { max-width: 540px; margin: 23px 0 0; color: #c4d0c8; line-height: 1.7; }
.human-panel-care .human-copy { width: 100%; padding: 30px; }
.human-panel-care .human-copy > p:last-child { margin-top: 14px; }

.advantages { padding-block: 120px; }
.section-heading { max-width: 790px; margin-inline: auto; text-align: center; }
.section-heading .section-lead { margin-inline: auto; }
.advantage-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.advantage-card {
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d1b13;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease, background-color .35s ease;
}

.advantage-card:hover { transform: translateY(-7px); border-color: var(--line-green); background: #102219; }
.advantage-card.featured { border-color: rgba(0, 216, 117, .28); background: linear-gradient(150deg, rgba(0, 216, 117, .14), #0d1b13 45%); }
.advantage-card.featured::after { content: ""; position: absolute; width: 180px; height: 180px; top: -100px; right: -70px; border-radius: 50%; background: rgba(0, 216, 117, .15); filter: blur(4px); }
.card-index { color: #617068; font-size: .72rem; font-weight: 900; }
.card-icon { width: 60px; height: 60px; margin-top: 54px; display: grid; place-items: center; border: 1px solid var(--line-green); border-radius: 18px; color: var(--green); background: rgba(0, 216, 117, .08); }
.card-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-label { margin: 33px 0 8px; color: var(--green); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.advantage-card h3 { margin: 0; font-size: clamp(1.45rem, 2.1vw, 2rem); letter-spacing: -.04em; }
.advantage-card > p:last-of-type { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }
.card-tag { position: absolute; left: 28px; bottom: 26px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: #a7b7ad; font-size: .66rem; font-weight: 800; }
.rule-note { max-width: 760px; margin: 24px auto 0; color: #718078; font-size: .75rem; text-align: center; }

.welcome { padding-block: 45px 125px; }
.welcome-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.welcome-heading .section-lead { margin: 0 0 8px; }
.welcome-grid { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.welcome-card {
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  position: relative;
  overflow: hidden;
}
.welcome-card-primary { border-color: var(--line-green); background: linear-gradient(150deg, rgba(0, 216, 117, .14), #0d1b13 48%); }
.welcome-card-primary::after { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -130px; border: 1px solid rgba(0, 216, 117, .22); border-radius: 50%; box-shadow: 0 0 0 45px rgba(0, 216, 117, .025); }
.welcome-kicker { width: fit-content; padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: #a7b7ad; font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.welcome-icon { width: 68px; height: 68px; margin-top: 58px; border: 1px solid var(--line-green); border-radius: 20px; display: grid; place-items: center; color: var(--green); background: rgba(0, 216, 117, .08); }
.welcome-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.first-purchases { min-height: 68px; margin-top: 58px; display: flex; align-items: center; gap: 12px; }
.first-purchases span { width: 56px; height: 56px; border: 1px solid var(--line-green); border-radius: 50%; display: grid; place-items: center; color: var(--green); background: rgba(0, 216, 117, .07); font-size: .82rem; font-weight: 900; box-shadow: 0 0 0 0 rgba(0, 216, 117, .13); animation: welcome-pulse 3.5s ease-in-out infinite; }
.first-purchases span:nth-child(2) { animation-delay: .4s; }
.first-purchases span:nth-child(3) { animation-delay: .8s; }
.welcome-card h3 { margin: 31px 0 0; font-size: clamp(1.7rem, 3vw, 2.7rem); letter-spacing: -.05em; }
.welcome-card p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.welcome-foot { margin-top: auto; padding-top: 30px; color: #718078; font-size: .72rem; }

.personalized {
  padding-block: 130px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 25%, rgba(0, 216, 117, .1), transparent 26rem),
    #0a1710;
  overflow: hidden;
}
.personalized-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.personalized-points { margin-top: 45px; display: grid; gap: 4px; }
.personalized-point { min-height: 98px; padding-block: 18px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.personalized-point:first-child { border-top: 1px solid var(--line); }
.personalized-point > span { width: 34px; height: 34px; border: 1px solid var(--line-green); border-radius: 50%; display: grid; place-items: center; color: var(--green); font-size: .64rem; font-weight: 900; }
.personalized-point h3 { margin: 1px 0 4px; font-size: 1.05rem; }
.personalized-point p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.55; }
.notification-stage { min-height: 570px; display: grid; align-content: center; gap: 18px; position: relative; }
.notification-orbit { position: absolute; width: 520px; height: 520px; left: 50%; top: 50%; border: 1px solid rgba(0, 216, 117, .12); border-radius: 50%; transform: translate(-50%, -50%); }
.notification-orbit::before, .notification-orbit::after { content: ""; position: absolute; inset: 60px; border: 1px solid rgba(255, 255, 255, .05); border-radius: 50%; }
.notification-orbit::after { inset: 125px; border-style: dashed; animation: orbit-spin 34s linear infinite; }
.notification-card { width: min(100%, 460px); min-height: 112px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; background: rgba(13, 29, 20, .92); box-shadow: 0 24px 60px rgba(0, 0, 0, .28); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); position: relative; z-index: 1; }
.notification-card:nth-of-type(2) { justify-self: end; }
.notification-card:nth-of-type(3) { margin-left: 28px; }
.notification-mark { width: 48px; height: 48px; border: 1px solid var(--line-green); border-radius: 15px; display: grid; place-items: center; color: var(--green); background: rgba(0, 216, 117, .09); font-size: 1rem; font-weight: 950; }
.notification-card small, .notification-card strong { display: block; }
.notification-card small { color: var(--green); font-size: .64rem; font-weight: 850; letter-spacing: .04em; }
.notification-card strong { margin-top: 4px; font-size: .95rem; }
.notification-card p { margin: 4px 0 0; color: var(--muted); font-size: .73rem; }
.notification-one { animation: notification-float 5.5s var(--ease) infinite; }
.notification-two { animation: notification-float 5.5s .9s var(--ease) infinite; }
.notification-three { animation: notification-float 5.5s 1.8s var(--ease) infinite; }

.everyday {
  padding-block: 122px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 216, 117, .045), transparent 36%),
    #0a1710;
}

.everyday .section-shell { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.everyday-copy { position: sticky; top: 120px; }
.category-rail { display: grid; gap: 14px; }

.category-card {
  min-height: 156px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, .025);
  transition: transform .3s var(--ease), border-color .3s ease, background-color .3s ease;
}

.category-card:hover { transform: translateX(7px); border-color: var(--line-green); background: rgba(0, 216, 117, .045); }
.category-card > svg { grid-row: 1 / 3; width: 42px; height: 42px; fill: none; stroke: var(--green); stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.category-card h3 { align-self: end; margin: 0; font-size: 1.25rem; letter-spacing: -.03em; }
.category-card p { align-self: start; margin: 7px 0 0; color: var(--muted); font-size: .9rem; }
.category-number { grid-column: 3; grid-row: 1 / 3; color: rgba(255, 255, 255, .16); font-size: .78rem; font-weight: 900; }
.category-primary { border-color: rgba(0, 216, 117, .22); background: linear-gradient(90deg, rgba(0, 216, 117, .07), rgba(255, 255, 255, .02)); }

.how { padding-block: 130px; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 140px); align-items: start; }
.how-heading { position: sticky; top: 120px; }
.how-list { margin: 0; padding: 0; list-style: none; }

.how-item {
  min-height: 128px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
}

.how-item:first-child { border-top: 1px solid var(--line); }
.how-number { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line-green); border-radius: 50%; color: var(--green); font-size: .78rem; font-weight: 900; }
.how-item h3 { margin: 0 0 5px; font-size: 1.2rem; }
.how-item p { margin: 0; color: var(--muted); }
.how-cta { grid-column: 2; padding: 24px; border: 1px solid var(--line-green); border-radius: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(0, 216, 117, .055); }
.how-cta p { margin: 0; color: var(--muted); }
.how-cta strong { color: var(--text); }

.evolution { padding-block: 130px; }
.evolution-heading { max-width: 870px; margin-inline: auto; text-align: center; }
.evolution-heading .eyebrow { justify-content: center; }
.evolution-heading .section-lead { margin-inline: auto; }
.evolution-grid { margin-top: 62px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.evolution-card { min-height: 560px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .018)); position: relative; overflow: hidden; }
.evolution-card:hover { border-color: var(--line-green); }
.roadmap-tag { position: absolute; right: 25px; top: 25px; padding: 7px 11px; border: 1px solid rgba(255, 218, 112, .25); border-radius: 99px; color: #ffe08a; background: rgba(255, 218, 112, .05); font-size: .64rem; font-weight: 850; }
.roadmap-tag-live { border-color: var(--line-green); color: var(--green-soft); background: rgba(0, 216, 117, .08); }
.roadmap-tag-live::before { content: ""; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; display: inline-block; background: var(--green); box-shadow: 0 0 12px rgba(0, 216, 117, .7); }
.tier-visual { min-height: 110px; padding-top: 52px; display: flex; align-items: center; }
.tier-dot { width: 24px; height: 24px; flex: 0 0 auto; border: 1px solid var(--line-green); border-radius: 50%; background: #102219; position: relative; }
.tier-dot.active { background: var(--green); box-shadow: 0 0 28px rgba(0, 216, 117, .42); }
.tier-line { height: 1px; flex: 1; background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, .1)); position: relative; overflow: hidden; }
.tier-line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, #fff, transparent); transform: translateX(-100%); animation: tier-flow 3.5s linear infinite; opacity: .5; }
.group-visual { min-height: 110px; padding-top: 38px; display: flex; align-items: end; justify-content: center; }
.group-visual span { width: 58px; height: 58px; margin-left: -9px; border: 1px solid var(--line-green); border-radius: 50%; background: #102219; position: relative; }
.group-visual span::before { content: ""; position: absolute; width: 18px; height: 18px; left: 50%; top: 11px; border: 1px solid var(--green); border-radius: 50%; transform: translateX(-50%); }
.group-visual span::after { content: ""; position: absolute; width: 30px; height: 15px; left: 50%; bottom: 9px; border: 1px solid var(--green); border-radius: 20px 20px 9px 9px; transform: translateX(-50%); }
.group-visual span:nth-child(2), .group-visual span:nth-child(3) { background: rgba(0, 216, 117, .08); transform: translateY(-13px); }
.evolution-card .card-label { margin-top: 22px; }
.evolution-card h3 { max-width: 470px; margin: 0; font-size: clamp(1.55rem, 2.5vw, 2.45rem); letter-spacing: -.05em; }
.evolution-card > p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.benefit-steps { margin: 22px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.benefit-steps li { min-height: 50px; padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: center; color: #c4d0c8; font-size: .78rem; line-height: 1.45; }
.benefit-steps span { width: 24px; height: 24px; border: 1px solid var(--line-green); border-radius: 50%; display: grid; place-items: center; color: var(--green); font-size: .62rem; font-weight: 900; }

.locations {
  padding-block: 124px;
  background:
    radial-gradient(circle at 95% 25%, rgba(0, 216, 117, .08), transparent 28rem),
    #0b1811;
  border-block: 1px solid var(--line);
}

.locations-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.locations-heading .section-lead { margin: 0 0 8px; }
.city-group { margin-top: 62px; }
.city-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.city-columns .city-group { margin-top: 18px; }
.city-heading { min-height: 68px; padding: 0 4px 17px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 38px 1fr auto; gap: 13px; align-items: center; }
.city-heading > span:last-child { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: .66rem; font-weight: 800; }
.city-heading small { display: block; color: var(--green); font-size: .61rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.city-heading h3 { margin: 1px 0 0; font-size: 1.35rem; letter-spacing: -.04em; }
.city-pin { width: 34px; height: 34px; border: 1px solid var(--line-green); border-radius: 50% 50% 50% 7px; background: rgba(0, 216, 117, .08); transform: rotate(-45deg); position: relative; }
.city-pin::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 14px rgba(0, 216, 117, .65); }
.location-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.location-grid-single { grid-template-columns: 1fr; }
.location-card {
  min-height: 400px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 21px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .025);
  transition: transform .3s var(--ease), border-color .3s ease, background-color .3s ease;
}
.location-card:hover { transform: translateY(-5px); border-color: var(--line-green); background: rgba(0, 216, 117, .04); }
.location-card-review { background: linear-gradient(145deg, rgba(0, 216, 117, .08), rgba(255, 255, 255, .02) 52%); }
.location-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.location-copy { margin-block: 30px 20px; }
.location-copy small { color: var(--green); font-size: .63rem; font-weight: 850; text-transform: uppercase; letter-spacing: .075em; }
.location-copy h4 { margin: 6px 0 12px; font-size: clamp(1.35rem, 2.1vw, 1.85rem); letter-spacing: -.045em; }
.location-copy address { color: var(--muted); font-size: .83rem; font-style: normal; line-height: 1.65; }
.location-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #062314; background: var(--green); font-size: .72rem; font-weight: 950; }
.status-dot { display: inline-flex; align-items: center; gap: 8px; color: #94a39a; font-size: .7rem; font-weight: 700; }
.status-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(0, 216, 117, .7); }
.location-tags { margin-bottom: 22px; display: flex; gap: 7px; flex-wrap: wrap; }
.location-tags span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 99px; color: #aebbb2; background: rgba(255, 255, 255, .025); font-size: .58rem; font-weight: 750; }
.location-tags .tag-highlight { border-color: var(--line-green); color: var(--green-soft); background: rgba(0, 216, 117, .07); }
.route-link { min-height: 44px; margin-top: auto; padding: 10px 13px; border: 1px solid var(--line-green); border-radius: 13px; display: flex; align-items: center; justify-content: space-between; color: var(--green); background: rgba(0, 216, 117, .055); font-size: .76rem; font-weight: 850; text-decoration: none; }
.route-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.route-link:hover svg { transform: translateX(3px); }
.locations-note { max-width: 820px; margin: 25px auto 0; color: #738179; font-size: .73rem; line-height: 1.7; text-align: center; }

.belonging { padding-block: 130px; }
.belonging-card { min-height: 520px; padding: clamp(34px, 7vw, 84px); border: 1px solid var(--line-green); border-radius: var(--radius-lg); display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; background: linear-gradient(145deg, rgba(0, 216, 117, .09), rgba(255, 255, 255, .025) 46%); overflow: hidden; position: relative; }
.belonging-card::after { content: ""; position: absolute; width: 420px; height: 420px; left: -220px; bottom: -220px; border-radius: 50%; border: 70px solid rgba(0, 216, 117, .035); }
.belonging-symbol { min-height: 300px; display: grid; place-items: center; position: relative; }
.belonging-symbol img { position: relative; z-index: 1; border-radius: 50%; box-shadow: 0 20px 70px rgba(0, 216, 117, .22); }
.symbol-ring { position: absolute; width: 280px; height: 280px; border: 1px solid rgba(0, 216, 117, .22); border-radius: 50%; }
.symbol-ring::before, .symbol-ring::after { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; }
.symbol-ring::after { inset: -38px; border-style: dashed; animation: orbit-spin 30s linear infinite; }
.trust-list { margin-top: 32px; display: flex; gap: 16px 24px; flex-wrap: wrap; color: #b4c0b8; font-size: .78rem; font-weight: 750; }
.trust-list span { display: inline-flex; align-items: center; gap: 7px; }
.trust-list svg { width: 16px; height: 16px; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.faq { padding-block: 125px; display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(50px, 9vw, 120px); }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-list { display: grid; gap: 11px; }
.faq-item { border: 1px solid var(--line); border-radius: 19px; background: rgba(255, 255, 255, .025); overflow: hidden; }
.faq-item summary { min-height: 76px; padding: 19px 22px; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 800; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green); font-size: 1.1rem; transition: transform .25s var(--ease), background-color .25s ease; }
.faq-item[open] summary span { transform: rotate(45deg); background: rgba(0, 216, 117, .1); }
.faq-item p { margin: -4px 0 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.7; }

.download { padding-block: 50px 130px; }
.download-card { min-height: 600px; padding: 80px 40px; border: 1px solid var(--line-green); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(155deg, rgba(0, 216, 117, .13), #0b1811 46%, #0a140e); overflow: hidden; position: relative; }
.download-aura { position: absolute; width: 760px; height: 760px; border: 1px solid rgba(0, 216, 117, .12); border-radius: 50%; }
.download-aura::before, .download-aura::after { content: ""; position: absolute; inset: 70px; border: 1px solid rgba(255, 255, 255, .05); border-radius: 50%; }
.download-aura::after { inset: 160px; }
.download-card > *:not(.download-aura) { position: relative; z-index: 1; }
.download-logo { margin-bottom: 28px; }
.download-logo img { border-radius: 22px; box-shadow: 0 20px 50px rgba(0, 216, 117, .18); }
.download .section-lead { margin-inline: auto; }
.store-buttons { margin-top: 34px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.store-button { min-width: 195px; min-height: 62px; padding: 10px 17px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 16px; display: flex; align-items: center; gap: 12px; color: var(--text); background: #050c08; text-align: left; text-decoration: none; transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease; }
.store-button:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 18px 42px rgba(0, 0, 0, .3); }
.store-button svg { width: 31px; height: 31px; fill: currentColor; stroke: currentColor; stroke-width: 1; }
.store-button small, .store-button strong { display: block; }
.store-button small { color: #93a097; font-size: .54rem; font-weight: 800; letter-spacing: .08em; }
.store-button strong { margin-top: 1px; font-size: 1.05rem; }
.download-note { margin: 19px 0 0; color: #708078; font-size: .7rem; }

.site-footer { width: var(--shell); margin-inline: auto; padding-bottom: calc(35px + env(safe-area-inset-bottom)); }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-top { padding-block: 30px; border-top: 1px solid var(--line); }
.site-footer nav { display: flex; align-items: center; gap: 22px; color: #96a49b; font-size: .75rem; font-weight: 700; flex-wrap: wrap; }
.site-footer nav button { padding: 0; border: 0; background: none; cursor: pointer; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .055); color: #64736a; font-size: .69rem; }
.footer-bottom p { margin: 0; }

.mobile-download {
  position: fixed;
  z-index: 80;
  inset: auto 12px calc(12px + env(safe-area-inset-bottom));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 12, .88);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.mobile-download:not([hidden]) { display: none; }
.mobile-download .button { width: 100%; }

.consent-banner {
  position: fixed;
  z-index: 300;
  left: 20px;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(11, 24, 17, .96);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.consent-banner:not([hidden]) { display: flex; }
.consent-banner strong { font-size: 1rem; }
.consent-banner p { max-width: 610px; margin: 4px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }
.consent-banner p a,
.privacy-legal-links a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.consent-banner p a:hover,
.privacy-legal-links a:hover { color: #fff; }
.consent-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.consent-actions .button { min-height: 42px; padding: 9px 14px; font-size: .72rem; }
.privacy-legal-links { margin: 16px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }

.privacy-modal { position: fixed; z-index: 400; inset: 0; }
.privacy-modal:not([hidden]) { display: grid; place-items: center; }
.privacy-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.privacy-dialog { width: min(560px, calc(100% - 28px)); max-height: min(740px, calc(100svh - 28px)); padding: 30px; border: 1px solid var(--line); border-radius: 25px; background: #0c1a12; box-shadow: var(--shadow); overflow: auto; position: relative; }
.privacy-dialog > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.privacy-dialog h2 { margin: 0; font-size: 2rem; letter-spacing: -.045em; }
.privacy-close { position: absolute; right: 20px; top: 17px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .03); cursor: pointer; font-size: 1.4rem; }
.privacy-option { min-height: 76px; margin-top: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: rgba(255, 255, 255, .025); }
.privacy-option strong, .privacy-option small { display: block; }
.privacy-option small { margin-top: 3px; color: var(--muted); font-size: .72rem; }
.privacy-option > span:not(.switch) { color: var(--green); font-size: .68rem; font-weight: 800; }
.privacy-option input { position: absolute; opacity: 0; pointer-events: none; }
.switch { width: 48px; height: 28px; flex: 0 0 auto; padding: 3px; border: 1px solid var(--line); border-radius: 99px; background: #17241b; transition: background-color .2s ease; }
.switch::after { content: ""; width: 20px; height: 20px; display: block; border-radius: 50%; background: #718078; transition: transform .22s var(--ease), background-color .22s ease; }
.privacy-option input:checked + .switch { background: rgba(0, 216, 117, .22); border-color: var(--line-green); }
.privacy-option input:checked + .switch::after { transform: translateX(19px); background: var(--green); }
.privacy-option input:focus-visible + .switch { outline: 3px solid var(--green); outline-offset: 3px; }
.privacy-actions { margin-top: 22px; display: flex; justify-content: flex-end; gap: 9px; }
.noscript { position: fixed; z-index: 500; inset: auto 20px 20px; padding: 14px; border-radius: 14px; color: var(--ink); background: #ffe585; text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes phone-float { 0%, 100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-10px); } }
@keyframes chip-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 15px); } }
@keyframes line-flow { from { transform: translateX(-120%); } to { transform: translateX(460%); } }
@keyframes welcome-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 216, 117, .12); } 50% { box-shadow: 0 0 0 11px rgba(0, 216, 117, 0); } }
@keyframes notification-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes tier-flow { to { transform: translateX(100%); } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; }
  .hero { min-height: auto; padding-top: 128px; padding-bottom: 120px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .microcopy { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { min-height: 620px; margin-top: 8px; }
  .scroll-hint { left: 50%; transform: translateX(-50%); }
  .value-cycle { grid-template-columns: 1fr; }
  .cycle-arrow { transform: rotate(90deg); justify-self: center; }
  .human-experience { grid-template-columns: 1fr; }
  .human-panel-primary, .human-panel-care { min-height: 520px; }
  .human-panel-care .human-shade { background: linear-gradient(90deg, rgba(5, 12, 8, .92), rgba(5, 12, 8, .2)); }
  .human-panel-care .human-copy { width: min(580px, 75%); padding: clamp(32px, 5vw, 66px); }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: 360px; }
  .welcome-heading, .personalized-layout, .everyday .section-shell, .how, .faq { grid-template-columns: 1fr; }
  .welcome-heading .section-lead { margin-top: 0; }
  .welcome-grid, .evolution-grid { grid-template-columns: 1fr; }
  .notification-stage { width: min(100%, 620px); margin-inline: auto; }
  .everyday-copy, .how-heading, .faq-heading { position: static; }
  .how-cta { grid-column: 1; }
  .locations-heading { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-grid .location-card:last-child:nth-child(odd) { grid-column: 1 / 3; }
  .location-grid-single { grid-template-columns: 1fr; }
  .location-grid-single .location-card:last-child:nth-child(odd) { grid-column: 1; }
  .belonging-card { grid-template-columns: 1fr; text-align: center; }
  .belonging-copy .eyebrow { justify-content: center; }
  .belonging-copy .section-lead { margin-inline: auto; }
  .trust-list { justify-content: center; }
  .consent-banner { align-items: stretch; flex-direction: column; }
  .consent-actions { justify-content: stretch; }
  .consent-actions .button { flex: 1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 26px; }
  html { scroll-padding-top: 78px; }
  body { font-size: 15px; }
  .header-inner { min-height: 68px; }
  .brand img { width: 34px; height: 34px; }
  .hero { width: 100%; padding-inline: 14px; padding-top: 110px; padding-bottom: 92px; gap: 28px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 4.65rem); }
  .hero-lead { margin-top: 24px; font-size: .98rem; }
  .hero-actions { margin-top: 28px; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 560px; overflow: hidden; }
  .phone { width: 272px; }
  .phone-screen { min-height: 526px; }
  .benefit-chip { min-width: 164px; padding: 9px 11px; }
  .chip-discount { left: 3px; top: 15%; }
  .chip-return { right: 3px; bottom: 13%; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 450px; height: 450px; }
  .scroll-hint { display: none; }
  .story, .welcome, .advantages, .personalized, .how, .evolution, .belonging, .faq { padding-block: 86px; }
  .story-line { margin-bottom: 65px; }
  .section-title { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .section-lead { margin-top: 18px; font-size: .97rem; }
  .value-cycle, .advantage-grid { margin-top: 44px; }
  .cycle-step { min-height: 196px; }
  .human-experience { width: 100%; padding: 0 14px 86px; gap: 12px; }
  .human-panel-primary, .human-panel-care { min-height: 510px; border-radius: 25px; }
  .human-panel-primary img { object-position: 64% center; }
  .human-panel-care img { object-position: 34% center; }
  .human-panel-primary .human-shade, .human-panel-care .human-shade { background: linear-gradient(0deg, rgba(5, 12, 8, .97), rgba(5, 12, 8, .12) 75%); }
  .human-copy, .human-panel-care .human-copy { width: 100%; padding: 26px 22px; }
  .human-copy h2 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  .human-copy h3 { font-size: clamp(1.8rem, 9vw, 2.45rem); }
  .human-copy > p:last-child { margin-top: 16px; font-size: .87rem; }
  .advantage-card { min-height: 390px; padding-bottom: 82px; }
  .welcome-heading { gap: 26px; }
  .welcome-grid, .evolution-grid { margin-top: 42px; }
  .welcome-card { min-height: 390px; padding: 24px; }
  .evolution-card { min-height: auto; padding: 24px; }
  .notification-stage { min-height: 530px; }
  .notification-card { grid-template-columns: 46px 1fr; }
  .notification-mark { width: 44px; height: 44px; }
  .notification-card:nth-of-type(3) { margin-left: 0; }
  .everyday, .locations { padding-block: 88px; }
  .everyday .section-shell { gap: 44px; }
  .category-card { min-height: 176px; padding: 21px; grid-template-columns: 46px 1fr; grid-template-rows: auto auto auto; }
  .category-card > svg { grid-row: 1; }
  .category-card h3 { grid-column: 1 / 3; grid-row: 2; margin-top: 18px; }
  .category-card p { grid-column: 1 / 3; grid-row: 3; }
  .category-number { grid-column: 2; grid-row: 1; justify-self: end; }
  .how-item { grid-template-columns: 48px 1fr; gap: 14px; }
  .how-cta { align-items: stretch; flex-direction: column; }
  .city-group { margin-top: 42px; }
  .city-columns { grid-template-columns: 1fr; gap: 0; }
  .city-columns .city-group { margin-top: 38px; }
  .city-heading { grid-template-columns: 34px 1fr auto; gap: 10px; }
  .location-grid { margin-top: 14px; grid-template-columns: 1fr; }
  .location-grid .location-card:last-child:nth-child(odd), .location-grid-single .location-card:last-child:nth-child(odd) { grid-column: 1; }
  .location-card { min-height: 390px; padding: 20px; }
  .location-copy { margin-block: 26px 18px; }
  .roadmap-tag { position: static; display: inline-block; }
  .tier-visual, .group-visual { padding-top: 38px; }
  .belonging-card { min-height: auto; padding: 42px 22px; gap: 32px; }
  .belonging-card .section-title span { font-size: clamp(1.85rem, 10.2vw, 3.1rem); overflow-wrap: anywhere; }
  .belonging-symbol { min-height: 230px; }
  .symbol-ring { width: 220px; height: 220px; }
  .trust-list { align-items: center; flex-direction: column; }
  .faq { gap: 42px; }
  .faq-item summary { min-height: 72px; padding: 17px; }
  .faq-item p { padding-inline: 17px; }
  .download { padding-block: 20px 105px; }
  .download-card { min-height: 590px; padding: 60px 18px; }
  .store-buttons { width: 100%; flex-direction: column; }
  .store-button { width: 100%; max-width: 330px; margin-inline: auto; justify-content: center; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-footer nav { align-items: flex-start; flex-direction: column; gap: 14px; }
  .mobile-download:not([hidden]) { display: block; }
  .consent-banner { inset-inline: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); width: auto; padding: 17px; }
  .consent-banner p { font-size: .72rem; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
  .consent-actions .button { width: 100%; min-height: 40px; padding-inline: 10px; }
  .consent-actions [data-privacy-open] { grid-column: 1 / 3; grid-row: 2; min-height: 32px; padding-block: 4px; border-color: transparent; background: transparent; color: var(--green); }
  .privacy-dialog { padding: 24px 18px; }
  .privacy-dialog h2 { font-size: 1.65rem; }
  .privacy-option { padding: 13px; }
  .privacy-actions { align-items: stretch; flex-direction: column; }
}

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

@media (prefers-contrast: more) {
  :root { --line: rgba(255, 255, 255, .35); --muted: #c2cec6; }
  .button-primary { border-color: var(--white); }
}
