:root {
  --teal: #18a999;
  --teal-dark: #0b6f67;
  --teal-ink: #0b5550;
  --gold: #ffc857;
  --gold-soft: #fff1c8;
  --coral: #f26b4a;
  --coral-soft: #ffe4dc;
  --cream: #eef8f3;
  --cream-light: #f7f6ef;
  --paper: #ffffff;
  --ink: #173331;
  --ink-soft: #526966;
  --line: #d9e7e2;
  --line-strong: #afc9c2;
  --focus: #0b6f67;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 10px 26px rgba(11, 85, 80, 0.09);
  --shadow-md: 0 22px 60px rgba(11, 85, 80, 0.16);
  --container: 1180px;
  --header-height: 76px;
  --radius: 8px;
  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  touch-action: manipulation;
}

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(238, 248, 243, 0.9);
  backdrop-filter: blur(14px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(183, 203, 199, 0.7);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 26px rgba(25, 42, 43, 0.07);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 146px;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #354849;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding-top: 10px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 220ms var(--ease-out),
    box-shadow 180ms ease;
}

.button svg,
.icon-button svg,
.text-button svg,
.hero-meta svg,
.check-list svg,
.footer-bottom svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.button-primary {
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 8px 18px rgba(36, 157, 143, 0.22);
}

.button-primary:hover {
  background: var(--teal-dark);
}

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

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--teal-dark);
}

.button-light:hover {
  background: var(--cream-light);
}

.button-large {
  min-height: 58px;
  padding: 14px 22px;
}

.button-compact {
  min-height: 44px;
  padding: 10px 15px;
}

.button-full {
  width: 100%;
}

.button span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.button small {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  opacity: 0.78;
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.icon-button:hover {
  border-color: var(--teal);
  background: var(--cream-light);
  color: var(--teal-dark);
}

.icon-button-dark {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.icon-button-dark:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  max-height: calc(100dvh - var(--header-height));
  gap: 2px;
  padding: 18px 24px 24px;
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out),
    display 220ms allow-discrete;
}

.mobile-menu[hidden] {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}

@starting-style {
  .mobile-menu:not([hidden]) {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.mobile-menu > a:not(.button) {
  min-height: 48px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  background: var(--cream);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 57%;
  background:
    linear-gradient(90deg, var(--cream) 76%, rgba(238, 248, 243, 0)),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(11, 85, 80, 0.035) 48px);
  content: "";
  z-index: 1;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--teal) 0 64%, var(--gold) 64% 82%, var(--coral) 82%);
  content: "";
  z-index: 4;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  overflow: hidden;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 248, 243, 0.78), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  right: 4%;
  bottom: -22%;
  width: min(32vw, 470px);
  overflow: hidden;
  border: 9px solid #152523;
  border-radius: 52px;
  background: #152523;
  box-shadow: 0 36px 70px rgba(5, 35, 32, 0.34);
  transform: rotate(3deg);
}

.hero-phone,
.hero-receipt {
  z-index: 1;
}

.hero-phone img {
  width: 100%;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  object-position: right center;
}

.hero-receipt {
  position: absolute;
  right: clamp(340px, 30vw, 470px);
  bottom: 12%;
  display: grid;
  width: 230px;
  gap: 3px;
  padding: 22px 22px 30px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}

.hero-receipt::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 10px;
  background: linear-gradient(135deg, var(--paper) 5px, transparent 0) 0 0 / 10px 10px repeat-x;
  content: "";
}

.hero-receipt span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-receipt strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.55rem;
}

.hero-receipt small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  color: var(--teal-dark);
  font-weight: 800;
}

