:root {
  --c-bg: #fcfffc;
  --c-surface: #f1fbf3;
  --c-surface-strong: #e3f8e8;
  --c-green: #29d463;
  --c-green-dark: #0f7f3b;
  --c-green-pale: #bcefc8;
  --c-ink: #111512;
  --c-muted: #667169;
  --c-line: #d9e9dd;
  --c-white: #fff;
  --c-shadow: 0 30px 80px -46px rgba(17, 21, 18, .34);
  --c-radius-sm: 18px;
  --c-radius-md: 28px;
  --c-radius-lg: 42px;
  --c-content: 1180px;
  --c-ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  margin: 0;
  color: var(--c-ink);
  background: var(--c-bg);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

picture {
  display: block;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

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

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

.c-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--c-white);
  background: var(--c-ink);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.c-wrap {
  width: min(var(--c-content), calc(100% - 64px));
  margin-inline: auto;
}

.c-section {
  position: relative;
  padding: clamp(88px, 10vw, 148px) 0;
}

.c-section-label,
.c-kicker {
  margin: 0;
  color: var(--c-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.c-section-head {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.c-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.c-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  max-width: none;
}

.c-section-head h2,
.c-faq__side h2,
.c-numbers__intro h2 {
  margin: 14px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.28;
  text-wrap: balance;
}

.c-section-head h2 span,
.c-empathy h2 span,
.c-numbers__intro h2 span {
  color: var(--c-green-dark);
}

.c-nowrap {
  white-space: nowrap;
}

.c-section-head > p:last-child,
.c-section-head--split > p,
.c-faq__side > p:last-child {
  margin: 20px 0 0;
  color: var(--c-muted);
  font-size: 16px;
}

/* Header — floating glass pill */
.c-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding-inline: 20px;
  pointer-events: none;
  transition: top .35s var(--c-ease);
}

.c-header.is-compact {
  top: 8px;
}

.c-header__pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(820px, 100%);
  min-height: 58px;
  padding: 8px 12px 8px 16px;
  border: 1px solid rgba(17, 21, 18, .09);
  border-radius: 999px;
  background: rgba(252, 255, 252, .76);
  box-shadow: 0 22px 54px -34px rgba(17, 21, 18, .42);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  pointer-events: auto;
}

.c-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.02em;
  text-decoration: none;
}

.c-header__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.c-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.c-header__nav a {
  position: relative;
  color: #3f4942;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.c-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--c-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--c-ease);
}

.c-header__nav a:hover::after,
.c-header__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.c-header__menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--c-surface);
  cursor: pointer;
}

.c-header__menu-lines,
.c-header__menu-lines::before,
.c-header__menu-lines::after {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-ink);
  transition: transform .25s ease;
}

.c-header__menu-lines {
  transform: translate(-50%, -50%);
}

.c-header__menu-lines::before,
.c-header__menu-lines::after {
  content: "";
  left: 0;
}

.c-header__menu-lines::before { transform: translateY(-6px); }
.c-header__menu-lines::after { transform: translateY(6px); }

.c-header.is-menu-open .c-header__menu-lines { background: transparent; }
.c-header.is-menu-open .c-header__menu-lines::before { transform: rotate(45deg); }
.c-header.is-menu-open .c-header__menu-lines::after { transform: rotate(-45deg); }

/* Hero — fv-03 Liquid Privacy */
.c-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: max(760px, 100svh);
  padding: 124px 0 70px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 18%, rgba(188, 239, 200, .26), transparent 25%),
    linear-gradient(135deg, #fcfffc 0%, #f8fdf9 58%, #effbf2 100%);
}

.c-hero__canvas,
.c-hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.c-hero__canvas {
  z-index: -3;
  opacity: .72;
}

