@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --forest: #1A3626;
  --moss: #3D5733;
  --evergreen: #214730;
  --sage-light: #EBF2E6;
  --sage-soft: #CCE0C4;
  --sage-mid: #94B894;
  --sandstone: #C28A45;
  --cream: #E0D6B8;
  --white: #ffffff;
  --ink: #13261b;
  --ink-soft: rgba(19, 38, 27, 0.76);
  --ink-muted: rgba(19, 38, 27, 0.58);
  --line: rgba(26, 54, 38, 0.11);
  --line-strong: rgba(26, 54, 38, 0.18);
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-deep: rgba(235, 242, 230, 0.74);
  --shadow-sm: 0 12px 30px rgba(26, 54, 38, 0.08);
  --shadow-md: 0 24px 60px rgba(26, 54, 38, 0.12);
  --shadow-lg: 0 32px 90px rgba(26, 54, 38, 0.16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --container: 1200px;
  --container-wide: 1320px;
  --transition: 220ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(204, 224, 196, 0.85), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(194, 138, 69, 0.18), transparent 26%),
    linear-gradient(180deg, #f8fbf4 0%, #eff5ea 42%, #f6f2e7 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.75), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(224, 214, 184, 0.24), transparent 35%);
  filter: blur(30px);
}

body::after {
  z-index: -1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 360'%3E%3Cg fill='none' stroke='%231A3626' stroke-opacity='0.08' stroke-width='1.2'%3E%3Cpath d='M-20 78c38-37 90-49 138-31 51 19 102 22 153-11 31-20 65-28 109-18'/%3E%3Cpath d='M-18 131c41-33 96-42 143-18 56 29 112 32 162 3 28-16 53-24 91-20'/%3E%3Cpath d='M-22 183c47-29 100-34 145-12 51 25 116 34 178 10 29-11 56-15 89-10'/%3E%3Cpath d='M-22 241c52-31 102-35 153-11 55 25 116 25 176-2 23-11 48-17 84-15'/%3E%3Cpath d='M-15 301c44-27 86-31 131-14 60 24 134 23 190-3 28-13 50-18 87-12'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 360px 360px;
}

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

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

p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.65rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Sora', 'Avenir Next Rounded', 'Trebuchet MS', sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

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

strong {
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(194, 138, 69, 0.68);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section--hero {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(235, 242, 230, 0.55)),
    rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(26, 54, 38, 0.05);
}

.section--final {
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26, 54, 38, 0.08);
  background: rgba(255, 255, 255, 0.64);
  color: var(--evergreen);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(26, 54, 38, 0.05);
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

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

.section-heading h1,
.section-heading h2 {
  margin-top: 1rem;
}

.section-heading p:last-child {
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(248, 251, 244, 0.62);
  border-bottom: 1px solid rgba(26, 54, 38, 0.06);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(248, 251, 244, 0.86);
  border-color: rgba(26, 54, 38, 0.1);
  box-shadow: 0 14px 30px rgba(26, 54, 38, 0.06);
}

.nav__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  font-weight: 800;
  font-family: 'Sora', 'Avenir Next Rounded', 'Trebuchet MS', sans-serif;
  flex-shrink: 0;
}

.brand-copy {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 230, 0.9)),
    var(--sage-light);
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: 0 14px 24px rgba(26, 54, 38, 0.08);
  overflow: hidden;
}

.brand-mark__ridge,
.brand-mark__trail,
.brand-mark__plus {
  position: absolute;
}

.brand-mark__ridge {
  inset: auto 7px 9px;
  height: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(26, 54, 38, 0.18), rgba(33, 71, 48, 0.95));
  clip-path: polygon(0 100%, 22% 48%, 40% 68%, 62% 22%, 86% 60%, 100% 100%);
}

.brand-mark__trail {
  top: 8px;
  left: 11px;
  width: 20px;
  height: 22px;
  border-left: 2px solid rgba(194, 138, 69, 0.96);
  border-bottom: 2px solid rgba(194, 138, 69, 0.96);
  border-radius: 0 0 0 18px;
  transform: rotate(-18deg);
}