.hero-receipt svg {
  width: 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-content > * {
  animation: hero-enter 620ms var(--ease-out) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 60ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 110ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 160ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 210ms;
}

.hero-phone {
  animation: phone-enter 780ms 140ms var(--ease-out) both;
}

.hero-receipt {
  animation: receipt-enter 720ms 280ms var(--ease-out) both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes phone-enter {
  from {
    opacity: 0;
    transform: translate(30px, 30px) rotate(6deg);
  }
}

@keyframes receipt-enter {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-7deg);
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-mark {
  width: 28px;
  height: 3px;
  background: var(--gold);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(4.6rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 em {
  color: var(--teal-dark);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: #344b4c;
  font-size: 1.3rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: #3f5657;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta svg {
  width: 18px;
  color: var(--teal-dark);
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 3px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.proof-grid span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section {
  padding: 104px 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading h2,
.download-band h2,
.final-cta h2 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.heading-split > p {
  margin-bottom: 8px !important;
}

.feature-intro {
  background: var(--cream-light);
}

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

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 240ms var(--ease-out),
    box-shadow 180ms ease;
}

.feature-card-wide {
  grid-column: span 8;
}

.feature-card-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  min-height: 390px;
  padding: 0;
}

.feature-card-visual > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
}

.feature-card-report > img {
  order: 2;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  background: #e0f3f0;
  color: var(--teal-dark);
  border-radius: 6px;
}

.feature-icon-gold {
  background: var(--gold-soft);
  color: #8a6514;
}

.feature-icon-coral {
  background: var(--coral-soft);
  color: #a43d25;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.feature-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card-compact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card-coral {
  background: var(--coral-soft);
}

.feature-card-teal {
  background: var(--teal-ink);
  color: var(--paper);
}

.feature-card-teal p,
.feature-card-teal .feature-label {
  color: rgba(255, 255, 255, 0.76);
}

.feature-card-gold {
  background: var(--gold-soft);
}

.app-showcase {
  overflow: hidden;
  background: var(--paper);
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.showcase-heading h2 {
  max-width: 760px;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.screen-reel {
  display: grid;
  grid-auto-columns: minmax(360px, 460px);
  grid-auto-flow: column;
  gap: 18px;
  padding: 4px max(24px, calc((100vw - var(--container)) / 2)) 30px;
  overflow-x: auto;
  scroll-padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--teal) var(--cream-light);
  scrollbar-width: thin;
}

.screen-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream-light);
  scroll-snap-align: start;
}

.screen-card img {
  width: 100%;
  height: clamp(330px, 30vw, 390px);
  object-fit: cover;
  object-position: top center;
}

.screen-card figcaption {
  display: grid;
  gap: 2px;
  min-height: 88px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.screen-card strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.screen-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pricing-section {
  background: #f3f7f6;
}

.centered-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.centered-heading h2 {
  max-width: 800px;
}

.pricing-grid {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.price-card-pro {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: var(--paper);
}

.price-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.price-card-pro .price-card-header {
  border-color: rgba(255, 255, 255, 0.24);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-label-pro {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--gold);
}

.price-card h3 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.55rem;
}

.price {
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.price-card-pro .price {
  color: var(--paper);
}

.price small {
  margin-right: 3px;
  font-size: 0.45em;
}

.plan-summary {
  min-height: 64px;
  margin: 24px 0;
  color: var(--ink-soft);
}

.price-card-pro .plan-summary {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
}

.check-list svg {
  margin-top: 3px;
  color: var(--teal);
}

.check-list-pro svg {
  color: var(--gold);
}

.price-card > .button {
  margin-top: auto;
}

.steps-section {
  background: var(--cream-light);
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.text-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--gold);
  background: transparent;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 800;
}

.steps-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-strong);
}

.step-number {
  color: var(--coral);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.steps-list h3 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.steps-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.download-band {
  padding: 88px 0;
  background: var(--teal-ink);
  color: var(--paper);
}

.download-layout {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.8fr);
  align-items: center;
  gap: 96px;
}

.download-band h2 {
  max-width: 680px;
}

.download-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.eyebrow-light {
  color: var(--gold);
}

.download-info {
  display: grid;
  gap: 18px;
}

.download-info dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.22);
}

.download-info dl > div {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: var(--teal-ink);
}

.download-info dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.download-info dd {
  margin: 0;
  font-weight: 800;
}

.hash-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
  gap: 10px;
}

.hash-row > span {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.hash-row small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
}

