:root {
  --bg: #f6f3ee;
  --bg-soft: #eef4f0;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --surface-accent: #e7f2ec;
  --surface-accent-strong: #d6ebe1;
  --text: #17211d;
  --text-soft: #5d6f67;
  --line: #dbe6df;
  --brand: #116c56;
  --brand-strong: #0c5745;
  --shadow-soft: 0 18px 48px -36px rgba(18, 36, 29, 0.16);
  --shadow-medium: 0 28px 72px -46px rgba(18, 36, 29, 0.22);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shot-radius: 26px;
  --shot-shadow: 0 24px 40px -28px rgba(18, 36, 29, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.58;
  background:
    radial-gradient(circle at top left, rgba(17, 108, 86, 0.08), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(160, 198, 182, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf9f5 0%, var(--bg) 52%, #f1f4ef 100%);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px -34px rgba(13, 26, 21, 0.34);
}

.site-header.is-scrolled {
  box-shadow: 0 20px 44px -34px rgba(13, 26, 21, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 16px 28px -20px rgba(0, 0, 0, 0.42);
}

.main-nav,
.header-actions,
.cta-row,
.hero-points,
.chip-row,
.policy-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 8px;
}

.main-nav a,
.text-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.text-link:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.header-actions {
  gap: 10px;
}

.header-cta,
.secondary-cta,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.secondary-cta {
  padding: 13px 18px;
}

.header-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #116c56, #1f8b71);
  box-shadow: 0 18px 32px -24px rgba(17, 108, 86, 0.5);
}

.secondary-cta {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.header-cta:hover,
.secondary-cta:hover,
.panel-link:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.84fr);
  gap: 40px;
  align-items: center;
  margin-top: 22px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(214, 235, 225, 0.68), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.94));
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -60px;
  background: rgba(214, 235, 225, 0.8);
}

.hero::after {
  width: 180px;
  height: 180px;
  left: 42%;
  bottom: -90px;
  background: rgba(232, 241, 236, 0.9);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.bento-label,
.story-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: var(--surface-accent);
  color: var(--brand-strong);
}

.hero h1 {
  margin-top: 18px;
  max-width: 12ch;
  font-size: clamp(2.75rem, 4.5vw, 4.35rem);
}

.lead {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.cta-row {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: center;
}

.store-badge {
  display: block;
  width: 190px;
  height: 56px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badge span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("googleplay.png");
  background-repeat: no-repeat;
  background-size: 217px 141px;
  background-position: -14px -43px;
}

.store-badge:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero-points {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-points span,
.chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-points span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-soft);
}

.hero-visual {
  min-height: 470px;
}

.device-card {
  position: absolute;
  aspect-ratio: 941 / 1672;
  overflow: hidden;
  border-radius: var(--shot-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shot-shadow);
}