.brand-mark__plus {
  top: 8px;
  right: 9px;
  width: 12px;
  height: 12px;
}

.brand-mark__plus::before,
.brand-mark__plus::after {
  content: '';
  position: absolute;
  background: var(--sandstone);
  border-radius: 999px;
}

.brand-mark__plus::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 2px;
}

.brand-mark__plus::after {
  top: 0;
  left: 5px;
  width: 2px;
  height: 12px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.nav__link {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition), transform var(--transition);
}

.nav__link:hover,
.footer__link:hover {
  color: var(--ink);
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--forest);
  transition: transform var(--transition), opacity var(--transition);
}

.nav--open .nav__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav--open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav--open .nav__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button,
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

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

.button--large {
  min-height: 60px;
  padding-inline: 1.65rem;
}

.button--primary {
  background: linear-gradient(180deg, #31563d 0%, #1f412d 100%);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(33, 71, 48, 0.24);
}

.button--primary:hover {
  box-shadow: 0 24px 36px rgba(33, 71, 48, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border-color: rgba(26, 54, 38, 0.11);
  box-shadow: 0 14px 24px rgba(26, 54, 38, 0.06);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.nav__cta {
  min-height: 46px;
  padding-inline: 1.15rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
}

.hero__mist {
  position: absolute;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__mist--one {
  top: 8%;
  right: -8rem;
  background: radial-gradient(circle, rgba(204, 224, 196, 0.95), transparent 65%);
}

.hero__mist--two {
  bottom: 2rem;
  left: -9rem;
  background: radial-gradient(circle, rgba(224, 214, 184, 0.65), transparent 62%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.5rem;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin-top: 1.2rem;
  max-width: 12ch;
}

.hero__subtitle {
  margin-top: 1.3rem;
  max-width: 38rem;
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero__fact {
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: 0 20px 40px rgba(26, 54, 38, 0.06);
}

.hero__fact-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.hero__visual {
  position: relative;
  min-height: 740px;
}

.terrain-backdrop {
  position: absolute;
  inset: 2rem 0 0 0;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(235, 242, 230, 0.52)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.terrain-backdrop__glow,
.terrain-backdrop__linework,
.terrain-backdrop__layer {
  position: absolute;
  inset: 0;
}

.terrain-backdrop__glow {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.95), transparent 26%),
    radial-gradient(circle at 72% 12%, rgba(204, 224, 196, 0.54), transparent 24%);
}

.terrain-backdrop__linework {
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 540 540'%3E%3Cg fill='none' stroke='%231A3626' stroke-opacity='0.12' stroke-width='1.1'%3E%3Cpath d='M-30 140c82-48 168-61 238-22 87 48 178 43 280-14 34-19 67-29 110-28'/%3E%3Cpath d='M-36 228c91-44 174-48 246-10 78 41 181 47 292 8 32-11 68-17 108-12'/%3E%3Cpath d='M-25 318c83-42 167-49 242-16 88 38 182 37 294-8 31-13 64-16 98-10'/%3E%3Cpath d='M-10 420c75-40 155-45 224-20 94 34 193 33 291 1 31-10 65-13 106-6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.terrain-backdrop__layer--far,
.terrain-backdrop__layer--mid,
.terrain-backdrop__layer--near {
  inset: auto 0 0;
  height: 55%;
}

.terrain-backdrop__layer--far {
  background: linear-gradient(180deg, rgba(140, 174, 138, 0.1), rgba(61, 87, 51, 0.16));
  clip-path: polygon(0 100%, 0 66%, 18% 58%, 36% 63%, 48% 52%, 63% 58%, 80% 49%, 100% 61%, 100% 100%);
}

.terrain-backdrop__layer--mid {
  background: linear-gradient(180deg, rgba(79, 110, 69, 0.16), rgba(33, 71, 48, 0.3));
  clip-path: polygon(0 100%, 0 76%, 12% 69%, 24% 74%, 36% 60%, 49% 72%, 66% 63%, 81% 72%, 100% 57%, 100% 100%);
}

.terrain-backdrop__layer--near {
  background: linear-gradient(180deg, rgba(26, 54, 38, 0.08), rgba(26, 54, 38, 0.54));
  clip-path: polygon(0 100%, 0 82%, 10% 77%, 24% 81%, 38% 66%, 54% 80%, 68% 72%, 84% 80%, 100% 70%, 100% 100%);
}

.phone-stack {
  position: absolute;
  inset: 4rem 2rem 2rem;
}

.phone {
  position: absolute;
  width: min(100%, 300px);
  border-radius: 40px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(18, 33, 24, 0.95), rgba(8, 18, 12, 0.92));
  box-shadow: 0 35px 80px rgba(19, 38, 27, 0.26);
}

.phone--primary {
  top: 1rem;
  left: 2rem;
  z-index: 3;
}

.phone--secondary {
  right: 1rem;
  bottom: 2rem;
  z-index: 2;
}

.phone__notch {
  width: 34%;
  height: 24px;
  margin: 0 auto 10px;
  background: rgba(8, 18, 12, 0.98);
  border-radius: 999px;
}

.phone__screen {
  min-height: 560px;
  border-radius: 30px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22)),
    linear-gradient(180deg, #f7fbf4 0%, #ebf2e6 100%);
  overflow: hidden;
  position: relative;
}

.phone__screen--session {
  background:
    radial-gradient(circle at top right, rgba(224, 214, 184, 0.44), transparent 30%),
    linear-gradient(180deg, #f8f3e9 0%, #edf4e8 100%);
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.screen-header__time {
  font-weight: 700;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(33, 71, 48, 0.1);
  color: var(--evergreen);
  font-size: 0.76rem;
  font-weight: 700;
}

.status-pill--soft {
  background: rgba(255, 255, 255, 0.66);
}

.status-pill--gold {
  background: rgba(194, 138, 69, 0.16);
  color: #8e5d1e;
}

.route-map {
  position: relative;
  height: 260px;
  margin-top: 1rem;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(204, 224, 196, 0.72), rgba(148, 184, 148, 0.52));
  border: 1px solid rgba(26, 54, 38, 0.08);
}

.route-map__mesh,
.route-map__contours,
.route-map__route {
  position: absolute;
  inset: 0;
}

.route-map__mesh {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.62), transparent 18%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.route-map__contours {
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%231A3626' stroke-opacity='0.28' stroke-width='1.2'%3E%3Cpath d='M0 66c34-30 74-40 110-22 36 18 78 18 114-2 19-11 28-14 36-12'/%3E%3Cpath d='M-8 112c37-26 74-32 106-16 39 20 88 22 126 2 20-11 30-14 36-11'/%3E%3Cpath d='M0 160c33-23 67-26 102-12 43 18 94 18 136 0 12-5 20-7 30-6'/%3E%3Cpath d='M-2 206c36-22 71-24 101-11 41 19 99 20 143 3 13-5 22-7 31-6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.route-map__route {
  inset: 12% 8% 10%;
  background: none;
}

.route-map__route::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  border: 4px solid transparent;
  border-top-color: #c28a45;
  border-right-color: #c28a45;
  border-bottom-color: #c28a45;
  border-radius: 44% 54% 48% 50% / 44% 42% 58% 56%;
  transform: rotate(16deg) scale(0.8);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.route-map__pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--white);
  border: 3px solid var(--sandstone);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.route-map__pin--start {
  left: 24%;
  bottom: 22%;
}

.route-map__pin--end {
  top: 22%;
  right: 28%;
}

.route-map__badge {
  position: absolute;
  padding: 0.38rem 0.66rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--evergreen);
  box-shadow: 0 10px 20px rgba(26, 54, 38, 0.08);
}

.route-map__badge--left {
  left: 0.8rem;
  top: 0.8rem;
}

.route-map__badge--right {
  right: 0.8rem;
  bottom: 0.8rem;
}

.route-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.route-summary__eyebrow {
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.route-summary__title {
  font-size: 1.3rem;
  margin-top: 0.35rem;
}

.route-summary__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 18px;
  background: rgba(33, 71, 48, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.metric-chip,
.health-strip__item {
  padding: 0.95rem 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 54, 38, 0.08);
}

.metric-chip__label,
.health-strip__item span,
.session-card__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.session-card {
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(26, 54, 38, 0.08);
}

.session-card__title {
  font-size: 1.22rem;
  margin-top: 0.3rem;
}

.session-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.session-card__stats span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.session-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  height: 158px;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(204, 224, 196, 0.5), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(26, 54, 38, 0.08);
}

.session-chart__line {
  display: block;
  width: calc(20% - 0.56rem);
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(194, 138, 69, 0.45), rgba(33, 71, 48, 0.86));
}

.session-chart__line--one { height: 44%; }
.session-chart__line--two { height: 58%; }
.session-chart__line--three { height: 74%; }
.session-chart__line--four { height: 62%; }
.session-chart__line--five { height: 86%; }

.health-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.floating-card {
  position: absolute;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 48px rgba(26, 54, 38, 0.12);
  z-index: 4;
}

.floating-card__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card p {
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.floating-card--conditions {
  top: 2rem;
  right: 0;
}

.floating-card--offline {
  left: 0;
  bottom: 1rem;
}

.floating-card--alert {
  right: 1rem;
  bottom: 9rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  grid-column: span 4;
  min-height: 250px;
  padding: 1.6rem;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(235, 242, 230, 0.66)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -25% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 224, 196, 0.45), rgba(204, 224, 196, 0));
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%231A3626' stroke-opacity='0.3' stroke-width='1.1'%3E%3Cpath d='M0 95c27-20 58-26 85-13 36 16 79 15 116-3 21-10 41-13 79-8'/%3E%3Cpath d='M0 150c32-18 61-21 89-10 37 15 78 15 117 0 19-7 39-10 74-7'/%3E%3Cpath d='M0 205c28-17 55-19 84-9 39 14 79 14 119 0 18-6 38-8 77-6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.feature-card:hover,
.experience-card:hover,
.quote-card:hover,
.photo-card:hover,
.support-note:hover,
.tier-card:hover,
.form-shell:hover,
.legal-shell:hover,
.error-page__shell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

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

.feature-card--tall {
  grid-column: span 4;
  min-height: 320px;
}

.feature-card--highlight {
  background:
    linear-gradient(180deg, rgba(26, 54, 38, 0.9), rgba(33, 71, 48, 0.9)),
    var(--forest);
  color: var(--white);
}

.feature-card--highlight p,
.feature-card--highlight .feature-card__meta span,
.feature-card--highlight .feature-card__eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card__eyebrow {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-top: 0.95rem;
}

.feature-card p:not(.feature-card__eyebrow) {
  margin-top: 0.8rem;
}

.feature-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.feature-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(26, 54, 38, 0.08);
  color: var(--evergreen);
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-card--highlight .feature-card__meta span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.4rem;
  align-items: start;
}

.experience__intro > p:last-of-type {
  margin-top: 1.2rem;
  max-width: 38rem;
}

.experience-board {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(235, 242, 230, 0.62)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: var(--shadow-sm);
}

.experience-board__map {
  position: relative;
  height: 340px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(204, 224, 196, 0.82), rgba(148, 184, 148, 0.58)),
    var(--sage-soft);
}

.experience-board__map::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%231A3626' stroke-opacity='0.32' stroke-width='1.1'%3E%3Cpath d='M0 92c38-26 79-35 117-17 41 19 84 18 122-2 23-13 46-18 81-16'/%3E%3Cpath d='M0 146c36-22 77-26 115-11 45 18 87 17 124 1 23-10 46-14 81-12'/%3E%3Cpath d='M0 201c36-21 75-23 114-10 45 15 88 14 127 1 21-7 43-10 79-8'/%3E%3Cpath d='M0 256c35-21 72-22 114-8 44 15 89 14 127 2 22-8 43-10 79-8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.experience-board__route {
  position: absolute;
  inset: 14% 12% 18%;
}

.experience-board__route::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-left-color: var(--sandstone);
  border-bottom-color: var(--sandstone);
  border-right-color: var(--sandstone);
  border-radius: 50% 44% 48% 52% / 44% 58% 42% 56%;
  transform: rotate(-12deg);
}