.c-hero__wash {
  z-index: -2;
  background-image:
    linear-gradient(rgba(41, 212, 99, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 212, 99, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.c-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(520px, 1.17fr);
  gap: clamp(42px, 4vw, 74px);
  align-items: center;
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.c-hero__copy {
  position: relative;
  padding-left: clamp(0px, 2vw, 30px);
}

.c-hero__copy > :not(.c-hero__action) {
  position: relative;
  z-index: 3;
}

.c-hero__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 10px 22px 10px 10px;
  border: 1px solid rgba(15, 127, 59, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 42px -28px rgba(17, 21, 18, .48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.c-hero__brand-lockup picture {
  display: block;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
}

.c-hero__brand-icon {
  width: 100%;
  height: 100%;
  border-radius: 22%;
  object-fit: cover;
  box-shadow: 0 14px 28px -18px rgba(17, 21, 18, .58);
}

.c-hero__app-name,
.c-hero__app-description {
  margin: 0;
}

.c-hero__app-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.c-hero__app-description {
  margin-top: 5px;
  color: var(--c-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.c-hero h1 {
  max-width: 660px;
  margin: 26px 0 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(48px, 4.15vw, 68px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.16;
  text-wrap: balance;
}

.c-hero h1 span {
  display: inline-block;
  white-space: nowrap;
}

.c-hero__lead {
  max-width: 550px;
  margin: 0;
  color: #3f4942;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.9;
}

.c-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 590px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.c-chip-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid rgba(15, 127, 59, .17);
  border-radius: 999px;
  color: #245d37;
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.c-hero__action,
.c-final__action {
  position: relative;
  z-index: 7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.c-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 25px;
  border: 1px solid var(--c-ink);
  border-radius: 17px;
  color: var(--c-white);
  background: var(--c-ink);
  box-shadow: 0 18px 38px -22px rgba(17, 21, 18, .66);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: transform .25s var(--c-ease), box-shadow .25s var(--c-ease), opacity .25s ease;
}

.c-store-button:not(.is-disabled):hover,
.c-store-button:not(.is-disabled):focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -20px rgba(17, 21, 18, .58);
}

.c-store-button.is-disabled {
  cursor: not-allowed;
  border-color: #687069;
  background: #687069;
  box-shadow: none;
  opacity: .72;
  filter: saturate(.4);
}

.c-store-button__icon {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: var(--c-ink);
  background: var(--c-green-pale);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.c-store-status {
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 700;
}

.c-hero__note {
  max-width: 540px;
  margin: 15px 0 0;
  color: #536057;
  font-size: 12px;
}

.c-hero__media {
  position: relative;
  z-index: 2;
  min-height: 590px;
}

.c-hero__scene {
  position: absolute;
  inset: 30px 0 26px 3%;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 18, .07);
  border-radius: 46% 54% 37% 63% / 48% 36% 64% 52%;
  background: var(--c-white);
  box-shadow: var(--c-shadow);
  transform: rotate(-1.5deg);
}

.c-hero__scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(252, 255, 252, .25), transparent 45%);
}

.c-hero__scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-phone {
  position: absolute;
  z-index: 3;
  margin: 0;
  padding: 7px;
  border: 2px solid #1b211c;
  border-radius: 34px;
  background: #171c18;
  box-shadow: 0 28px 52px -25px rgba(17, 21, 18, .65);
}

.c-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 34%;
  height: 14px;
  border-radius: 999px;
  background: #141815;
  transform: translateX(-50%);
}

.c-phone img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: cover;
}

.c-phone > picture {
  width: 100%;
  height: 100%;
}

.c-phone--front {
  right: 6%;
  bottom: 0;
  width: min(270px, 39%);
  aspect-ratio: 9 / 19.5;
  transform: rotate(4deg);
}

.c-phone--back {
  right: 38%;
  bottom: 60px;
  width: min(215px, 31%);
  aspect-ratio: 9 / 19.5;
  opacity: .96;
  transform: rotate(-7deg);
}

.c-hero__orbit {
  position: absolute;
  z-index: 1;
  left: -4%;
  bottom: -2%;
  width: 48%;
  opacity: .55;
  transform: rotate(20deg);
}

.c-particles {
  position: absolute;
  z-index: 5;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.c-particle {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--particle-size, 150px);
  height: var(--particle-size, 150px);
  border: 1px solid rgba(41, 212, 99, .16);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .24), rgba(188, 239, 200, .14) 48%, rgba(41, 212, 99, .05));
  box-shadow:
    inset 0 0 36px rgba(255, 255, 255, .4),
    0 18px 50px rgba(41, 212, 99, .08);
  backdrop-filter: blur(1.5px) saturate(108%);
  -webkit-backdrop-filter: blur(1.5px) saturate(108%);
  will-change: transform;
}

.c-particle--1 { --particle-size: 210px; transform: translate3d(7vw, 15vh, 0); }
.c-particle--2 { --particle-size: 118px; transform: translate3d(36vw, 9vh, 0); }
.c-particle--3 { --particle-size: 165px; transform: translate3d(25vw, 61vh, 0); }
.c-particle--4 { --particle-size: 255px; transform: translate3d(66vw, 23vh, 0); }
.c-particle--5 { --particle-size: 94px; transform: translate3d(52vw, 72vh, 0); }
.c-particle--6 { --particle-size: 142px; transform: translate3d(84vw, 8vh, 0); }
.c-particle--7 { --particle-size: 112px; transform: translate3d(74vw, 72vh, 0); }

@supports not ((backdrop-filter: blur(3px)) or (-webkit-backdrop-filter: blur(3px))) {
  .c-particle {
    background: rgba(188, 239, 200, .3);
  }
}

/* Empathy — Question circles */
.c-empathy {
  overflow: hidden;
  background: var(--c-white);
}

.c-empathy__inner {
  text-align: center;
}

.c-empathy h2 {
  margin: 14px 0 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.28;
}

.c-empathy__lead {
  margin: 0 auto;
  color: var(--c-muted);
  font-size: clamp(15px, 1.5vw, 18px);
}

.c-empathy__questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 48px);
  max-width: 980px;
  margin: clamp(54px, 7vw, 90px) auto 0;
}

.c-empathy__item {
  position: relative;
}

.c-empathy__mark {
  position: absolute;
  z-index: 0;
  top: -52px;
  left: 50%;
  color: #edf8ef;
  font-family: "Space Grotesk", sans-serif;
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.c-empathy__image {
  position: relative;
  z-index: 1;
  width: min(230px, 80%);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border: 6px solid var(--c-white);
  border-radius: 50%;
  box-shadow: 0 26px 55px -34px rgba(17, 21, 18, .52);
}

.c-empathy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-empathy__item p {
  position: relative;
  z-index: 1;
  max-width: 18em;
  margin: 20px auto 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.c-empathy__resolve {
  max-width: 830px;
  margin: clamp(58px, 8vw, 104px) auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--c-line);
}

.c-empathy__resolve strong {
  display: block;
  color: var(--c-green-dark);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(21px, 2.7vw, 31px);
  line-height: 1.55;
}

.c-empathy__resolve p {
  margin: 14px 0 0;
  color: var(--c-muted);
}

/* Promise — one oversized full-width pull between empathy and proof */
.c-promise-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 100px) 0;
  color: var(--c-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(188, 239, 200, .2), transparent 24%),
    radial-gradient(circle at 4% 90%, rgba(41, 212, 99, .12), transparent 28%),
    var(--c-ink);
}