.hash-row code {
  display: block;
  overflow: hidden;
  color: var(--paper);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading h2 {
  font-size: 3rem;
}

.faq-heading .button {
  margin-top: 28px;
}

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

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

.faq-list summary {
  position: relative;
  min-height: 74px;
  padding: 23px 54px 20px 0;
  cursor: pointer;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 35px;
  right: 4px;
  width: 16px;
  height: 2px;
  background: var(--teal-dark);
  content: "";
  transition: transform 180ms ease;
}

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

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

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 26px;
  padding-right: 54px;
  color: var(--ink-soft);
}

.final-cta {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 48px max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.final-cta > img {
  width: 112px;
  height: 112px;
  border-radius: var(--radius);
  object-fit: cover;
}

.final-cta h2 {
  max-width: 760px;
  font-size: 3rem;
}

.site-footer {
  padding: 70px 0 24px;
  background: #142728;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 60px;
  padding-bottom: 54px;
}

.brand-footer {
  color: var(--paper);
}

.footer-brand p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h2 {
  margin: 5px 0 10px;
  color: var(--gold);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button,
.footer-grid span {
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.92rem;
  text-align: left;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
}

.mobile-download-bar {
  display: none;
}

.site-dialog {
  width: min(92vw, 580px);
  max-height: min(82dvh, 760px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease-out),
    overlay 240ms allow-discrete,
    display 240ms allow-discrete;
}

.site-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-dialog::backdrop {
  background: rgba(20, 39, 40, 0.64);
  opacity: 0;
  transition:
    opacity 180ms ease,
    overlay 240ms allow-discrete,
    display 240ms allow-discrete;
}

.site-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .site-dialog[open] {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  .site-dialog[open]::backdrop {
    opacity: 0;
  }
}

.site-dialog form {
  padding: 28px;
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dialog-kicker {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-header h2 {
  margin: 3px 0 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.7rem;
}

.dialog-steps {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding-left: 24px;
}

.dialog-note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: var(--cream-light);
  color: var(--ink-soft);
}

.dialog-copy {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  color: var(--ink-soft);
}

.dialog-copy p {
  margin: 0;
}

.policy-main {
  min-height: calc(100vh - var(--header-height));
  padding: 132px 0 88px;
  background: var(--cream-light);
}

.policy-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.policy-heading h1 {
  margin: 7px 0 12px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.policy-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.policy-meta a,
.policy-card a,
.dialog-copy a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.policy-card {
  max-width: 900px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.policy-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  margin: 0 0 9px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.policy-card p {
  margin: 0;
  color: var(--ink-soft);
}

.policy-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.policy-back {
  display: inline-flex;
  margin-top: 30px;
}

.toast {
  position: fixed;
  z-index: 3000;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.toast[hidden] {
  display: none;
}

.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 620ms var(--ease-out);
}

.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .feature-card:nth-child(2),
.pricing-grid .price-card:nth-child(2) {
  transition-delay: 70ms;
}

.feature-grid .feature-card:nth-child(3) {
  transition-delay: 120ms;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
  }

  .feature-card-visual:hover > img {
    transform: scale(1.02);
  }

  .feature-card-visual > img {
    transition: transform 520ms var(--ease-out);
  }
}

.button:active {
  transform: scale(0.98);
}

@media (max-width: 1040px) {
  :root {
    --container: 920px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero::before {
    width: 66%;
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > .hero-lead,
  .hero-content > .hero-actions,
  .hero-content > .hero-meta {
    max-width: 56%;
  }

  .hero h1 {
    font-size: 5.25rem;
  }

  .hero-visual {
    width: 52%;
  }

  .hero-phone {
    right: -10%;
    width: 410px;
  }

  .hero-receipt {
    display: none;
  }

  .faq-heading h2 {
    font-size: 2.45rem;
  }

  .feature-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 6;
  }

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

  .feature-card-visual > img {
    min-height: 250px;
    max-height: 250px;
  }

  .download-layout,
  .faq-layout {
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.75fr);
    gap: 34px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 980px;
    height: auto;
    align-items: flex-start;
    padding-bottom: 430px;
  }

  .hero::before {
    width: 100%;
    height: 68%;
    background:
      linear-gradient(180deg, var(--cream) 82%, rgba(238, 248, 243, 0)),
      repeating-linear-gradient(90deg, transparent 0 47px, rgba(11, 85, 80, 0.035) 48px);
  }

  .hero-visual {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 46%;
  }

  .hero-visual > img {
    object-position: 62% 62%;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, var(--cream) 0, transparent 30%);
  }

  .hero-phone {
    right: 7%;
    bottom: -46%;
    width: min(48vw, 390px);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > .hero-lead,
  .hero-content > .hero-actions,
  .hero-content > .hero-meta {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(4rem, 10vw, 5.5rem);
  }

  .hero-lead {
    max-width: 570px;
    font-size: 1.05rem;
  }

  .hero-meta {
    max-width: 560px;
  }

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

  .proof-grid > div {
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 80px 0;
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-grid,
  .steps-layout,
  .download-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .steps-layout,
  .download-layout,
  .faq-layout {
    gap: 46px;
  }

  .sticky-heading,
  .faq-heading {
    position: static;
  }

  .download-info {
    max-width: 620px;
  }

  .final-cta {
    grid-template-columns: 84px 1fr;
  }

  .final-cta > img {
    width: 84px;
    height: 84px;
  }

  .final-cta .button {
    grid-column: 1 / -1;
  }

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

  .footer-release {
    grid-column: 2 / -1;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand {
    min-width: 0;
    font-size: 1.18rem;
  }

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

  .hero {
    min-height: 1010px;
    height: auto;
    max-height: none;
    padding-bottom: 390px;
  }

  .hero::before {
    height: 100%;
  }

  .hero::after {
    height: 7px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11.2vw, 3.75rem);
    letter-spacing: -0.07em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: fit-content;
    min-width: 190px;
  }

  .hero-meta {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    font-size: 0.83rem;
  }

  .hero-visual {
    right: 0;
    left: 0;
    width: 100%;
    height: 360px;
  }

  .hero-visual > img {
    object-position: 66% center;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, var(--cream) 0, rgba(238, 248, 243, 0.6) 20%, transparent 56%);
  }

  .hero-phone {
    right: -7%;
    bottom: -48%;
    width: 230px;
    border-width: 6px;
    border-radius: 30px;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:nth-child(odd) {
    min-height: 90px;
    padding: 18px 4px;
    border-right: 0;
    border-left: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .download-band h2 {
    font-size: 2.5rem;
  }

  .final-cta h2 {
    font-size: 2.35rem;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 270px;
  }

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

  .feature-card-visual > img {
    min-height: 220px;
    max-height: 220px;
  }

  .feature-card-report > img {
    order: initial;
  }

  .showcase-heading {
    align-items: flex-end;
  }

  .carousel-actions {
    display: none;
  }

  .screen-reel {
    grid-auto-columns: minmax(270px, 82vw);
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .screen-card img {
    height: 320px;
  }

  .price-card {
    min-height: auto;
    padding: 24px;
  }

  .price-card-header {
    display: grid;
  }

  .plan-summary {
    min-height: auto;
  }

  .steps-list li {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .step-number {
    font-size: 1.35rem;
  }

  .download-band {
    padding: 68px 0;
  }

  .download-info dl {
    grid-template-columns: 1fr;
  }

  .download-info dl > div {
    grid-template-columns: 92px 1fr;
    align-items: center;
  }

  .faq-list summary {
    padding-right: 40px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding-block: 44px;
    text-align: center;
  }

  .final-cta > img {
    width: 82px;
    height: 82px;
    margin-inline: auto;
  }

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

  .footer-brand,
  .footer-release {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-download-bar {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 30px rgba(25, 42, 43, 0.1);
  }

  .mobile-download-bar > span {
    display: grid;
    min-width: 0;
    line-height: 1.2;
  }

  .mobile-download-bar strong {
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 0.9rem;
  }

  .mobile-download-bar small {
    color: var(--ink-soft);
    font-size: 0.72rem;
  }

  .mobile-download-bar .button {
    flex: 0 0 auto;
  }

  .toast {
    right: 14px;
    bottom: 90px;
    left: 14px;
    max-width: none;
  }
}

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

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