.experience-board__tag {
  position: absolute;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--evergreen);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(26, 54, 38, 0.08);
}

.experience-board__tag--one {
  left: 1rem;
  bottom: 1rem;
}

.experience-board__tag--two {
  right: 1.1rem;
  top: 2.2rem;
}

.experience-board__tag--three {
  left: 40%;
  bottom: 32%;
}

.experience-board__panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.experience-board__panel {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 54, 38, 0.08);
}

.experience-board__panel span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.experience-card {
  padding: 1.45rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.experience-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(33, 71, 48, 0.08);
  color: var(--evergreen);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.experience-card h3 {
  margin-top: 1rem;
}

.experience-card p {
  margin-top: 0.85rem;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tier-card {
  padding: 1.7rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 230, 0.68)),
    rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 54, 38, 0.09);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tier-card--featured {
  background:
    linear-gradient(180deg, rgba(33, 71, 48, 0.96), rgba(26, 54, 38, 0.96)),
    var(--forest);
  color: var(--white);
  box-shadow: 0 28px 58px rgba(26, 54, 38, 0.22);
}

.tier-card--featured p,
.tier-card--featured li {
  color: rgba(255, 255, 255, 0.82);
}

.tier-card__label {
  display: inline-flex;
  padding: 0.45rem 0.72rem;
  border-radius: var(--radius-pill);
  background: rgba(33, 71, 48, 0.08);
  color: var(--evergreen);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-card--featured .tier-card__label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.tier-card h3 {
  margin-top: 1rem;
}

.tier-card p {
  margin-top: 0.9rem;
}

.tier-card__list {
  margin-top: 1.3rem;
}

.stories {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 1.2rem;
  align-items: start;
}

.stories__visual > p:last-of-type {
  margin-top: 1.1rem;
  max-width: 40rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.photo-card,
.quote-card,
.support-note,
.form-shell,
.legal-shell,
.error-page__shell {
  border-radius: 30px;
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo-card {
  min-height: 220px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.65), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(26, 54, 38, 0.68)),
    linear-gradient(135deg, rgba(204, 224, 196, 0.84), rgba(61, 87, 51, 0.84));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.photo-card::before {
  content: '';
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(19, 38, 27, 0.44));
  clip-path: polygon(0 100%, 0 46%, 18% 58%, 35% 40%, 50% 64%, 67% 47%, 82% 61%, 100% 38%, 100% 100%);
}

.photo-card--tall {
  grid-row: span 2;
  min-height: 460px;
}

.photo-card__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.42rem 0.68rem;
  margin-bottom: 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-card strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.4;
}