.c-promise-band::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(188, 239, 200, .24);
  border-radius: 50%;
  pointer-events: none;
}

.c-promise-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
}

.c-promise-band__label {
  margin: 0 0 16px;
  color: var(--c-green-pale);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.c-promise-band__statement {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.18;
}

.c-promise-band__statement > span,
.c-promise-band__statement > strong {
  display: block;
}

.c-promise-band__statement > span {
  color: var(--c-green-pale);
}

.c-promise-band__statement strong {
  font: inherit;
}

.c-promise-band__statement strong span {
  display: inline;
}

.c-promise-band__inner > p {
  margin: 0 0 8px;
  color: #cad7ce;
  font-size: 15px;
}

/* Proof — evidence layers */
.c-proof {
  overflow: hidden;
  background:
    linear-gradient(rgba(41, 212, 99, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 212, 99, .045) 1px, transparent 1px),
    var(--c-surface);
  background-size: 36px 36px;
}

.c-proof__decor {
  position: absolute;
  top: 2%;
  right: -8%;
  width: min(430px, 38vw);
  opacity: .26;
  pointer-events: none;
}

.c-proof__board {
  position: relative;
  min-height: 600px;
  margin-top: 16px;
}

.c-proof__card {
  position: absolute;
  width: min(430px, 76vw);
  min-height: 465px;
  padding: 26px;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--c-shadow);
}

.c-proof__card--1 { top: 82px; left: 0; transform: rotate(-2deg); }
.c-proof__card--2 { top: 0; left: 33%; transform: rotate(1.5deg); }
.c-proof__card--3 { top: 116px; right: 0; transform: rotate(-1deg); }

.c-proof__card--1 h3,
.c-proof__card--1 p {
  padding-right: 26px;
}

.c-proof__card--2 h3,
.c-proof__card--2 p {
  padding-right: 82px;
}

.c-proof__number {
  color: var(--c-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.c-proof__card img {
  width: 190px;
  height: 190px;
  margin: 4px auto 8px;
  object-fit: contain;
}

.c-proof__card h3 {
  margin: 0 0 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
}

.c-proof__card p {
  margin: 0;
  color: var(--c-muted);
  font-size: 13.5px;
}

.c-proof__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.c-proof__facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 127, 59, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
}

.c-proof__facts img {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.c-proof__facts span {
  color: var(--c-muted);
  font-size: 11px;
  line-height: 1.55;
}

.c-proof__facts b {
  display: block;
  color: var(--c-ink);
  font-size: 14px;
}

.c-proof__measurement {
  max-width: 890px;
  margin: 22px 0 0;
  color: #536057;
  font-size: 12px;
}

/* Features — zigzag overlap */
.c-features {
  overflow: hidden;
  background-color: #f9fcfa;
  background-image: radial-gradient(rgba(41, 212, 99, .075) 1.25px, transparent 1.25px);
  background-size: 26px 26px;
}

.c-features__zig {
  display: grid;
  gap: clamp(90px, 10vw, 145px);
}

.c-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
}

.c-feature--reverse {
  grid-template-columns: .85fr 1.15fr;
}

.c-feature__visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius-lg);
  background:
    radial-gradient(circle at 30% 28%, rgba(188, 239, 200, .72), transparent 28%),
    linear-gradient(145deg, #fff, #eaf8ed);
  box-shadow: var(--c-shadow);
}

.c-feature--reverse .c-feature__visual {
  order: 2;
}

.c-feature__num {
  position: absolute;
  z-index: 0;
  top: 30px;
  right: 30px;
  color: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 700;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(15, 127, 59, .34);
}

.c-screen-pair {
  position: absolute;
  inset: 60px 46px 24px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
}

.c-app-screen {
  position: relative;
  z-index: 2;
  width: min(230px, 48%);
  margin: 0;
  padding: 6px;
  border: 2px solid #1a201b;
  border-radius: 30px;
  background: #171c18;
  box-shadow: 0 26px 48px -26px rgba(17, 21, 18, .65);
}

.c-app-screen img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 23px;
  object-fit: cover;
}

.c-app-screen--small {
  width: min(190px, 40%);
  margin-bottom: 42px;
  transform: rotate(-5deg);
}

.c-app-screen--solo {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: min(250px, 50%);
  transform: translateX(-50%) rotate(3deg);
}

.c-feature--reverse .c-app-screen--solo {
  transform: translateX(-50%) rotate(-3deg);
}

.c-feature__line-icon {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 16px;
  width: 210px;
  opacity: .72;
}