.device-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.main-shot {
  width: min(220px, 34vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: heroFloatMain 8s ease-in-out infinite;
}

.side-shot {
  display: block;
  width: min(154px, 24vw);
  opacity: 0.9;
  filter: saturate(0.92);
}

.side-shot-top {
  top: 54px;
  left: 16px;
  z-index: 1;
  transform: rotate(-7deg);
  animation: heroFloatLeft 9s ease-in-out infinite;
}

.side-shot-bottom {
  right: 14px;
  bottom: 50px;
  z-index: 2;
  transform: rotate(7deg);
  animation: heroFloatRight 10s ease-in-out infinite;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-stat,
.bento-card,
.story-card,
.gallery-card,
.workflow-step,
.announcement-teaser,
.policy-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.trust-stat {
  padding: 22px 20px;
}

.trust-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.trust-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.section {
  padding-top: 84px;
}

.announcement-section {
  scroll-margin-top: 112px;
}

.announcement-teaser {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 26px;
  background:
    radial-gradient(circle at top right, rgba(214, 235, 225, 0.82), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 242, 0.94));
}

.announcement-mark {
  display: grid;
  place-content: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  color: var(--brand-strong);
  background: var(--surface-accent-strong);
  line-height: 1;
  text-align: center;
  transform: rotate(-3deg);
}

.announcement-mark span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-mark strong {
  margin-top: 5px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.announcement-teaser-copy h2 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.announcement-teaser-copy > p:last-child {
  margin-top: 8px;
  max-width: 64ch;
  color: var(--text-soft);
}

.announcement-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #1f8b71);
  box-shadow: 0 18px 32px -24px rgba(17, 108, 86, 0.5);
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.announcement-open:hover {
  transform: translateY(-1px);
}

.announcement-open:focus-visible,
.announcement-close:focus-visible,
.announcement-cta:focus-visible {
  outline: 3px solid rgba(17, 108, 86, 0.28);
  outline-offset: 3px;
}

.announcement-dialog {
  width: min(940px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius-xl);
  color: var(--text);
  background: transparent;
  box-shadow: 0 40px 100px -44px rgba(8, 25, 19, 0.55);
  overflow: visible;
}

.announcement-dialog::backdrop {
  background: rgba(10, 25, 20, 0.56);
  backdrop-filter: blur(7px);
}

.announcement-dialog-surface {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 28px;
  max-height: calc(100dvh - 32px);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(214, 235, 225, 0.92), transparent 34%),
    linear-gradient(145deg, #ffffff, #eff6f2);
  overflow: auto;
}

.announcement-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  place-content: center;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.announcement-copy h2 {
  margin-top: 14px;
  max-width: 17ch;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.announcement-copy > p:not(.section-kicker) {
  margin-top: 16px;
  max-width: 72ch;
  color: var(--text-soft);
}

.announcement-summary {
  align-self: stretch;
  padding: 24px;
  border: 1px solid rgba(17, 108, 86, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.announcement-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-accent-strong);
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.announcement-summary h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}

.announcement-summary ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.announcement-summary li + li {
  margin-top: 9px;
}

.announcement-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #1f8b71);
  font-weight: 800;
  box-shadow: 0 18px 32px -24px rgba(17, 108, 86, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.announcement-cta:hover {
  transform: translateY(-1px);
}

body.has-open-dialog {
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
}

.section-kicker,
.bento-label,
.story-label {
  color: var(--brand-strong);
  background: var(--surface-accent);
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-heading p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

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

.bento-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.bento-grid > .bento-card:not(.bento-card-wide):not(.bento-card-tall) {
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: center;
  min-height: 360px;
  padding: 28px;
}

.bento-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 220px);
  align-items: center;
}

.bento-card-tall {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  align-items: center;
}

.bento-copy h3,
.story-copy h3,
.workflow-step h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.bento-copy p,
.story-copy p,
.workflow-step p,
.policy-copy p:last-child {
  margin-top: 12px;
  color: var(--text-soft);
}

.chip-row {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.chip-row span {
  background: var(--surface-accent);
  color: var(--brand-strong);
}

.bento-shot,
.mini-shot,
.story-shot {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
}

.mini-shot {
  max-width: none;
  justify-self: center;
  padding: 0;
}

.bento-shot img,
.mini-shot img,
.story-shot img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: var(--shot-radius);
  box-shadow: var(--shot-shadow);
}

.mini-shot img {
  max-height: 300px;
}

.section-dark {
  margin-top: 84px;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(214, 235, 225, 0.72), transparent 24%),
    linear-gradient(180deg, #eef4f0 0%, #e7f0eb 100%);
  box-shadow: var(--shadow-soft);
}

.story-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.story-card-reverse {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
}

.story-card-reverse .story-copy {
  order: 2;
}

.story-card-reverse .story-shot {
  order: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.gallery-card {
  margin: 0;
  padding: 8px;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-card > img {
  display: block;
  width: min(208px, 100%);
  height: auto;
  margin: 0 auto;
  border-radius: var(--shot-radius);
  object-fit: cover;
  box-shadow: var(--shot-shadow);
}

.gallery-card figcaption {
  margin-top: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
}

.gallery-card-large {
  grid-row: auto;
}

.gallery-card-wide {
  grid-column: auto;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.workflow-step {
  padding: 24px;
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.policy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 242, 0.92));
}

.policy-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.policy-actions {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.panel-link {
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 18px 36px -32px rgba(18, 36, 29, 0.18);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.faq-item p {
  margin: 0 0 22px;
  max-width: 70ch;
  color: var(--text-soft);
}

.faq-item a {
  color: var(--brand-strong);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px 2px 12px;
  color: var(--text-soft);
}

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

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

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloatMain {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 8px));
  }
}

@keyframes heroFloatLeft {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }

  50% {
    transform: rotate(-5deg) translateY(-10px);
  }
}

@keyframes heroFloatRight {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }

  50% {
    transform: rotate(5deg) translateY(10px);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    width: min(560px, 100%);
    min-height: 430px;
    margin: 0 auto;
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .bento-grid,
  .bento-card-wide,
  .bento-card-tall,
  .story-card,
  .story-card-reverse,
  .announcement-dialog-surface,
  .policy-panel {
    grid-template-columns: 1fr;
  }

  .announcement-teaser {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .announcement-open {
    grid-column: 2;
    justify-self: start;
  }

  .story-card-reverse .story-copy,
  .story-card-reverse .story-shot {
    order: initial;
  }

  .mini-shot {
    justify-self: center;
  }

  .policy-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100vw - 16px), 100%);
    padding-top: 10px;
  }

  .site-header {
    top: 8px;
    padding: 14px 16px;
    border-radius: 20px;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    margin-top: 16px;
    padding: 28px 20px 24px;
    border-radius: 28px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

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

  .main-shot {
    width: min(184px, 48vw);
  }

  .side-shot {
    width: min(120px, 28vw);
  }

  .side-shot-top {
    top: 44px;
    left: 8%;
  }

  .side-shot-bottom {
    right: 8%;
    bottom: 40px;
  }

  .trust-band,
  .bento-grid,
  .gallery-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .story-card,
  .policy-panel,
  .workflow-step,
  .announcement-teaser {
    padding: 22px;
  }

  .bento-grid > .bento-card:not(.bento-card-wide):not(.bento-card-tall),
  .bento-card-wide,
  .bento-card-tall,
  .story-card,
  .story-card-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bento-shot img,
  .mini-shot img,
  .story-shot img,
  .gallery-card > img {
    max-width: min(100%, 224px);
    max-height: 320px;
  }

  .gallery-card-large,
  .gallery-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-card > img {
    width: min(224px, 76vw);
  }

  .section {
    padding-top: 72px;
  }

  .section-dark {
    margin-top: 72px;
    padding: 28px 18px;
    border-radius: 28px;
  }

  .announcement-dialog {
    width: min(calc(100vw - 16px), 100%);
    max-height: calc(100dvh - 16px);
    border-radius: 28px;
  }

  .announcement-dialog-surface {
    max-height: calc(100dvh - 16px);
    padding: 54px 20px 24px;
    border-radius: 28px;
  }
}

@media (max-width: 860px) {
  .bento-grid > .bento-card:not(.bento-card-wide):not(.bento-card-tall) {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .text-link,
  .header-cta,
  .secondary-cta {
    text-align: center;
  }

  .cta-row,
  .hero-points,
  .chip-row {
    gap: 8px;
  }

  .hero-points span,
  .chip-row span {
    width: 100%;
  }

  .hero-visual {
    min-height: 300px;
  }

  .main-shot {
    width: min(164px, 48vw);
  }

  .side-shot {
    width: min(104px, 27vw);
  }

  .side-shot-top {
    left: 4%;
  }

  .side-shot-bottom {
    right: 4%;
  }

  .faq-item {
    padding: 0 18px;
  }

  .announcement-teaser {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .announcement-mark {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .announcement-open {
    grid-column: auto;
    width: 100%;
  }

  .announcement-summary {
    padding: 20px;
  }

  .bento-shot img,
  .mini-shot img,
  .story-shot img,
  .gallery-card > img {
    max-width: min(100%, 196px);
  }
}

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

  .main-shot,
  .side-shot {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final restraint pass: only whole sections animate; content inside stays calm. */
.js.motion-ready .reveal:not([data-motion]) {
  opacity: 1;
  transform: none;
  transition: none;
}

.js.motion-ready .reveal[data-motion] {
  transition:
    opacity 0.4s ease-out,
    transform 0.5s var(--motion-ease);
}

.js.motion-ready .reveal[data-motion]:not(.in-view) {
  opacity: 0;
  transform: translateY(10px);
}

.js.motion-ready .hero-copy > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-visual .device-card {
  transition: none;
}

.js.motion-ready .hero-visual[data-motion]:not(.in-view) .main-shot {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (hover: hover) and (pointer: fine) {
  .bento-card:hover,
  .story-card:hover,
  .workflow-step:hover {
    transform: none;
    border-color: inherit;
    box-shadow: none;
  }

  .gallery-card:hover img {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px -32px rgba(18, 36, 29, 0.34);
  }
}

@media (max-width: 760px) {
  .section {
    padding-top: 88px;
  }

  .bento-card,
  .bento-card-wide,
  .bento-card-tall,
  .story-card,
  .story-card-reverse {
    padding-inline: 0;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100vw - 24px), 100%);
  }

  .site-header {
    min-height: 60px;
    padding: 8px 2px;
    border-radius: 0;
  }

  .hero {
    gap: 12px;
    min-height: 100svh;
    margin-top: 0;
    padding: 64px 8px 72px;
    border-radius: 0;
  }

  .hero-visual {
    min-height: 300px;
  }

  .main-shot {
    width: min(58vw, 210px);
  }

  .js.motion-ready .hero-visual[data-motion]:not(.in-view) .main-shot {
    transform: none;
  }

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

  #features,
  .section-dark {
    margin-top: 88px;
    padding: 48px 20px;
    border-radius: 28px;
  }

  .gallery-grid {
    grid-auto-columns: min(72vw, 232px);
    grid-template-columns: none;
    margin-top: 28px;
    padding: 8px 24px 18px 0;
  }

  .faq-item {
    padding-inline: 0;
  }
}

/* Centered launch-style hero. Kept last to override earlier hero experiments. */
.hero {
  position: relative;
  isolation: isolate;
  grid-template-rows: minmax(0, 1fr) 44px;
  align-items: center;
  min-height: 100svh;
  padding: 40px 20px 28px;
}

.hero-copy {
  display: flex;
  width: min(100%, 680px);
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-app-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-app-icon {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 32px;
  box-shadow: 0 24px 42px -28px rgba(18, 36, 29, 0.42);
}

.hero-app-label {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(17, 108, 86, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 28px -26px rgba(18, 36, 29, 0.34);
}

.hero .hero-brand-name::after {
  animation-delay: 1.55s;
}

.hero h1 {
  max-width: 15ch;
  margin-top: 22px;
  font-size: clamp(2.1rem, 7.5vw, 3.5rem);
  text-align: center;
}

.hero .lead {
  max-width: 540px;
  margin-top: 16px;
  text-align: center;
}

.hero-store-row {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-store-row .store-badge,
.app-store-soon {
  width: 190px;
  height: 56px;
  flex: 0 1 190px;
}

.hero-store-row .store-badge span {
  background-size: 114.21% 251.78%;
  background-position: 52% 51%;
}

.app-store-soon {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #111;
  color: #fff;
  opacity: 0.78;
  cursor: default;
}

.app-store-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.app-store-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.app-store-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  white-space: nowrap;
}

.app-store-copy small {
  font-size: 0.52rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-store-copy strong {
  margin-top: 4px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.hero-legal-links {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero-legal-links a {
  text-underline-offset: 4px;
}

.hero-splash-icon {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  pointer-events: none;
  animation: splashLayerExit 1.28s ease-out forwards;
}

.hero-splash-icon img {
  width: 132px;
  height: 132px;
  border-radius: 36px;
  box-shadow: 0 28px 46px -28px rgba(18, 36, 29, 0.42);
  animation: splashIconLaunch 1.28s var(--motion-ease) forwards;
}

.hero-intro-content > * {
  animation: heroElementReveal 0.5s var(--motion-ease) both;
}

.hero-intro-content > :nth-child(1) {
  animation-delay: 0.78s;
}

.hero-intro-content > :nth-child(2) {
  animation-delay: 0.88s;
}

.hero-intro-content > :nth-child(3) {
  animation-delay: 0.98s;
}

.hero-intro-content > :nth-child(4) {
  animation-delay: 1.08s;
}

.hero-intro-content > :nth-child(5) {
  animation-delay: 1.18s;
}

.hero .hero-scroll-hint {
  animation: heroElementReveal 0.5s var(--motion-ease) 1.28s both;
}

@keyframes splashLayerExit {
  0%, 58% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes splashIconLaunch {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  22%, 58% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-22svh) scale(0.88);
  }
}

@keyframes heroElementReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
    padding: 32px 8px 24px;
  }

  .hero-app-icon {
    width: 112px;
    height: 112px;
    border-radius: 30px;
  }

  .hero-app-label {
    font-size: 0.82rem;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .hero .lead {
    margin-top: 14px;
    font-size: 0.96rem;
  }

  .hero-store-row {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-store-row .store-badge,
  .app-store-soon {
    width: auto;
    height: 48px;
    flex: 1 1 0;
  }

  .app-store-soon {
    gap: 7px;
    padding-inline: 9px;
  }

  .app-store-mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .app-store-copy strong {
    font-size: 0.86rem;
  }

  .hero-legal-links {
    gap: 20px;
    margin-top: 8px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-splash-icon {
    display: none;
    animation: none;
  }

  .hero-splash-icon img,
  .hero-intro-content > *,
  .hero .hero-scroll-hint,
  .hero .hero-brand-name::after {
    animation: none;
  }
}

/* Keep screenshot motion last so it can be slightly richer than section fades. */
.js.motion-ready .reveal[data-motion="image"] {
  transition:
    opacity 0.48s ease-out var(--reveal-delay, 0ms),
    transform 0.68s var(--motion-ease) var(--reveal-delay, 0ms);
}

.js.motion-ready .reveal[data-motion="image"]:not(.in-view) {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.js.motion-ready .hero-visual[data-motion="image"]:not(.in-view) .main-shot {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 520px) {
  .js.motion-ready .hero-visual[data-motion="image"]:not(.in-view) .main-shot {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal[data-motion="image"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Image motion is the playful layer; the surrounding layout stays still. */
.js.motion-ready .reveal[data-motion="image"] {
  transition:
    opacity 0.48s ease-out var(--reveal-delay, 0ms),
    transform 0.68s var(--motion-ease) var(--reveal-delay, 0ms);
}

.js.motion-ready .reveal[data-motion="image"]:not(.in-view) {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.js.motion-ready .hero-visual[data-motion="image"]:not(.in-view) .main-shot {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 520px) {
  .js.motion-ready .hero-visual[data-motion="image"]:not(.in-view) .main-shot {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal[data-motion="image"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.announcement-teaser {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 760px) {
  .announcement-teaser {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .announcement-open {
    grid-column: auto;
    justify-self: end;
  }
}

@media (max-width: 520px) {
  .announcement-teaser {
    grid-template-columns: minmax(0, 1fr);
  }

  .announcement-open {
    justify-self: start;
    width: auto;
    padding-inline: 0;
  }
}

/* Minimal chapter layout: fewer surfaces, more whitespace, one idea at a time. */
body {
  background: #f3f3f0;
}

.page-shell {
  width: min(1180px, calc(100vw - 48px));
}

.site-header {
  top: 0;
  min-height: 68px;
  padding: 12px 8px;
  border: 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: 0;
  background: rgba(243, 243, 240, 0.9);
  box-shadow: none;
}

.site-header.is-scrolled {
  box-shadow: none;
}

.hero {
  min-height: calc(100dvh - 86px);
  margin-top: 0;
  padding: 56px 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero::before,
.hero::after {
  display: none;
}

.hero h1 {
  max-width: 11ch;
}

.hero-visual {
  min-height: 520px;
}

.main-shot {
  width: min(250px, 32vw);
}

.eyebrow,
.section-kicker,
.bento-label,
.story-label {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.section {
  padding-top: 118px;
}

.section-heading {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 60ch;
  margin-inline: auto;
}

.bento-card,
.story-card,
.gallery-card,
.workflow-step,
.announcement-teaser,
.policy-panel,
.faq-item {
  border: 0;
  background: transparent;
  box-shadow: none;
}

#guides .bento-grid {
  gap: 0 48px;
  border-top: 1px solid var(--line);
}

#guides .bento-grid > .bento-card:not(.bento-card-wide):not(.bento-card-tall),
#guides .bento-card-wide {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  padding: 30px 0;
}

#guides .bento-card-wide {
  border-top: 1px solid var(--line);
}

#guides .policy-actions {
  justify-content: flex-start;
}

#guides .panel-link {
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--brand-strong);
}

.announcement-section {
  padding-top: 86px;
}

.announcement-teaser {
  padding: 26px 0;
  border-block: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.announcement-open {
  background: transparent;
  color: var(--brand-strong);
  box-shadow: none;
}

#features {
  margin-top: 118px;
  padding: 76px 58px;
  border-radius: 38px;
  background: #e8f0ec;
}

#features .bento-grid {
  gap: 42px 54px;
}

#features .bento-card,
#features .bento-grid > .bento-card:not(.bento-card-wide):not(.bento-card-tall) {
  min-height: 0;
  padding: 18px 0;
}

#features .bento-card-wide,
#features .bento-card-tall {
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 190px);
}

#features .chip-row {
  display: none;
}

.section-dark {
  margin-top: 118px;
  padding: 76px 58px;
  border: 0;
  border-radius: 38px;
  background: #17211d;
  box-shadow: none;
  color: #ffffff;
}

.section-dark .section-kicker,
.section-dark .story-label {
  color: #9bd0bc;
}

.section-dark .section-heading p,
.section-dark .story-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.story-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  margin-top: 58px;
}

.story-card,
.story-card-reverse {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 0;
}

.story-card-reverse .story-copy,
.story-card-reverse .story-shot {
  order: initial;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(190px, 20vw, 236px);
  grid-template-columns: none;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 8px 32px 18px;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  scroll-snap-align: center;
}

.gallery-card > picture > img,
.gallery-card > img {
  width: 100%;
  box-shadow: 0 22px 42px -32px rgba(18, 36, 29, 0.34);
}

.workflow {
  gap: 28px;
  margin-top: 56px;
}

.workflow-step {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.workflow-step span {
  padding: 0;
  background: transparent;
}

.policy-panel {
  padding: 34px 0;
  border-block: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 48px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.faq-item summary {
  padding: 24px 0;
}

.faq-item p {
  padding-right: 40px;
}

.site-footer {
  margin-top: 110px;
  border-top: 1px solid var(--line);
}

.footer-links {
  font-size: 0.82rem;
}

@media (hover: hover) and (pointer: fine) {
  .bento-card:hover,
  .story-card:hover,
  .workflow-step:hover {
    transform: none;
    border-color: inherit;
    box-shadow: none;
  }

  .gallery-card:hover img {
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-inline: 30px;
  }

  #features,
  .section-dark {
    padding: 58px 34px;
  }

  #features .bento-card-wide,
  #features .bento-card-tall,
  .story-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100vw - 24px), 100%);
  }

  .site-header {
    min-height: 60px;
    padding-inline: 2px;
    border-radius: 0;
  }

  .hero {
    gap: 12px;
    min-height: auto;
    padding: 42px 8px 24px;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-visual {
    min-height: 300px;
  }

  .main-shot {
    width: min(58vw, 210px);
  }

  .section {
    padding-top: 88px;
  }

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

  .section-heading p {
    margin-inline: 0;
  }

  #guides .bento-grid {
    gap: 0;
  }

  #features,
  .section-dark {
    margin-top: 88px;
    padding: 48px 20px;
    border-radius: 28px;
  }

  #features .bento-grid {
    gap: 34px;
  }

  #features .bento-card,
  #features .bento-grid > .bento-card:not(.bento-card-wide):not(.bento-card-tall) {
    padding: 0;
  }

  .story-list {
    gap: 62px;
  }

  .gallery-grid {
    grid-auto-columns: min(72vw, 232px);
    padding-inline: 0 24px;
  }

  .workflow {
    gap: 34px;
  }

  .policy-panel {
    gap: 28px;
  }

  .faq-item summary {
    padding: 22px 0;
  }

  .site-footer {
    margin-top: 88px;
  }
}

/* Mobile-first corrective layer: kept in a new versioned asset for cache safety. */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal:not(.in-view) {
  opacity: 1;
  transform: none;
}

.device-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card > picture {
  display: block;
}

.device-card img,
.bento-shot img,
.mini-shot img,
.story-shot img,
.gallery-card > img,
.gallery-card > picture > img {
  object-fit: contain;
}

.gallery-card > picture > img {
  display: block;
  width: min(208px, 100%);
  height: auto;
  margin: 0 auto;
  border-radius: var(--shot-radius);
  box-shadow: var(--shot-shadow);
}

section[id] {
  scroll-margin-top: 88px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.gallery-grid:focus-visible {
  outline: 3px solid rgba(17, 108, 86, 0.42);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .bento-grid,
  .story-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .bento-card,
  .bento-card-wide,
  .bento-card-tall,
  .story-card,
  .story-card-reverse,
  .bento-copy,
  .story-copy,
  .bento-shot,
  .mini-shot,
  .story-shot {
    min-width: 0;
  }

  .bento-card,
  .bento-card-wide,
  .bento-card-tall,
  .story-card,
  .story-card-reverse {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 16px;
    padding: 20px;
  }

  .bento-shot img,
  .mini-shot img,
  .story-shot img {
    width: min(58vw, 190px);
    max-width: 100%;
    max-height: none;
    height: auto;
  }

  .section {
    padding-top: 52px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100vw - 24px), 100%);
    padding-top: 0;
  }

  .site-header {
    top: 0;
    min-height: 60px;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 0 0 16px 16px;
    border-inline: 0;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    font-size: 0.9rem;
  }

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

  .main-nav,
  .text-link {
    display: none;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 12px;
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(2.1rem, 9vw, 2.75rem);
  }

  .lead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .cta-row {
    margin-top: 18px;
  }

  .secondary-cta,
  .hero-points {
    display: none;
  }

  .hero-visual {
    width: 100%;
    min-height: 218px;
  }

  .main-shot {
    position: relative;
    top: auto;
    left: auto;
    width: min(50vw, 190px);
    margin: 0 auto;
    transform: none;
    animation: none;
  }

  .side-shot {
    display: none;
  }

  .trust-band {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 12px;
  }

  .trust-stat {
    padding: 18px;
  }

  .gallery-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 240px);
    grid-template-columns: none;
    gap: 14px;
    margin-top: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 2px 20px 8px 2px;
  }

  .gallery-card {
    min-width: 0;
    scroll-snap-align: start;
  }

  .gallery-card > img,
  .gallery-card > picture > img {
    width: min(70vw, 220px);
    max-width: 100%;
    max-height: none;
    height: auto;
  }

  .section-dark {
    margin-top: 52px;
    padding: 24px 18px;
  }
}

/* Subtle motion layer: progressive, one-time, and safe when JavaScript is unavailable. */
:root {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.main-shot,
.side-shot {
  animation: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js.motion-ready .reveal {
  transition:
    opacity 0.48s ease-out var(--reveal-delay, 0ms),
    transform 0.62s var(--motion-ease) var(--reveal-delay, 0ms);
}

.js.motion-ready .reveal:not(.in-view) {
  opacity: 0;
  transform: translateY(14px) scale(0.995);
}

.js.motion-ready .reveal[data-reveal="left"]:not(.in-view) {
  transform: translateX(-18px);
}

.js.motion-ready .reveal[data-reveal="right"]:not(.in-view) {
  transform: translateX(18px);
}

.js.motion-ready .hero-copy.reveal:not(.in-view) {
  opacity: 1;
  transform: none;
}

.js.motion-ready .hero-copy > * {
  transition:
    opacity 0.46s ease-out,
    transform 0.64s var(--motion-ease);
}

.js.motion-ready .hero-copy:not(.in-view) > * {
  opacity: 0;
  transform: translateY(12px);
}

.js.motion-ready .hero-copy > :nth-child(2) {
  transition-delay: 55ms;
}

.js.motion-ready .hero-copy > :nth-child(3) {
  transition-delay: 110ms;
}

.js.motion-ready .hero-copy > :nth-child(4) {
  transition-delay: 165ms;
}

.js.motion-ready .hero-copy > :nth-child(5) {
  transition-delay: 220ms;
}

.hero-visual .device-card {
  transition:
    opacity 0.5s ease-out,
    transform 0.78s var(--motion-ease);
}

.js.motion-ready .hero-visual:not(.in-view) .main-shot {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 22px)) scale(0.97);
}

.js.motion-ready .hero-visual:not(.in-view) .side-shot-top {
  opacity: 0;
  transform: rotate(-3deg) translate(20px, 14px) scale(0.96);
}

.js.motion-ready .hero-visual:not(.in-view) .side-shot-bottom {
  opacity: 0;
  transform: rotate(3deg) translate(-20px, 14px) scale(0.96);
}

.cart-motion {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(220px, 0.8fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
  margin-top: 24px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 235, 225, 0.7), transparent 34%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.cart-motion-items {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  min-width: 0;
}

.cart-motion-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 108, 86, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 14px 28px -26px rgba(18, 36, 29, 0.36);
}

.cart-motion-item strong {
  color: var(--brand-strong);
  font-size: 0.82rem;
}

.cart-motion-basket {
  width: 88px;
  color: var(--brand);
  transform-origin: 50% 80%;
}

.cart-motion-basket svg {
  display: block;
  width: 100%;
  height: auto;
}

.cart-motion-total {
  min-width: 0;
}

.cart-motion-total > span,
.cart-motion-total small {
  display: block;
  color: var(--text-soft);
}

.cart-motion-total > span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-motion-total > strong {
  display: block;
  margin-top: 3px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.cart-motion-total small {
  margin-top: 7px;
  font-weight: 700;
}

.cart-motion-meter {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-accent-strong);
}

.cart-motion-meter i {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #48a888);
  transition: width 0.82s var(--motion-ease) 440ms;
}

.js.motion-ready .cart-motion:not(.in-view) .cart-motion-item {
  opacity: 0;
  transform: translateY(-14px) rotate(-2deg);
}

.js.motion-ready .cart-motion .cart-motion-item {
  transition:
    opacity 0.36s ease-out,
    transform 0.58s var(--motion-ease);
}

.js.motion-ready .cart-motion .cart-motion-item-two {
  transition-delay: 85ms;
}

.js.motion-ready .cart-motion .cart-motion-item-three {
  transition-delay: 170ms;
}

.js.motion-ready .cart-motion:not(.in-view) .cart-motion-basket,
.js.motion-ready .cart-motion:not(.in-view) .cart-motion-total {
  opacity: 0;
  transform: translateY(10px);
}

.js.motion-ready .cart-motion .cart-motion-basket,
.js.motion-ready .cart-motion .cart-motion-total {
  transition:
    opacity 0.4s ease-out 220ms,
    transform 0.64s var(--motion-ease) 220ms;
}

.js.motion-ready .cart-motion:not(.in-view) .cart-motion-meter i {
  width: 0;
}

.gallery-progress {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .bento-card,
  .story-card,
  .workflow-step {
    transition:
      transform 0.3s var(--motion-ease),
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  .bento-card:hover,
  .story-card:hover,
  .workflow-step:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 108, 86, 0.2);
    box-shadow: 0 24px 54px -40px rgba(18, 36, 29, 0.28);
  }

  .gallery-card img {
    transition:
      transform 0.34s var(--motion-ease),
      box-shadow 0.34s ease;
  }

  .gallery-card:hover img {
    transform: translateY(-4px) scale(1.012);
    box-shadow: 0 30px 48px -28px rgba(18, 36, 29, 0.3);
  }
}

@media (max-width: 760px) {
  .cart-motion {
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 16px;
    padding: 20px;
  }

  .cart-motion-basket {
    width: 76px;
  }

  .cart-motion-total {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .js.motion-ready .hero-visual:not(.in-view) .main-shot {
    transform: translateY(18px) scale(0.97);
  }

  .cart-motion {
    margin-top: 20px;
    border-radius: 22px;
  }

  .cart-motion-items {
    gap: 7px;
  }

  .cart-motion-item {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .gallery-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 20px;
    margin-top: 10px;
  }

  .gallery-progress span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #cbd8d1;
    transition:
      width 0.28s var(--motion-ease),
      background 0.28s ease;
  }

  .gallery-progress span.is-active {
    width: 22px;
    background: var(--brand);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-copy > *,
  .hero-visual .device-card,
  .cart-motion-item,
  .cart-motion-basket,
  .cart-motion-total,
  .cart-motion-meter i,
  .gallery-progress span {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* This block intentionally stays last so the calm homepage composition wins. */
.js .site-header {
  position: fixed;
  top: 10px;
  left: 50%;
  width: min(1180px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -16px);
  transition:
    opacity 0.28s ease-out,
    transform 0.42s var(--motion-ease),
    visibility 0s linear 0.42s;
}

.js .site-header.is-scrolled {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    opacity 0.28s ease-out,
    transform 0.42s var(--motion-ease),
    visibility 0s;
  box-shadow: 0 18px 42px -34px rgba(18, 36, 29, 0.32);
}

.hero {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(44px, 1fr);
  align-items: start;
  min-height: 100svh;
  padding-block: 72px;
}

.hero-copy {
  width: min(100%, 760px);
  margin-inline: auto;
}

.hero-brand {
  display: flex;
  width: max-content;
  margin: 32px auto 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

.hero-brand img {
  width: 104px;
  height: 104px;
  border-radius: 29px;
  box-shadow: 0 20px 36px -26px rgba(18, 36, 29, 0.42);
}

.hero-brand-name {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.hero-brand-name::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  color: transparent;
  background: linear-gradient(
    100deg,
    transparent 28%,
    rgba(29, 143, 113, 0.22) 42%,
    #238f74 50%,
    rgba(29, 143, 113, 0.22) 58%,
    transparent 72%
  );
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-115%);
  animation: wordmarkShimmer 1.35s var(--motion-ease) 0.85s 1 both;
  pointer-events: none;
  -webkit-text-fill-color: transparent;
}

@keyframes wordmarkShimmer {
  from {
    transform: translateX(-115%);
  }

  to {
    transform: translateX(115%);
  }
}

.hero-scroll-hint {
  align-self: end;
  justify-self: center;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding-inline: 10px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  display: inline-block;
  font-size: 1rem;
  animation: scrollHintNudge 1.6s ease-in-out 0.7s 2 both;
}

@keyframes scrollHintNudge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.hero .eyebrow {
  margin-top: 36px;
}

.hero .cta-row {
  justify-content: flex-start;
}

.hero .store-badge {
  margin-inline: 0;
}

.hero-visual-caption {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

#features .bento-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
  border-top: 1px solid rgba(17, 108, 86, 0.14);
}

#features .bento-card,
#features .bento-card-wide,
#features .bento-card-tall,
#features .bento-grid > .bento-card:not(.bento-card-wide):not(.bento-card-tall) {
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  padding: 34px 0;
  border-bottom: 1px solid rgba(17, 108, 86, 0.14);
  border-radius: 0;
}

.story-carousel {
  position: relative;
  max-width: 980px;
  margin: 48px auto 0;
}

.story-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  grid-template-columns: none;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  border-radius: 32px;
  background: #e8f0ec;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-slide {
  display: grid;
  grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  min-width: 0;
  padding: 48px 58px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.story-slide-media {
  min-width: 0;
  margin: 0;
}

.story-slide-media img {
  display: block;
  width: min(100%, 250px);
  height: auto;
  margin-inline: auto;
  border-radius: var(--shot-radius);
  box-shadow: 0 24px 42px -30px rgba(18, 36, 29, 0.28);
}

.story-slide-copy {
  max-width: 440px;
}

.story-step {
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-slide-copy h3 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

.story-slide-copy > p:last-child {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.story-controls {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.js .story-controls {
  display: grid;
}

.story-control {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(17, 108, 86, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-strong);
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px -24px rgba(18, 36, 29, 0.32);
}

.story-control:first-child {
  left: 14px;
}

.story-control:last-child {
  right: 14px;
}

.story-control:disabled {
  opacity: 0;
  pointer-events: none;
}

.story-status {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.story-control:focus-visible,
.story-track:focus-visible {
  outline: 3px solid rgba(17, 108, 86, 0.42);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .js .site-header {
    width: min(calc(100vw - 24px), 100%);
  }

  #features .bento-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-slide {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 34px 28px;
  }

  .story-slide-media img {
    width: min(62vw, 230px);
  }

  .story-slide-copy {
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .js .site-header {
    top: 0;
  }

  .hero .cta-row {
    justify-content: flex-start;
  }

  .hero .store-badge {
    margin-inline: 0;
  }

  .hero-visual-caption {
    position: static;
    margin-top: 16px;
  }

  .story-carousel {
    margin-top: 32px;
  }

  .story-control {
    top: 230px;
  }

  .story-control:first-child {
    left: 8px;
  }

  .story-control:last-child {
    right: 8px;
  }

  .story-track {
    border-radius: 26px;
  }

  .story-slide {
    padding: 28px 20px 30px;
  }

  .story-slide-copy h3 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .site-header,
  .js .site-header.is-scrolled {
    transform: translate(-50%, 0);
    transition: none;
  }

  .hero-scroll-arrow {
    animation: none;
  }

  .hero-brand-name::after {
    display: none;
    animation: none;
  }
}

.js.motion-ready .reveal:not([data-motion]) {
  opacity: 1;
  transform: none;
  transition: none;
}

.js.motion-ready .reveal[data-motion="section"] {
  transition: opacity 0.4s ease-out, transform 0.5s var(--motion-ease);
}

.js.motion-ready .reveal[data-motion="section"]:not(.in-view) {
  opacity: 0;
  transform: translateY(10px);
}

.js.motion-ready .reveal[data-motion="card"] {
  transition:
    opacity 0.42s ease-out,
    transform 0.55s var(--motion-ease);
  transition-delay: calc(var(--motion-order, 0) * 55ms);
}

.js.motion-ready .reveal[data-motion="card"]:not(.in-view) {
  opacity: 0;
  transform: translateY(14px);
}

.js.motion-ready .hero-copy > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-visual .device-card {
  transition: none;
}

.js.motion-ready .hero-visual[data-motion]:not(.in-view) .main-shot {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (hover: hover) and (pointer: fine) {
  .bento-card:hover,
  .story-card:hover,
  .workflow-step:hover {
    transform: none;
    border-color: inherit;
    box-shadow: none;
  }

  .gallery-card:hover img {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px -32px rgba(18, 36, 29, 0.34);
  }
}

@media (max-width: 760px) {
  .section {
    padding-top: 88px;
  }

  .bento-card,
  .bento-card-wide,
  .bento-card-tall,
  .story-card,
  .story-card-reverse {
    padding-inline: 0;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100vw - 24px), 100%);
  }

  .site-header {
    min-height: 60px;
    padding: 8px 2px;
    border-radius: 0;
  }

  .hero {
    gap: 12px;
    min-height: 100svh;
    margin-top: 0;
    padding: 64px 8px 72px;
    border-radius: 0;
  }

  .hero-visual {
    min-height: 300px;
  }

  .main-shot {
    width: min(58vw, 210px);
  }

  .js.motion-ready .hero-visual[data-motion]:not(.in-view) .main-shot {
    transform: none;
  }

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

  #features,
  .section-dark {
    margin-top: 88px;
    padding: 48px 20px;
    border-radius: 28px;
  }

  .gallery-grid {
    grid-auto-columns: min(72vw, 232px);
    grid-template-columns: none;
    margin-top: 28px;
    padding: 8px 24px 18px 0;
  }

  .faq-item {
    padding-inline: 0;
  }
}

/* Focused conversion pass: factual reassurance and one clear Android action. */
.hero-store-row .store-badge {
  flex: 0 0 190px;
}

.announcement-close {
  width: 44px;
  height: 44px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border-block: 1px solid rgba(17, 108, 86, 0.14);
}

.proof-strip p {
  min-width: 0;
  padding: 18px 24px;
  text-align: center;
}

.proof-strip p + p {
  border-left: 1px solid rgba(17, 108, 86, 0.14);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.proof-strip span {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

#pricing {
  scroll-margin-top: 112px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.pricing-plan {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.pricing-plan-premium {
  border-color: rgba(17, 108, 86, 0.24);
  background:
    radial-gradient(circle at 88% 8%, rgba(164, 214, 191, 0.32), transparent 28%),
    linear-gradient(145deg, #edf6f1, #ffffff);
}

.pricing-plan-label {
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan h3 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pricing-plan-premium h3 {
  max-width: 16ch;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.pricing-plan > p:not(.pricing-plan-label) {
  max-width: 48ch;
  margin-top: 14px;
  color: var(--text-soft);
}

.pricing-plan > span {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 108, 86, 0.12);
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.comparison-wrap {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.comparison-heading {
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-heading .section-kicker {
  padding: 0;
}

.comparison-heading h3 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.comparison-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  contain: inline-size layout paint;
  scrollbar-color: rgba(17, 108, 86, 0.42) transparent;
  scrollbar-width: thin;
}

.comparison-scroll:focus-visible {
  outline: 3px solid rgba(17, 108, 86, 0.42);
  outline-offset: -3px;
}

.comparison-table {
  display: table;
  width: 100%;
  min-width: 560px;
  table-layout: fixed;
  border-collapse: collapse;
}

.comparison-table th:first-child {
  width: 50%;
}

.comparison-table th:not(:first-child) {
  width: 25%;
}

.comparison-table tr + tr {
  border-top: 1px solid var(--line);
}

.comparison-table th,
.comparison-table td {
  min-width: 0;
  padding: 17px 22px;
  text-align: left;
}

.comparison-table th + th,
.comparison-table th + td,
.comparison-table td + td {
  border-left: 1px solid var(--line);
}

.comparison-table thead th {
  color: var(--text-soft);
  background: var(--surface-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-size: 0.94rem;
}

.comparison-table td {
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.status-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.comparison-table .is-included {
  color: var(--brand-strong);
}

.comparison-table .is-included .status-icon {
  background: var(--surface-accent);
}

.comparison-table .is-not-included {
  color: var(--text-soft);
  font-weight: 600;
}

.comparison-table .is-not-included .status-icon {
  background: #edf0ee;
}

.limited-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff1ce;
  color: #704b0f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.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;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-top: 84px;
  padding: 44px 48px;
  overflow: hidden;
  border-radius: 32px;
  color: #f8fffb;
  background:
    radial-gradient(circle at 88% 14%, rgba(130, 211, 178, 0.24), transparent 30%),
    linear-gradient(135deg, #0c5745, #116c56 58%, #1f7f68);
  box-shadow: 0 28px 64px -44px rgba(12, 87, 69, 0.64);
}

.closing-cta .section-kicker {
  padding: 0;
  color: #bfe4d5;
}

.closing-cta h2 {
  max-width: 18ch;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.closing-cta-copy > p:last-child {
  max-width: 58ch;
  margin-top: 16px;
  color: rgba(248, 255, 251, 0.78);
}

.closing-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.closing-cta .store-badge {
  background: #111;
}

@media (max-width: 760px) {
  .pricing-plans {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-strip p {
    display: grid;
    grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    padding: 14px 10px;
    text-align: left;
  }

  .proof-strip p + p {
    border-top: 1px solid rgba(17, 108, 86, 0.14);
    border-left: 0;
  }

  .proof-strip span {
    margin-top: 0;
  }

  .closing-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    margin-top: 64px;
    padding: 36px 28px;
    border-radius: 28px;
  }

  .closing-cta-action {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-store-row .store-badge {
    width: 174px;
    height: 52px;
    flex-basis: 174px;
  }

  .proof-strip {
    margin-top: 8px;
  }

  .closing-cta {
    margin-inline: -4px;
    padding: 32px 24px;
  }

  .closing-cta h2 {
    font-size: 2rem;
  }

  .pricing-plans {
    margin-top: 28px;
  }

  .pricing-plan,
  .comparison-heading {
    padding: 24px 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding-inline: 16px;
  }

  .comparison-table {
    min-width: 560px;
  }
}