.stories__quotes {
  display: grid;
  gap: 1rem;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 1.4rem;
  align-items: start;
}

.auth-summary {
  display: grid;
  gap: 1.3rem;
}

.auth-summary > p:last-of-type {
  max-width: 34rem;
}

.auth-benefits {
  display: grid;
  gap: 0.9rem;
}

.auth-benefit,
.auth-card {
  border-radius: 30px;
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: var(--shadow-sm);
}

.auth-benefit {
  padding: 1.25rem 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(235, 242, 230, 0.64)),
    rgba(255, 255, 255, 0.78);
}

.auth-benefit__label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-shell {
  padding: 1.1rem;
  border-radius: 38px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.72), transparent 25%),
    linear-gradient(180deg, rgba(248, 251, 244, 0.82), rgba(231, 240, 226, 0.72));
  border: 1px solid rgba(26, 54, 38, 0.08);
  box-shadow: var(--shadow-md);
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.auth-card {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 230, 0.68)),
    rgba(255, 255, 255, 0.82);
}

.auth-card--signup {
  background:
    radial-gradient(circle at top left, rgba(204, 224, 196, 0.52), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 226, 0.78)),
    rgba(255, 255, 255, 0.84);
}

.auth-card--signin {
  background:
    radial-gradient(circle at top right, rgba(224, 214, 184, 0.42), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 244, 235, 0.78)),
    rgba(255, 255, 255, 0.84);
}