.c-feature__card {
  position: relative;
  z-index: 3;
  margin-left: -74px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius-md);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 26px 60px -38px rgba(17, 21, 18, .42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.c-feature--reverse .c-feature__card {
  order: 1;
  margin-right: -74px;
  margin-left: 0;
}

.c-feature__tag {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 4px 11px;
  border: 1px solid rgba(15, 127, 59, .28);
  border-radius: 999px;
  color: var(--c-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.c-feature__card h3 {
  margin: 0 0 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.5;
}

.c-feature__card > p:not(.c-feature__tag):not(.c-feature__time) {
  margin: 0;
  color: var(--c-muted);
  font-size: 15px;
}

.c-feature__time {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--c-green-dark);
}

.c-feature__time b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.c-feature__time span {
  color: var(--c-muted);
  font-size: 10px;
}

.c-features__note,
.c-pricing__note {
  max-width: 780px;
  margin: 42px auto 0;
  color: #536057;
  font-size: 12px;
  text-align: center;
}

.c-ai-disclosure {
  font-size: 11px;
  letter-spacing: .02em;
  line-height: 1.8;
}

.c-ai-disclosure--light {
  max-width: 780px;
  margin: 12px auto 0;
  color: #5f6c63;
  text-align: center;
}

.c-ai-disclosure--dark {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .6);
}

/* Privacy spotlight — craft-07 adapted for Bokashite */
.c-privacy-spotlight {
  position: relative;
  overflow: clip;
  color: var(--c-white);
  background:
    radial-gradient(circle at 76% 13%, rgba(41, 212, 99, .12), transparent 28%),
    var(--c-ink);
}

.c-privacy-spotlight__head {
  position: relative;
  z-index: 3;
  padding-top: clamp(88px, 9vw, 132px);
  padding-bottom: 34px;
}

.c-privacy-spotlight__head .c-section-label {
  color: #8fe9aa;
}

.c-privacy-spotlight__head h2 {
  max-width: 780px;
  margin: 14px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.28;
}

.c-privacy-spotlight__head h2 span {
  color: #8fe9aa;
}

.c-privacy-spotlight__lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
}

.c-privacy-spotlight__stage {
  position: relative;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
}

.c-privacy-spotlight__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
  pointer-events: none;
}

.c-privacy-spotlight__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1380px, 92vw, 123svh);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: clamp(22px, 3vw, 38px);
  background: #0b0f0c;
  box-shadow: 0 38px 100px -48px rgba(0, 0, 0, .8);
  transform: translate(-50%, -50%);
}

.c-privacy-spotlight__base,
.c-privacy-spotlight__layer,
.c-privacy-spotlight__mosaic,
.c-privacy-spotlight__layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c-privacy-spotlight__base,
.c-privacy-spotlight__layer img {
  object-fit: cover;
}

.c-privacy-spotlight__base {
  filter: brightness(.39) saturate(.72);
}

.c-privacy-spotlight__layer,
.c-privacy-spotlight__mosaic {
  z-index: 2;
  clip-path: circle(15.5% at 32% 46%);
  transition: opacity .24s ease;
  pointer-events: none;
}

.c-privacy-spotlight__layer--blur {
  opacity: 1;
}

.c-privacy-spotlight__layer--blur img {
  filter: blur(15px) brightness(1.03) saturate(.86);
  transform: scale(1.045);
}

.c-privacy-spotlight__mosaic {
  height: 100%;
  opacity: 0;
  image-rendering: pixelated;
  filter: brightness(1.04) saturate(.9);
}

.c-privacy-spotlight__layer--fill {
  opacity: 0;
}

.c-privacy-spotlight__layer--fill img {
  filter: brightness(1.03) saturate(.9);
}

.c-privacy-spotlight__plate {
  position: absolute;
  z-index: 3;
  top: 75.2%;
  left: 80.2%;
  width: 10.8%;
  height: 5.7%;
  border-radius: 5px;
  background: #111512;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .28);
  transform: rotate(.2deg);
}

.c-privacy-spotlight__stage[data-stage="1"] .c-privacy-spotlight__layer--blur,
.c-privacy-spotlight__stage[data-stage="2"] .c-privacy-spotlight__layer--blur {
  opacity: 0;
}

.c-privacy-spotlight__stage[data-stage="1"] .c-privacy-spotlight__mosaic {
  opacity: 1;
}

.c-privacy-spotlight__stage[data-stage="2"] .c-privacy-spotlight__mosaic {
  opacity: 0;
}

.c-privacy-spotlight__stage[data-stage="2"] .c-privacy-spotlight__layer--fill {
  opacity: 1;
}

