:root {
  --canvas: #f6f3ed;
  --surface: #ffffff;
  --surface-muted: #ecebe3;
  --ink: #183a34;
  --ink-soft: #5f746f;
  --ink-faint: #8c9b97;
  --primary: #347768;
  --primary-dark: #20584e;
  --mint: #cde1d8;
  --mint-light: #e7f0ec;
  --coral: #e78a6b;
  --coral-light: #f8e4dc;
  --sun: #efcb73;
  --sun-light: #fbf2d7;
  --sky: #a9cae2;
  --sky-light: #e4f0f7;
  --lavender-light: #eeeaf6;
  --divider: #dfe4e0;
  --danger: #b85d50;
  --shadow: 0 8px 22px rgba(21, 54, 47, 0.08);
  --shadow-large: 0 28px 70px rgba(19, 56, 48, 0.15);
  --shell: 1200px;
  --header-height: 86px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(246, 243, 237, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(52, 119, 104, 0.12);
  box-shadow: 0 8px 30px rgba(24, 58, 52, 0.05);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  box-shadow: 0 7px 15px rgba(231, 138, 107, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: -0.45px;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover {
  color: var(--ink);
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 20px;
  padding: 7px 8px 7px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
}

.nav-cta-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}

.nav-cta.app-store-menu-link {
  min-height: 40px;
  padding: 0;
  border-radius: 9px;
  background: transparent;
}

.nav-cta.app-store-menu-link:hover {
  background: transparent;
  transform: translateY(-1px);
}

.nav-store-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-cta.google-play-menu-link {
  min-height: 40px;
  padding: 0;
  border-radius: 9px;
  background: transparent;
}

.nav-cta.google-play-menu-link:hover {
  background: transparent;
  transform: translateY(-1px);
}

.menu-app-store-badge {
  display: block;
  width: 145px;
  height: auto;
}

.menu-google-play-badge {
  display: block;
  width: 145px;
  height: auto;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 0.91fr) minmax(450px, 1.09fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
  padding-block: 66px 90px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.hero h1,
.section h2,
.guide-section h2,
.privacy-section h2,
.closing h2,
.legal-hero h1 {
  margin: 0;
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.97;
  text-wrap: balance;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 6.6vw, 94px);
}

.hero-subtitle {
  max-width: 615px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 10px 12px 10px 23px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 720;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
}

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

.button-primary {
  background: var(--primary-dark);
  color: white;
  box-shadow: 0 15px 30px rgba(32, 88, 78, 0.2);
}

.button-primary span {
  background: var(--mint);
  color: var(--ink);
}

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

.app-store-link {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  border-radius: 9px;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-link:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.app-store-badge {
  width: 180px;
  height: auto;
}

.google-play-link {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border-radius: 9px;
  transition: transform 180ms ease, filter 180ms ease;
}

.google-play-link:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.google-play-badge {
  width: 180px;
  height: auto;
}

.text-link {
  border-bottom: 1px solid rgba(52, 119, 104, 0.35);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--primary-dark);
}

.wellness-note {
  max-width: 530px;
  margin: 24px 0 0;
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-visual::before {
  position: absolute;
  width: 82%;
  height: 80%;
  top: 7%;
  right: -6%;
  border-radius: 46% 54% 50% 50% / 42% 42% 58% 58%;
  background: var(--mint-light);
  content: "";
  transform: rotate(5deg);
}

.hero-photo-wrap {
  position: absolute;
  inset: 12px 20px 32px 52px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 48% 48% 34px 34px / 35% 35% 34px 34px;
  background: var(--mint);
  box-shadow: var(--shadow-large);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(15, 52, 44, 0.5) 100%);
}

.routine-ticket {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 17px 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.routine-ticket div {
  display: grid;
  gap: 3px;
}

.routine-ticket span:first-child {
  font-size: 15px;
  font-weight: 750;
}

.routine-ticket strong {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.play-dot {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-dark);
  color: white;
  font-size: 12px;
  letter-spacing: -2px;
  text-indent: -1px;
}

.guide-float {
  position: absolute;
  z-index: 3;
  top: 9%;
  left: -4%;
  width: 178px;
  margin: 0;
  padding: 9px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(21, 54, 47, 0.19);
  transform: rotate(-5deg);
}

.guide-float img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  object-fit: cover;
}

.guide-float figcaption {
  display: grid;
  gap: 2px;
  padding: 10px 7px 5px;
}

.guide-float figcaption span {
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 700;
}

.guide-float figcaption strong {
  font-size: 13px;
}

.hero-mara {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: -2%;
  width: 155px;
  filter: drop-shadow(0 18px 20px rgba(18, 51, 44, 0.17));
  transform: rotate(3deg);
}

.proof-band {
  background: var(--ink);
  color: white;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-block: 28px;
}

.proof-grid p {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid p:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-grid strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.proof-grid span {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.section {
  padding-block: clamp(92px, 11vw, 150px);
}

.section-intro {
  display: grid;
  max-width: 990px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 70px;
}

.section-intro.wide {
  max-width: 1060px;
}

.section h2,
.guide-section h2,
.privacy-section h2,
.closing h2 {
  font-size: clamp(45px, 5.4vw, 74px);
}

.section-intro p,
.guide-copy > p,
.faq-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.outcome-list {
  margin-top: 78px;
  border-top: 1px solid rgba(52, 119, 104, 0.2);
}

.outcome {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(52, 119, 104, 0.2);
}

.outcome-number {
  padding-top: 4px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.outcome > div {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(300px, 1.2fr);
  align-items: baseline;
  gap: 50px;
}

.outcome h3,
.feature h3,
.audience-rail h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.outcome p {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.guide-section {
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 140px);
  background: var(--mint-light);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.guide-copy > p {
  max-width: 600px;
  margin-top: 28px;
}

.guide-tabs {
  display: grid;
  gap: 8px;
  margin-top: 42px;
}

.guide-tab {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 16px;
  width: 100%;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 22px;
  background: transparent;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.guide-tab:hover {
  transform: translateX(3px);
}

.guide-tab.is-active {
  border-color: rgba(52, 119, 104, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.guide-tab > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 119, 104, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.guide-tab.is-active > span:first-child {
  background: var(--primary);
  color: white;
}

.guide-tab > span:last-child {
  display: grid;
  gap: 4px;
}

.guide-tab strong {
  font-size: 16px;
}

.guide-tab small {
  max-width: 510px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.guide-demo {
  position: relative;
  min-height: 680px;
  isolation: isolate;
}

.guide-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(52, 119, 104, 0.25);
  border-radius: 50%;
}

.guide-orbit::before {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px var(--coral-light);
  content: "";
}

.guide-orbit-one {
  inset: 5% -22% 10% -15%;
  transform: rotate(11deg);
}

.guide-orbit-one::before {
  top: 21%;
  right: 2%;
}

.guide-orbit-two {
  inset: 18% -5% 22% -25%;
  transform: rotate(-9deg);
}

.guide-orbit-two::before {
  bottom: 13%;
  left: 12%;
  background: var(--sun);
  box-shadow: 0 0 0 7px var(--sun-light);
}

.phone-frame {
  position: absolute;
  top: 0;
  right: 8%;
  width: min(360px, 90%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 52px;
  background: var(--ink);
  box-shadow: 0 35px 75px rgba(14, 49, 41, 0.24);
  transform: rotate(2deg);
}

.phone-top {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  display: flex;
  width: 98px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0a1f1b;
  transform: translateX(-50%);
}

.phone-top span {
  width: 29px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-screen {
  overflow: hidden;
  min-height: 645px;
  border-radius: 43px;
  background: var(--canvas);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 48px 21px 17px;
}

.phone-header img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.phone-header div {
  display: grid;
}

.phone-header strong {
  font-size: 14px;
}

.phone-header span {
  color: var(--ink-faint);
  font-size: 9px;
}

.phone-guide-image {
  width: calc(100% - 30px);
  height: 335px;
  margin: 0 15px;
  border-radius: 29px;
  background: var(--primary-dark);
  object-fit: cover;
  transition: opacity 150ms ease, transform 280ms ease;
}

.phone-guide-image.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.phone-controls {
  padding: 17px 24px 26px;
}

.pressure-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 800;
}

.progress {
  overflow: hidden;
  height: 5px;
  margin-top: 9px;
  border-radius: 10px;
  background: var(--surface-muted);
}

.progress span {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transition: width 350ms ease;
}

.phone-controls p {
  min-height: 46px;
  margin: 14px 0 12px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.control-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.control-row span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink-soft);
  box-shadow: var(--shadow);
  font-size: 13px;
}

.control-row .control-main {
  width: 47px;
  height: 47px;
  background: var(--primary-dark);
  color: white;
  text-indent: 2px;
}

.demo-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 9%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.demo-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--mint-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 18px;
  margin-top: 68px;
}

.feature {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 34px;
  padding: clamp(28px, 4vw, 48px);
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.feature p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.feature-mint {
  min-height: 410px;
  background: var(--mint-light);
}

.feature-large h3 {
  max-width: 540px;
  font-size: clamp(30px, 3vw, 43px);
}

.area-cloud {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: flex-end;
}

.area-cloud span {
  padding: 9px 14px;
  border: 1px solid rgba(52, 119, 104, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  transform: rotate(var(--tilt, 0deg));
}

.area-cloud span:nth-child(2n) { --tilt: 1.5deg; }
.area-cloud span:nth-child(3n) { --tilt: -1.2deg; }

.feature-dark {
  min-height: 410px;
  background: var(--ink);
  color: white;
}

.feature-dark p {
  color: rgba(255, 255, 255, 0.63);
}

.pulse-lines {
  position: absolute;
  right: 35px;
  bottom: 40px;
  left: 35px;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pulse-lines i {
  width: 100%;
  height: 22%;
  border-radius: 999px;
  background: var(--mint);
  transform: scaleY(var(--scale, 1));
  transform-origin: center;
}

.pulse-lines i:nth-child(1) { --scale: 0.45; }
.pulse-lines i:nth-child(2) { --scale: 1.1; }
.pulse-lines i:nth-child(3) { --scale: 2.7; background: var(--coral); }
.pulse-lines i:nth-child(4) { --scale: 4.1; background: var(--sun); }
.pulse-lines i:nth-child(5) { --scale: 2.1; background: var(--coral); }
.pulse-lines i:nth-child(6) { --scale: 1.25; }
.pulse-lines i:nth-child(7) { --scale: 0.55; }

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

.pressure-scale {
  position: absolute;
  right: 40px;
  bottom: 42px;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 8px;
}

.pressure-scale span {
  height: 9px;
  border-radius: 999px;
  background: rgba(231, 138, 107, 0.21);
}

.pressure-scale span.is-on {
  background: var(--coral);
}

.pressure-scale em {
  grid-column: 1 / -1;
  color: #8c5442;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.feature-garden {
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  padding: 0;
  background: var(--ink);
}

.feature-garden::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(11, 44, 36, 0.88) 100%);
  content: "";
}

.feature-garden > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-garden:hover > img {
  transform: scale(1.025);
}

.garden-copy {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: white;
}

.garden-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-section {
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 150px);
  background: var(--primary-dark);
  color: white;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 125px);
}

.privacy-window {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50% 50% 34px 34px / 33% 33% 34px 34px;
  background: linear-gradient(155deg, rgba(231, 240, 236, 0.13), rgba(255, 255, 255, 0.03));
}

.privacy-window::before,
.privacy-window::after {
  position: absolute;
  border: 1px solid rgba(205, 225, 216, 0.18);
  border-radius: 50%;
  content: "";
}

.privacy-window::before { inset: 7%; }
.privacy-window::after { inset: 15%; }

.privacy-camera {
  position: absolute;
  z-index: 1;
  top: 16%;
  left: 10%;
  width: 48%;
  padding: 8px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 25px 50px rgba(4, 31, 25, 0.3);
  transform: rotate(-5deg);
}

.privacy-camera img {
  width: 100%;
  border-radius: 20px;
}

.no-record-dot {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(24, 58, 52, 0.9);
  color: white;
  font-size: 9px;
  font-weight: 750;
}

.no-record-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.privacy-mara {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: 1%;
  width: 70%;
  filter: drop-shadow(0 25px 25px rgba(4, 31, 25, 0.25));
}

.privacy-copy h2 {
  max-width: 680px;
}

.privacy-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.65;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.check-list span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.privacy-detail {
  max-width: 650px;
  margin: 30px 0 0;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.6;
}

.audiences {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(50px, 9vw, 130px);
}

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

.audience-heading h2 {
  font-size: clamp(42px, 4.4vw, 63px);
}

.audience-rail {
  display: grid;
}

.audience-rail article {
  display: grid;
  grid-template-columns: 28px 0.75fr 1.25fr;
  align-items: start;
  gap: 24px;
  padding: 31px 0;
  border-top: 1px solid rgba(52, 119, 104, 0.2);
}

.audience-rail article:last-child {
  border-bottom: 1px solid rgba(52, 119, 104, 0.2);
}

.audience-mark {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 50% 50% 50% 12%;
  background: var(--mint);
  transform: rotate(24deg);
}

.audience-mark.coral { background: var(--coral); }
.audience-mark.sun { background: var(--sun); }
.audience-mark.sky { background: var(--sky); }

.audience-rail h3 {
  font-size: 20px;
}

.audience-rail p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 10vw, 140px);
}

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

.faq-heading h2 {
  font-size: clamp(43px, 4.7vw, 68px);
}

.faq-heading > p {
  margin-top: 25px;
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid rgba(52, 119, 104, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(52, 119, 104, 0.22);
}

.faq-list summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 710px;
  margin: -3px 54px 27px 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.closing {
  padding-bottom: clamp(80px, 10vw, 130px);
}

.closing-inner {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(35px, 5vw, 65px);
  border-radius: 38px;
  background: var(--ink);
  color: white;
}

.closing-inner > img {
  width: 130px;
  filter: drop-shadow(0 14px 18px rgba(3, 28, 23, 0.35));
}

.store-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.closing h2 {
  font-size: clamp(35px, 4.5vw, 59px);
}

.closing p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.button-light {
  min-width: 190px;
  background: var(--mint);
  color: var(--ink);
}

.button-light span {
  background: white;
}

.button-light:hover {
  background: white;
}

.site-footer {
  padding-block: 65px 26px;
  border-top: 1px solid rgba(52, 119, 104, 0.14);
  background: #eeece5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr 1fr;
  gap: 55px;
}

.footer-brand > p {
  max-width: 270px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

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

.footer-grid h2 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.footer-grid a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid rgba(52, 119, 104, 0.14);
  color: var(--ink-faint);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 230ms; }

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

/* Android preregistration */
.android-page {
  background:
    radial-gradient(circle at 10% 15%, rgba(205, 225, 216, 0.5), transparent 31rem),
    var(--canvas);
}

.android-preregister {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.76fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
  min-height: 690px;
  padding-block: 80px 105px;
}

.android-preregister-copy {
  position: relative;
  padding-bottom: 58px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 750;
}

.back-link img {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.back-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.android-preregister h1 {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(55px, 7vw, 92px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.android-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.android-mara {
  position: absolute;
  right: 1%;
  bottom: -2px;
  width: 128px;
  filter: drop-shadow(0 17px 20px rgba(25, 70, 59, 0.14));
  transform: rotate(5deg);
}

.android-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(27px, 4vw, 45px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow-large);
}

.android-form-card::after {
  position: absolute;
  right: -64px;
  bottom: -82px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(52, 119, 104, 0.18);
  border-radius: 50%;
  content: "";
}

.form-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-step {
  color: var(--primary-dark);
}

.android-form-card h2 {
  margin: 41px 0 0;
  font-size: clamp(32px, 4vw, 47px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.android-form-card > p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.android-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 19px;
  margin-top: 31px;
}

.form-field {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.form-field input {
  width: 100%;
  min-height: 53px;
  padding: 0 15px;
  border: 1px solid rgba(52, 119, 104, 0.22);
  border-radius: 15px;
  background: var(--canvas);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input::placeholder {
  color: var(--ink-faint);
}

.form-field input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(52, 119, 104, 0.12);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.form-check input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--primary);
}

.form-check a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px 0 21px;
  border: 0;
  border-radius: 17px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.form-submit span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-size: 19px;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-message {
  min-height: 21px;
  margin: -3px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.form-message[data-state="success"] {
  color: var(--primary-dark);
  font-weight: 750;
}

.form-message[data-state="error"] {
  color: var(--danger);
  font-weight: 650;
}

.form-privacy {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: 21px 0 0 !important;
  color: var(--ink-faint) !important;
  font-size: 11px;
  line-height: 1.55;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.android-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 112px;
  border-top: 1px solid rgba(52, 119, 104, 0.18);
  border-bottom: 1px solid rgba(52, 119, 104, 0.18);
}

.android-details > div {
  min-height: 255px;
  padding: 38px clamp(22px, 4vw, 60px) 42px 0;
}

.android-details > div + div {
  padding-right: 0;
  padding-left: clamp(22px, 4vw, 60px);
  border-left: 1px solid rgba(52, 119, 104, 0.18);
}

.detail-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.android-details h2 {
  max-width: 380px;
  margin: 24px 0 13px;
  font-size: clamp(25px, 3vw, 37px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.android-details p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Legal pages */
.legal-body {
  background: var(--canvas);
}

.legal-header .site-nav a[aria-current="page"] {
  color: var(--ink);
}

.legal-main {
  padding-bottom: 120px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 70px;
  padding-block: 95px 78px;
  border-bottom: 1px solid rgba(52, 119, 104, 0.2);
}

.legal-hero h1 {
  font-size: clamp(58px, 7vw, 100px);
}

.legal-summary {
  max-width: 690px;
  margin: 29px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.legal-date {
  align-self: end;
  padding: 22px;
  border-radius: 22px;
  background: var(--mint-light);
}

.legal-date span,
.legal-date strong {
  display: block;
}

.legal-date span {
  color: var(--ink-soft);
  font-size: 12px;
}

.legal-date strong {
  margin-top: 4px;
  font-size: 15px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 740px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 70px;
}

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

.legal-toc h2 {
  margin: 0 0 17px;
  font-size: 14px;
}

.legal-toc nav {
  display: grid;
  border-top: 1px solid rgba(52, 119, 104, 0.18);
}

.legal-toc a {
  padding: 11px 0;
  border-bottom: 1px solid rgba(52, 119, 104, 0.18);
  color: var(--ink-soft);
  font-size: 12px;
  transition: color 150ms ease, padding-left 150ms ease;
}

.legal-toc a:hover {
  padding-left: 5px;
  color: var(--primary-dark);
}

.legal-callout {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: var(--sun-light);
  color: #6d5a2f;
  font-size: 11px;
  line-height: 1.55;
}

.legal-content {
  counter-reset: legal-section;
}

.legal-content section {
  padding: 0 0 46px;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.legal-content section + section {
  padding-top: 46px;
  border-top: 1px solid rgba(52, 119, 104, 0.18);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: clamp(27px, 3vw, 37px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 28px 0 9px;
  font-size: 17px;
  letter-spacing: -0.015em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 15px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-note {
  margin: 25px 0 !important;
  padding: 21px 23px;
  border-left: 4px solid var(--primary);
  border-radius: 0 18px 18px 0;
  background: var(--mint-light);
}

.legal-warning {
  margin: 25px 0 !important;
  padding: 21px 23px;
  border-left: 4px solid var(--coral);
  border-radius: 0 18px 18px 0;
  background: var(--coral-light);
}

.legal-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(52, 119, 104, 0.35);
  text-underline-offset: 3px;
}

.legal-next {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding: 28px;
  border-radius: 26px;
  background: var(--ink);
  color: white;
}

.legal-next strong,
.legal-next span {
  display: block;
}

.legal-next span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.legal-next > span:last-child {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-size: 20px;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 40px;
  }

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

  .guide-float {
    left: -2%;
    width: 150px;
  }

  .hero-mara {
    width: 130px;
  }

  .guide-layout,
  .privacy-layout {
    gap: 60px;
  }

  .closing-inner {
    grid-template-columns: 100px 1fr;
  }

  .closing-inner > img {
    width: 100px;
  }

.closing-inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .closing-inner .app-store-link {
    grid-column: 2;
    justify-self: start;
  }

  .closing-inner .store-links {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) - 5px);
    right: 16px;
    left: 16px;
    display: grid;
    visibility: hidden;
    gap: 2px;
    padding: 16px;
    border: 1px solid rgba(52, 119, 104, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-large);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .site-nav > a:not(.nav-cta):hover {
    background: var(--mint-light);
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 5px;
  }

  .nav-store-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 5px;
  }

  .nav-store-links .nav-cta {
    justify-content: center;
    min-width: 0;
    margin-top: 0;
  }

  .menu-app-store-badge,
  .menu-google-play-badge {
    width: 100%;
    max-width: 145px;
  }

  .menu-button[aria-expanded="true"] .menu-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding-block: 55px 90px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .android-preregister {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding-block: 58px 82px;
  }

  .android-preregister-copy {
    max-width: 700px;
    padding-bottom: 34px;
  }

  .android-form-card {
    width: min(620px, 100%);
  }

  .hero-visual {
    width: min(680px, 100%);
    min-height: 670px;
    margin-inline: auto;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .proof-grid p:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-grid p:nth-child(-n + 2) {
    padding-bottom: 18px;
  }

  .proof-grid p:nth-child(n + 3) {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .outcome > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .guide-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .guide-demo {
    width: min(570px, 100%);
    margin-inline: auto;
  }

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

  .privacy-visual {
    width: min(530px, 100%);
    margin-inline: auto;
  }

  .audiences,
  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

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

  .legal-hero {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-date {
    max-width: 330px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 48px;
    padding-block: 50px 72px;
  }

  .android-preregister {
    gap: 30px;
    padding-block: 47px 68px;
  }

  .android-preregister h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .android-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .android-mara {
    right: -7px;
    width: 100px;
  }

  .android-form-card {
    padding: 25px 21px 27px;
    border-radius: 27px;
  }

  .form-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .android-form-card h2 {
    margin-top: 31px;
  }

  .android-details {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .android-details > div,
  .android-details > div + div {
    min-height: auto;
    padding: 30px 0 34px;
  }

  .android-details > div + div {
    border-top: 1px solid rgba(52, 119, 104, 0.18);
    border-left: 0;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
    letter-spacing: -0.06em;
  }

  .hero-subtitle {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-photo-wrap {
    inset: 15px 0 20px 20px;
    border-width: 7px;
    border-radius: 46% 46% 28px 28px / 30% 30% 28px 28px;
  }

  .routine-ticket {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px 13px 13px 15px;
  }

  .guide-float {
    top: 1%;
    left: -2%;
    width: 125px;
    padding: 6px;
    border-radius: 20px;
  }

  .guide-float img {
    border-radius: 15px;
  }

  .hero-mara {
    right: -3%;
    bottom: -2%;
    width: 102px;
  }

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

  .proof-grid p,
  .proof-grid p:nth-child(3) {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .proof-grid p:first-child {
    border-top: 0;
  }

  .proof-grid p:nth-child(-n + 2) {
    padding-bottom: 15px;
  }

  .section h2,
  .guide-section h2,
  .privacy-section h2 {
    font-size: clamp(41px, 12vw, 56px);
  }

  .outcome-list {
    margin-top: 48px;
  }

  .outcome {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 27px 0;
  }

  .guide-tab {
    padding: 14px 11px;
  }

  .guide-demo {
    min-height: 620px;
  }

  .phone-frame {
    right: 50%;
    width: min(330px, 94%);
    transform: translateX(50%) rotate(1.5deg);
  }

  .phone-screen {
    min-height: 600px;
  }

  .phone-guide-image {
    height: 305px;
  }

  .demo-note {
    right: -3px;
    bottom: 4%;
  }

  .feature {
    min-height: 350px;
    border-radius: 28px;
  }

  .feature-mint {
    min-height: 510px;
  }

  .area-cloud {
    right: 25px;
    bottom: 28px;
    left: 25px;
  }

  .feature-dark {
    min-height: 370px;
  }

  .privacy-window {
    min-height: 470px;
  }

  .audience-rail article {
    grid-template-columns: 25px 1fr;
    gap: 12px;
  }

  .audience-rail article p {
    grid-column: 2;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 16px;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .closing-inner > img {
    width: 110px;
    margin-inline: auto;
  }

  .closing-inner .button {
    grid-column: 1;
    justify-self: stretch;
  }

  .closing-inner .app-store-link {
    grid-column: 1;
    justify-self: center;
  }

  .closing-inner .store-links {
    grid-column: 1;
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding-bottom: 80px;
  }

  .legal-hero {
    padding-block: 62px 55px;
  }

  .legal-hero h1 {
    font-size: clamp(51px, 16vw, 72px);
  }

  .legal-summary {
    font-size: 17px;
  }

  .legal-layout {
    padding-top: 50px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-next {
    padding: 22px;
  }
}

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

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