.auth-card__header p {
  margin-top: 0.7rem;
}

.auth-card__header h3 {
  margin-top: 0.9rem;
}

.auth-form {
  margin-top: 1.4rem;
}

.auth-form__actions .button {
  width: 100%;
}

.auth-form__hint {
  margin-top: 0.25rem;
}

.auth-panel__status {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(26, 54, 38, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.auth-panel__status--info {
  color: var(--evergreen);
  background: rgba(204, 224, 196, 0.46);
  border-color: rgba(61, 87, 51, 0.18);
}

.auth-panel__status--success {
  color: #214730;
  background: rgba(219, 238, 212, 0.74);
  border-color: rgba(61, 87, 51, 0.24);
}

.auth-panel__status--error {
  color: #8a3d26;
  background: rgba(255, 244, 241, 0.92);
  border-color: rgba(138, 61, 38, 0.18);
}

.quote-card {
  margin: 0;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(235, 242, 230, 0.62)),
    rgba(255, 255, 255, 0.74);
}

.quote-card p {
  color: var(--ink);
  font-size: 1.05rem;
}

.quote-card footer {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-weight: 700;
}

.cta-shell {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(135deg, rgba(26, 54, 38, 0.96), rgba(33, 71, 48, 0.95) 52%, rgba(42, 82, 54, 0.96));
  color: var(--white);
  box-shadow: 0 36px 80px rgba(26, 54, 38, 0.24);
}

.cta-shell::before,
.cta-shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.cta-shell::before {
  inset: auto -12% -34% auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 138, 69, 0.36), transparent 62%);
}