.c-privacy-spotlight__ring {
  position: absolute;
  z-index: 5;
  top: 46%;
  left: 32%;
  display: grid;
  place-items: center;
  width: 30%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow:
    0 0 0 9px rgba(255, 255, 255, .08),
    0 24px 70px rgba(0, 0, 0, .38),
    inset 0 0 38px rgba(255, 255, 255, .11);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.c-privacy-spotlight__ring > span {
  position: absolute;
  top: 12%;
  right: 10%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--c-ink);
  background: #8fe9aa;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.c-privacy-spotlight__caption {
  position: absolute;
  z-index: 8;
  left: max(6vw, calc((100vw - 1180px) / 2));
  bottom: 8vh;
  width: min(450px, 76vw);
  min-height: 178px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(8, 13, 9, .72);
  box-shadow: 0 28px 70px -38px rgba(0, 0, 0, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.c-privacy-spotlight__caption-item {
  position: absolute;
  inset: 22px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .34s var(--c-ease), visibility .28s;
}

.c-privacy-spotlight__caption-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-privacy-spotlight__no {
  margin: 0;
  color: #8fe9aa;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.c-privacy-spotlight__caption h3 {
  margin: 9px 0 7px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.42;
}

.c-privacy-spotlight__caption-item > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.c-privacy-spotlight__hint {
  position: absolute;
  z-index: 8;
  right: 3vw;
  bottom: 8vh;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .26em;
  writing-mode: vertical-rl;
}

.c-privacy-spotlight__stage.is-static {
  display: grid;
  height: auto;
  min-height: 0;
  padding: 34px 0 72px;
}

.c-privacy-spotlight__stage.is-static .c-privacy-spotlight__frame,
.c-privacy-spotlight__stage.is-static .c-privacy-spotlight__caption {
  position: relative;
  inset: auto;
  transform: none;
}

.c-privacy-spotlight__stage.is-static .c-privacy-spotlight__frame {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.c-privacy-spotlight__stage.is-static .c-privacy-spotlight__caption {
  display: grid;
  gap: 14px;
  width: min(680px, calc(100% - 40px));
  max-width: none;
  min-height: 0;
  margin: 26px auto 0;
}

.c-privacy-spotlight__stage.is-static .c-privacy-spotlight__caption-item {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.c-privacy-spotlight__stage.is-static .c-privacy-spotlight__ring,
.c-privacy-spotlight__stage.is-static .c-privacy-spotlight__hint {
  display: none;
}

/* Developer profile — editorial split */
.c-numbers {
  overflow: hidden;
  background: #eaf7ed;
}

.c-numbers__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, .72fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.c-numbers__intro h2 {
  font-size: clamp(36px, 4vw, 48px);
}

.c-numbers__title-set,
.c-numbers__title-line {
  display: block;
}

.c-numbers__title-line {
  white-space: nowrap;
}

.c-numbers__title-line--ink {
  color: var(--c-ink) !important;
}

.c-numbers__title-set--mobile {
  display: none;
}

.c-numbers__story {
  max-width: 760px;
  margin-top: clamp(28px, 4vw, 48px);
  padding-left: 22px;
  border-left: 2px solid rgba(15, 127, 59, .28);
  color: var(--c-muted);
  font-size: 15px;
  line-height: 2;
}

.c-numbers__story p {
  margin: 0 0 20px;
}

.c-numbers__story p:last-child {
  margin-bottom: 0;
}

.c-numbers__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.c-numbers__visual::before {
  content: "";
  position: absolute;
  width: min(360px, 92%);
  aspect-ratio: 1;
  border: 1px solid rgba(15, 127, 59, .22);
  border-radius: 50%;
  transform: translate(22px, -18px);
}

.c-numbers__image {
  position: relative;
  z-index: 2;
  width: min(330px, 90%);
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  box-shadow: var(--c-shadow);
}

.c-numbers__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.c-numbers__orbit {
  position: absolute;
  z-index: 1;
  width: min(410px, 108%);
  aspect-ratio: 1;
  border: 1px dashed rgba(15, 127, 59, .28);
  border-radius: 50%;
  transform: rotate(-12deg);
}

/* Pricing — comparison matrix */
.c-pricing {
  overflow: hidden;
  background: #fbfdfb;
}

.c-pricing .c-section-head h2 {
  font-size: clamp(34px, 4.2vw, 50px);
}

.c-pricing__halo {
  position: absolute;
  top: -8%;
  right: -8%;
  width: min(500px, 45vw);
  opacity: .35;
  pointer-events: none;
}

.c-price-table {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 24px;
  background: var(--c-white);
  box-shadow: var(--c-shadow);
}

.c-price-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--c-line);
}

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

.c-price-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 14px 20px;
  text-align: center;
}

.c-price-row > div:first-child {
  align-items: flex-start;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.c-price-col--pro {
  background: rgba(188, 239, 200, .24);
}

.c-price-row--head > div {
  min-height: 230px;
  padding: 26px 20px;
}

.c-price-row--head picture {
  width: 66px;
  height: 66px;
  margin-bottom: 8px;
}

.c-price-row--head picture img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.c-price-row--head .c-price-table__label {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.c-price-table__label > p:last-child {
  max-width: 20em;
  margin: 4px 0 0;
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 400;
}

.c-price-plan {
  margin: 0;
  color: var(--c-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.c-price-row h3 {
  margin: 4px 0 9px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 21px;
}

.c-price-value {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.c-price-value small {
  margin-left: 3px;
  color: var(--c-muted);
  font-size: .42em;
}

.c-price-badge {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--c-white);
  background: var(--c-green-dark);
  font-size: 10px;
  font-weight: 700;
}

.c-price-row [role="cell"] small {
  display: block;
  margin-top: 3px;
  color: var(--c-muted);
  font-size: 10px;
}

.c-check {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--c-white);
  background: var(--c-green-dark);
  font-weight: 700;
}

.c-dash {
  color: #b9c2bb;
}

.c-pricing__screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  justify-content: center;
  gap: 38px;
  margin-top: 56px;
}

.c-pricing__screens figure {
  margin: 0;
  text-align: center;
}

.c-pricing__screens picture {
  aspect-ratio: 9 / 19.5;
}

.c-pricing__screens img {
  width: 100%;
  height: 100%;
  padding: 6px;
  border: 2px solid #1a201b;
  border-radius: 30px;
  background: #171c18;
  box-shadow: 0 24px 48px -30px rgba(17, 21, 18, .54);
  object-fit: cover;
}

.c-pricing__screens figcaption {
  margin-top: 14px;
  font-weight: 700;
}

.c-pricing__screens figcaption span {
  display: inline-flex;
  margin-left: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--c-white);
  background: var(--c-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
}

/* Process — tracking flow */
.c-process {
  background: var(--c-surface);
}

.c-process__inner {
  width: min(980px, calc(100% - 64px));
  margin-inline: auto;
}

.c-track {
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 22px;
  background: var(--c-white);
  box-shadow: var(--c-shadow);
}

.c-track__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-muted);
  background: #f9fcfa;
  font-family: "Space Grotesk", "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}

.c-track__head b {
  color: var(--c-green-dark);
}

.c-track__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
}

.c-track__steps {
  position: relative;
  padding: 26px 28px 26px 76px;
}

.c-track__rail {
  position: absolute;
  top: 66px;
  bottom: 66px;
  left: 48px;
  width: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--c-line);
}