.cta-shell::after {
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.42' stroke-width='1.2'%3E%3Cpath d='M-20 146c74-44 157-55 227-24 92 42 198 42 293-4 42-20 79-29 126-28'/%3E%3Cpath d='M-22 236c83-39 164-44 234-16 96 39 199 38 291 5 41-15 79-20 124-15'/%3E%3Cpath d='M-18 330c74-34 149-39 224-14 98 33 200 33 294 4 44-14 83-17 125-12'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.cta-shell > * {
  position: relative;
  z-index: 1;
}

.cta-shell p:last-of-type {
  margin-top: 1.1rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.store-badge {
  min-width: 220px;
  justify-content: flex-start;
  padding-inline: 1.2rem 1.45rem;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.store-badge svg {
  width: 28px;
  height: 28px;
}

.store-badge__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.store-badge__text small {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.7);
}

.store-badge__text strong {
  color: inherit;
  font-size: 1.05rem;
}

.cta-shell__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.cta-shell__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.76rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
}

.footer {
  padding: 0 0 3rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(26, 54, 38, 0.08);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__link,
.footer__copyright {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.subpage-hero {
  padding-top: 3.2rem;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 1.2rem;
  align-items: start;
}

.support-notes {
  display: grid;
  gap: 1rem;
}

.support-note {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(235, 242, 230, 0.62)),
    rgba(255, 255, 255, 0.74);
}

.support-note__label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-shell,
.legal-shell,
.error-page__shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(235, 242, 230, 0.68)),
    rgba(255, 255, 255, 0.8);
  padding: 1.6rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form__group {
  display: grid;
  gap: 0.45rem;
}

.form__label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
}

.form__label--optional::after {
  content: ' Optional';
  color: var(--ink-muted);
  font-weight: 700;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  border: 1px solid rgba(26, 54, 38, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest) 50%),
    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 16px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form__textarea {
  min-height: 180px;
  resize: vertical;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(33, 71, 48, 0.42);
  box-shadow: 0 0 0 4px rgba(204, 224, 196, 0.6);
  outline: none;
}

.form__hint,
.form__error {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.form__error {
  color: #8a3d26;
  font-weight: 700;
}

.form__group--error .form__input,
.form__group--error .form__select,
.form__group--error .form__textarea {
  border-color: rgba(138, 61, 38, 0.44);
  background: rgba(255, 248, 246, 0.92);
}

.form__group--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__error-summary {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 244, 241, 0.92);
  border: 1px solid rgba(138, 61, 38, 0.18);
  color: #7d341e;
  font-weight: 700;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.btn--loading {
  opacity: 0.72;
  pointer-events: none;
  position: relative;
}

.btn--loading::after {
  content: '';
  width: 1rem;
  height: 1rem;
  margin-left: 0.55rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success {
  text-align: center;
  padding: 1rem 0.2rem;
}

.form-success__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(180deg, #31563d, #1f412d);
  box-shadow: 0 18px 30px rgba(33, 71, 48, 0.2);
}

.form-success__icon svg {
  width: 28px;
  height: 28px;
}

.form-success__description {
  margin-top: 0.8rem;
}

.form-success__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.form-success__reference {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.form-success__reference strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p {
  margin-top: 1rem;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.error-page__shell {
  max-width: 720px;
  padding: 2rem;
  text-align: center;
}

.error-page__shell h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.error-page__shell p {
  margin-top: 1rem;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1120px) {
  .hero__grid,
  .experience,
  .stories,
  .auth-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 760px;
    margin-top: 0.5rem;
  }

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

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

@media (max-width: 880px) {
  .section {
    padding: 5.25rem 0;
  }

  .nav__inner {
    min-height: 72px;
  }

  .nav__toggle {
    display: inline-block;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 26px;
    background: rgba(248, 251, 244, 0.96);
    border: 1px solid rgba(26, 54, 38, 0.08);
    box-shadow: 0 28px 60px rgba(26, 54, 38, 0.14);
  }

  .nav--open .nav__links {
    display: flex;
  }

  .nav__link,
  .nav__cta {
    width: 100%;
    justify-content: center;
  }

  .hero__facts,
  .metric-row,
  .experience-board__panels,
  .health-strip {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    inset: 3rem 1.2rem 1.2rem;
  }

  .phone--primary {
    left: 0;
  }

  .phone--secondary {
    right: 0;
  }

  .floating-card--conditions,
  .floating-card--offline,
  .floating-card--alert {
    max-width: 220px;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--tall,
  .feature-card--highlight {
    grid-column: span 12;
  }

  .auth-grid,
  .experience__grid,
  .tiers,
  .photo-grid,
  .form__row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section--hero {
    padding-top: 2rem;
  }

  .hero__actions,
  .cta-shell__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button,
  .cta-shell__actions .button,
  .store-badge {
    width: 100%;
  }

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

  .hero__visual {
    min-height: 920px;
  }

  .terrain-backdrop {
    inset: 0;
  }

  .phone {
    width: calc(100% - 1rem);
  }

  .phone--primary {
    top: 1rem;
    left: 0.5rem;
  }

  .phone--secondary {
    right: 0.5rem;
    bottom: 6rem;
  }

  .floating-card {
    left: 50%;
    right: auto;
    width: calc(100% - 3rem);
    max-width: 340px;
    transform: translateX(-50%);
  }

  .floating-card--conditions {
    top: 0;
  }

  .floating-card--offline {
    bottom: 0;
  }

  .floating-card--alert {
    bottom: 23rem;
  }

  .quote-card p {
    font-size: 1rem;
  }

  .cta-shell,
  .form-shell,
  .legal-shell,
  .error-page__shell,
  .auth-shell {
    padding: 1.35rem;
    border-radius: 28px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