.c-track__rail span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--c-green-dark);
  transform-origin: top;
}

.c-track-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 120px;
  padding: 12px 0 12px 12px;
}

.c-track-step__dot {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -39px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 3px solid var(--c-white);
  border-radius: 50%;
  color: var(--c-white);
  background: var(--c-green-dark);
  box-shadow: 0 0 0 2px var(--c-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 8px;
  font-weight: 700;
  transform: translateY(-50%);
}

.c-track-step > picture {
  width: 64px;
  height: 64px;
}

.c-track-step > picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-track-step h3 {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.c-track-step p {
  margin: 4px 0 0;
  color: var(--c-muted);
  font-size: 12px;
}

.c-track__side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 25px;
  border-left: 1px solid var(--c-line);
  background: #f9fcfa;
}

.c-track__side div span {
  display: block;
  color: var(--c-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.c-track__side div b {
  display: block;
  margin-top: 3px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
}

.c-track__side div small {
  display: block;
  color: var(--c-muted);
  font-size: 10px;
}

.c-track__side > p {
  margin: auto 0 0;
  padding: 14px;
  border: 1px dashed #b8d5bf;
  border-radius: 13px;
  color: var(--c-muted);
  font-size: 11px;
}

/* FAQ — sticky numbered accordion */
.c-faq {
  background: var(--c-white);
}

.c-faq__layout {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.c-faq__side {
  position: sticky;
  top: 112px;
}

.c-faq__side h2 {
  font-size: clamp(40px, 5vw, 62px);
}

.c-faq__list {
  border-top: 1px solid var(--c-line);
}

.c-faq__item {
  border-bottom: 1px solid var(--c-line);
}

.c-faq__item h3 {
  margin: 0;
}

.c-faq__question {
  display: grid;
  grid-template-columns: 44px 1fr 26px;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 24px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.c-faq__question > span {
  color: var(--c-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.c-faq__question > b {
  font-size: 15.5px;
  line-height: 1.65;
}

.c-faq__question > i {
  position: relative;
  width: 18px;
  height: 18px;
}

.c-faq__question > i::before,
.c-faq__question > i::after {
  content: "";
  position: absolute;
  background: var(--c-green-dark);
  transition: transform .3s ease, opacity .3s ease;
}

.c-faq__question > i::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.c-faq__question > i::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
}

.c-faq__item.is-open .c-faq__question > i::after {
  opacity: 0;
  transform: rotate(90deg);
}

.c-faq__answer {
  overflow: hidden;
}

.c-faq__answer p {
  margin: 0;
  padding: 0 4px 26px 58px;
  color: var(--c-muted);
  font-size: 14px;
}

/* Final CTA — green gradient panel */
.c-final {
  background: #f9fcfa;
}

.c-final__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 90px) clamp(28px, 6vw, 78px);
  border: 1px solid rgba(15, 127, 59, .14);
  border-radius: clamp(28px, 4vw, 48px);
  background: linear-gradient(125deg, #d9f8e1 0%, #96ebb0 50%, #e9fbed 100%);
  box-shadow: var(--c-shadow);
}

.c-final__grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(17, 21, 18, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 18, .28) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 52% 44%, #000, transparent 75%);
}

.c-final__orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.c-final__orb--1 { top: 13%; left: 7%; width: 130px; height: 130px; }
.c-final__orb--2 { right: 7%; bottom: -50px; width: 240px; height: 240px; }

.c-final__line {
  position: absolute;
  top: -15%;
  right: 0;
  width: 40%;
  opacity: .22;
}

.c-final__inner {
  position: relative;
  z-index: 2;
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.c-final__badge {
  display: inline-flex;
  margin: 0;
  padding: 6px 14px;
  border: 1px solid rgba(17, 21, 18, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .36);
  font-size: 11px;
  font-weight: 700;
}

.c-final h2 {
  margin: 18px 0 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.28;
}

.c-final__inner > p:not(.c-final__badge) {
  max-width: 580px;
  margin: 0 auto;
  color: #315b3e;
}

.c-final__action {
  justify-content: center;
}

.c-store-button--light {
  color: var(--c-ink);
  border-color: rgba(17, 21, 18, .12);
  background: var(--c-white);
}

.c-store-button--light.is-disabled {
  border-color: rgba(17, 21, 18, .2);
  color: #445048;
  background: rgba(255, 255, 255, .62);
  box-shadow: none;
  opacity: .78;
}

.c-store-status--panel {
  color: #315b3e;
}

.c-final__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 26px;
  margin: 28px 0 0;
  padding: 0;
  color: #315b3e;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.c-final__trust li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--c-green-dark);
}

/* Footer — minimal centered */
.c-footer {
  border-top: 1px solid var(--c-line);
  background: #f7faf8;
}

.c-footer__inner {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding: 68px 0 36px;
  text-align: center;
}

.c-footer__mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.c-footer__brand {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.c-footer__official {
  margin: 5px 0 0;
  color: var(--c-muted);
  font-size: 12px;
}

.c-footer__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin: 30px 0 0;
}

.c-footer__facts div {
  display: flex;
  gap: 7px;
  font-size: 12px;
}

.c-footer__facts dt {
  color: var(--c-muted);
}

.c-footer__facts dd {
  margin: 0;
  font-weight: 700;
}

.c-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 30px;
}

.c-footer__links a {
  font-size: 12px;
  text-underline-offset: 5px;
}

.c-footer__copy {
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  color: var(--c-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
}

.c-noscript {
  position: fixed;
  z-index: 80;
  right: 12px;
  bottom: 12px;
  max-width: 360px;
  margin: 0;
  padding: 12px 15px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: var(--c-white);
  box-shadow: var(--c-shadow);
  font-size: 11px;
}

:focus-visible {
  outline: 3px solid rgba(41, 212, 99, .6);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .c-hero__inner {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  }

  .c-hero__media {
    min-height: 540px;
  }

  .c-proof__card {
    width: min(390px, 73vw);
  }

  .c-proof__card--2 { left: 31%; }
}

@media (max-width: 900px) {
  .c-wrap,
  .c-hero__inner,
  .c-process__inner {
    width: min(100% - 40px, 760px);
  }

  .c-promise-band__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .c-promise-band__inner > p {
    max-width: 34em;
  }

  .c-section-head--split,
  .c-numbers__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .c-hero__inner {
    grid-template-columns: 1fr;
  }

  .c-hero__copy {
    max-width: 720px;
    padding: 0;
  }

  .c-hero__media {
    min-height: 650px;
  }

  .c-phone--front { right: 12%; }
  .c-phone--back { right: 46%; }

  .c-particle--6,
  .c-particle--7 {
    display: none;
  }

  .c-particle--1 { --particle-size: 140px; }
  .c-particle--2 { --particle-size: 94px; }
  .c-particle--3 { --particle-size: 130px; }
  .c-particle--4 { --particle-size: 155px; }
  .c-particle--5 { --particle-size: 74px; }

  .c-proof__board {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .c-proof__card,
  .c-proof__card--1,
  .c-proof__card--2,
  .c-proof__card--3 {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: grid;
    grid-template-columns: 130px 1fr;
    column-gap: 22px;
    width: 100%;
    min-height: 0;
    transform: none;
  }

  .c-proof__number {
    grid-column: 1 / -1;
  }

  .c-proof__card img {
    grid-row: 2 / 4;
    width: 130px;
    height: 130px;
    margin: 0;
  }

  .c-proof__card > picture {
    grid-row: 2 / 4;
    width: 130px;
    height: 130px;
  }

  .c-proof__card > picture img {
    width: 100%;
    height: 100%;
  }

  .c-proof__card--1 h3,
  .c-proof__card--1 p,
  .c-proof__card--2 h3,
  .c-proof__card--2 p {
    padding-right: 0;
  }

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

  .c-feature,
  .c-feature--reverse {
    grid-template-columns: 1fr;
  }

  .c-feature__visual,
  .c-feature--reverse .c-feature__visual {
    order: 0;
  }

  .c-feature__card,
  .c-feature--reverse .c-feature__card {
    order: 0;
    margin: -58px 24px 0;
  }

  .c-privacy-spotlight__frame {
    top: 34%;
    width: min(calc(100% - 40px), 760px);
  }

  .c-privacy-spotlight__caption {
    right: 20px;
    bottom: 7vh;
    left: 20px;
    width: auto;
    max-width: 520px;
  }

  .c-privacy-spotlight__hint {
    display: none;
  }

  .c-numbers__visual {
    min-height: 360px;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 90px; }

  .c-section {
    padding: 82px 0;
  }

  .c-header {
    top: 10px;
    padding-inline: 12px;
  }

  .c-header__pill {
    min-height: 54px;
    padding: 6px 7px 6px 13px;
  }

  .c-header__brand {
    font-size: 17px;
  }

  .c-header__brand img {
    width: 34px;
    height: 34px;
  }

  .c-header__menu-button {
    position: relative;
    display: block;
  }

  .c-header__nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 9px;
    border: 1px solid rgba(17, 21, 18, .09);
    border-radius: 24px;
    background: rgba(252, 255, 252, .96);
    box-shadow: 0 22px 50px -30px rgba(17, 21, 18, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }

  .c-header.is-menu-open .c-header__nav,
  .no-js .c-header__pill:focus-within .c-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .c-header__nav a {
    padding: 11px 14px;
    border-radius: 14px;
  }

  .c-header__nav a:hover,
  .c-header__nav a:focus-visible {
    background: var(--c-surface);
  }

  .c-header__nav a::after { display: none; }

  .c-hero {
    padding: 105px 0 60px;
  }

  .c-hero h1 {
    font-size: clamp(37px, 10vw, 52px);
  }

  .c-hero__brand-lockup {
    gap: 13px;
    padding: 8px 17px 8px 8px;
    border-radius: 21px;
  }

  .c-hero__brand-lockup picture {
    width: 68px;
    height: 68px;
  }

  .c-hero__app-name {
    font-size: 26px;
  }

  .c-hero__app-description {
    font-size: 11px;
  }

  .c-hero__lead {
    font-size: 15.5px;
  }

  .c-privacy-spotlight__head {
    padding-top: 82px;
    padding-bottom: 26px;
  }

  .c-privacy-spotlight__head h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .c-privacy-spotlight__stage {
    min-height: 700px;
  }

  .c-privacy-spotlight__frame {
    width: calc(100% - 28px);
  }

  .c-privacy-spotlight__caption {
    right: 14px;
    bottom: 6vh;
    left: 14px;
    min-height: 184px;
  }

  .c-privacy-spotlight__ring {
    border-width: 1.5px;
  }

  .c-privacy-spotlight__ring > span {
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .c-numbers__intro h2 {
    font-size: 30px;
    line-height: 1.38;
  }

  .c-numbers__title-set--desktop {
    display: none;
  }

  .c-numbers__title-set--mobile {
    display: block;
  }

  .c-store-button {
    width: 100%;
  }

  .c-store-status {
    width: 100%;
    text-align: center;
  }

  .c-hero__media {
    min-height: 520px;
  }

  .c-hero__scene {
    inset: 20px 0 42px;
  }

  .c-phone--front {
    right: 5%;
    width: min(205px, 47%);
  }

  .c-phone--back {
    right: 48%;
    bottom: 45px;
    width: min(170px, 39%);
  }

  .c-particle--1 { --particle-size: 106px; }
  .c-particle--2 { --particle-size: 62px; }
  .c-particle--3 { --particle-size: 88px; }
  .c-particle--4 { --particle-size: 112px; }
  .c-particle--5 { --particle-size: 56px; }

  .c-empathy__questions {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .c-empathy__image {
    width: min(220px, 66vw);
  }

  .c-proof__card,
  .c-proof__card--1,
  .c-proof__card--2,
  .c-proof__card--3 {
    display: block;
  }

  .c-proof__card img {
    width: 150px;
    height: 150px;
    margin: 4px auto 8px;
  }

  .c-proof__card > picture {
    width: 150px;
    height: 150px;
    margin: 4px auto 8px;
  }

  .c-proof__card > picture img {
    margin: 0;
  }

  .c-proof__facts {
    grid-template-columns: 1fr;
  }

  .c-feature__visual {
    min-height: 470px;
  }

  .c-screen-pair {
    inset: 54px 16px 18px;
  }

  .c-app-screen--solo {
    width: min(210px, 52%);
  }

  .c-feature__line-icon {
    width: 150px;
  }

  .c-feature__card,
  .c-feature--reverse .c-feature__card {
    margin: -42px 12px 0;
    padding: 26px 22px;
  }

  .c-numbers__visual {
    min-height: 310px;
  }

  .c-numbers__image {
    width: min(270px, 82vw);
  }

  .c-price-table {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .c-price-row {
    grid-template-columns: 150px 130px 130px;
    min-width: 410px;
  }

  .c-price-row > div {
    padding-inline: 14px;
  }

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

  .c-track__body {
    grid-template-columns: 1fr;
  }

  .c-track__steps {
    padding: 22px 18px 22px 60px;
  }

  .c-track__rail {
    left: 37px;
  }

  .c-track-step {
    grid-template-columns: 54px 1fr;
    min-height: 112px;
  }

  .c-track-step__dot {
    left: -34px;
  }

  .c-track-step > picture {
    width: 54px;
    height: 54px;
  }

  .c-track__side {
    border-top: 1px solid var(--c-line);
    border-left: 0;
  }

  .c-faq__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .c-faq__side {
    position: static;
  }

  .c-faq__side h2 br { display: none; }

  .c-faq__question {
    grid-template-columns: 34px 1fr 20px;
    gap: 10px;
  }

  .c-faq__answer p {
    padding-left: 38px;
  }

  .c-final__panel {
    padding-inline: 22px;
  }

  .c-final__trust {
    display: grid;
    justify-items: start;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
  }

  .c-footer__facts {
    display: grid;
    gap: 7px;
  }

  .c-footer__facts div {
    justify-content: center;
  }
}

@media (min-width: 600px) {
  .c-pricing #pricing-title > span {
    display: inline-block;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .c-wrap,
  .c-hero__inner,
  .c-process__inner {
    width: calc(100% - 28px);
  }

  .c-hero h1 {
    font-size: clamp(35px, 9.6vw, 39px);
  }

  .c-promise-band__statement strong span {
    display: block;
  }

  .c-hero__media {
    min-height: 450px;
  }

  .c-phone--front { width: 49%; }
  .c-phone--back { width: 41%; }

  .c-feature__visual {
    min-height: 420px;
  }

  .c-price-row {
    grid-template-columns: 125px 110px 110px;
    min-width: 345px;
  }

  .c-price-row > div {
    padding-inline: 10px;
  }

  .c-price-value {
    font-size: 31px;
  }
}

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

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

  .c-particle {
    opacity: .32;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .c-particle--1 { transform: translate3d(72vw, 12vh, 0) scale(.8); }
  .c-particle--2 { transform: translate3d(58vw, 72vh, 0) scale(.75); }
  .c-particle--3 { transform: translate3d(82vw, 48vh, 0) scale(.7); }
  .c-particle--4 { transform: translate3d(68vw, 32vh, 0) scale(.72); }
  .c-particle--5 { transform: translate3d(52vw, 82vh, 0) scale(.7); }

  .c-privacy-spotlight__stage {
    display: grid;
    height: auto;
    min-height: 0;
    padding: 34px 0 72px;
  }

  .c-privacy-spotlight__frame,
  .c-privacy-spotlight__caption {
    position: relative;
    inset: auto;
    transform: none;
  }

  .c-privacy-spotlight__frame {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
  }

  .c-privacy-spotlight__base {
    filter: brightness(.62) saturate(.78);
  }

  .c-privacy-spotlight__caption {
    display: grid;
    gap: 14px;
    width: min(680px, calc(100% - 40px));
    max-width: none;
    min-height: 0;
    margin: 26px auto 0;
  }

  .c-privacy-spotlight__caption-item {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .c-privacy-spotlight__ring,
  .c-privacy-spotlight__hint {
    display: none;
  }
}

@media print {
  .c-header,
  .c-particles,
  .c-hero__canvas {
    display: none !important;
  }

  .c-section,
  .c-hero {
    min-height: 0;
    padding-block: 32px;
  }
}
