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

:root {
  --bg: #f4f5f1;
  --surface: #ffffff;
  --surface-soft: #f8faf7;
  --text: #202520;
  --muted: rgba(32, 37, 32, 0.64);
  --line: rgba(32, 37, 32, 0.12);
  --dark: #061007;
  --dark-soft: #101b13;
  --primary: #64f57b;
  --primary-strong: #2be75a;
  --blue: #1786f6;
  --cream: #f2efe7;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 22px 70px rgba(7, 20, 11, 0.12);
  --route-curve-loop: url("data:image/svg+xml,%3Csvg%20width%3D%271000%27%20height%3D%27680%27%20viewBox%3D%270%200%201000%20680%27%20fill%3D%27none%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpath%20d%3D%27M80%20560%20C210%20432%20154%20250%20308%20194%20C470%20136%20574%20292%20448%20386%20C330%20474%20214%20310%20342%20166%20C486%204%20746%2058%20790%20226%20C834%20400%20572%20408%20606%20562%20C642%20654%20816%20610%20920%20502%27%20stroke%3D%27black%27%20stroke-width%3D%2776%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%3C%2Fsvg%3E");
  --route-curve-snake: url("data:image/svg+xml,%3Csvg%20width%3D%271000%27%20height%3D%27680%27%20viewBox%3D%270%200%201000%20680%27%20fill%3D%27none%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpath%20d%3D%27M80%20166%20C186%2040%20312%2060%20286%20202%20C258%20356%20120%20300%20164%20170%20C236%208%20462%2034%20506%20174%20C550%20314%20382%20332%20410%20442%20C448%20592%20652%20520%20664%20356%20C676%20210%20576%20180%20634%2092%20C704%20-16%20882%2042%20848%20180%20C818%20304%20700%20238%20742%20124%20C790%202%20914%2056%20920%20230%27%20stroke%3D%27black%27%20stroke-width%3D%2758%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%3C%2Fsvg%3E");
  --route-curve-wave: url("data:image/svg+xml,%3Csvg%20width%3D%271000%27%20height%3D%27680%27%20viewBox%3D%270%200%201000%20680%27%20fill%3D%27none%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpath%20d%3D%27M80%20420%20C184%20318%20290%20430%20384%20310%20C474%20196%20544%20104%20642%20174%20C750%20252%20604%20414%20704%20480%20C810%20548%20842%20326%20938%20342%27%20stroke%3D%27black%27%20stroke-width%3D%2770%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%3C%2Fsvg%3E");
  --route-pattern-mask: var(--route-curve-loop);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 22px;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

p {
  line-height: 1.58;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.nav.is-scrolled {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: var(--text);
  background: var(--primary);
}

.brand-mark svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.6;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.nav.is-scrolled .lang-switch,
.feature-page .lang-switch {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.lang-option {
  display: inline-flex;
  min-width: 34px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.lang-option.is-active {
  color: var(--text);
  background: var(--primary);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: var(--text);
  background: var(--primary);
}

.btn-light,
.btn-ghost {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.nav.is-scrolled .btn-light,
.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: white;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav.is-scrolled .menu-toggle,
.feature-page .menu-toggle {
  color: var(--text);
  border-color: var(--line);
  background: white;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.mobile-menu {
  position: fixed;
  z-index: 35;
  top: 74px;
  left: 14px;
  right: 14px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
  gap: 12px;
}

.mobile-menu .nav-links {
  display: grid;
  gap: 4px;
}

.mobile-menu .nav-links a {
  border-radius: 14px;
  padding: 13px 12px;
  background: rgba(32, 37, 32, 0.04);
}

.mobile-menu .lang-switch {
  flex: 0 0 auto;
  width: max-content;
  border-color: var(--line);
  background: rgba(32, 37, 32, 0.04);
}

.mobile-menu .nav-actions {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}

.mobile-menu .btn-light {
  flex: 1;
  width: 100%;
  color: var(--text);
  border-color: transparent;
  background: var(--primary);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  color: white;
  text-align: center;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    url("assets/images/onboarding-bg.png") center / cover no-repeat,
    linear-gradient(145deg, #0a160e, #18251d);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 50% 38%, rgba(100, 245, 123, 0.2), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 32px));
  padding: 96px 0 48px;
}

.hero-lead {
  max-width: 780px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 650;
}

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--text);
  background: #eceeed;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow.positive {
  background: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.tag-cloud {
  overflow: hidden;
  padding: 22px 0;
  background: var(--surface);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: ticker 52s linear infinite;
}

.ticker span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  color: rgba(32, 37, 32, 0.72);
  background: rgba(32, 37, 32, 0.05);
  font-size: 14px;
  font-weight: 900;
}

.ticker svg {
  width: 17px;
  height: 17px;
  color: currentColor;
  stroke-width: 2.4;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 104px 0;
}

.route-now,
.how,
.pricing {
  background: var(--bg);
}

.how,
.features,
.audience,
.waitlist {
  position: relative;
  overflow: hidden;
  --route-pattern-color: #b8c6d8;
  --route-pattern-opacity: 0.11;
  --route-pattern-x: center;
  --route-pattern-y: center;
  --route-pattern-rotate: 0deg;
  --route-pattern-scale: 1;
  --route-pattern-size: min(760px, 74vw) auto;
  --route-pattern-mask: var(--route-curve-loop);
  --route-pattern-2-color: var(--route-pattern-color);
  --route-pattern-2-opacity: 0.07;
  --route-pattern-2-x: 8%;
  --route-pattern-2-y: 82%;
  --route-pattern-2-rotate: 0deg;
  --route-pattern-2-scale: 1;
  --route-pattern-2-size: min(520px, 46vw) auto;
  --route-pattern-2-mask: var(--route-curve-wave);
}

.how::before,
.features::before,
.audience::before,
.waitlist::before,
.how::after,
.features::after,
.audience::after,
.waitlist::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: var(--route-pattern-color);
  opacity: var(--route-pattern-opacity);
  transform: rotate(var(--route-pattern-rotate)) scale(var(--route-pattern-scale));
  -webkit-mask: var(--route-pattern-mask) var(--route-pattern-x) var(--route-pattern-y) / var(--route-pattern-size) no-repeat;
  mask: var(--route-pattern-mask) var(--route-pattern-x) var(--route-pattern-y) / var(--route-pattern-size) no-repeat;
}

.how::after,
.features::after,
.audience::after,
.waitlist::after {
  background: var(--route-pattern-2-color);
  opacity: var(--route-pattern-2-opacity);
  transform: rotate(var(--route-pattern-2-rotate)) scale(var(--route-pattern-2-scale));
  -webkit-mask: var(--route-pattern-2-mask) var(--route-pattern-2-x) var(--route-pattern-2-y) / var(--route-pattern-2-size) no-repeat;
  mask: var(--route-pattern-2-mask) var(--route-pattern-2-x) var(--route-pattern-2-y) / var(--route-pattern-2-size) no-repeat;
}

.how > .container,
.features > .container,
.audience > .container,
.waitlist > .container {
  position: relative;
  z-index: 1;
}

.how {
  --route-pattern-color: #c2ccd9;
  --route-pattern-opacity: 0.13;
  --route-pattern-x: 86%;
  --route-pattern-y: 38%;
  --route-pattern-rotate: 5deg;
  --route-pattern-size: min(560px, 52vw) auto;
  --route-pattern-mask: var(--route-curve-wave);
  --route-pattern-2-opacity: 0.055;
  --route-pattern-2-x: 4%;
  --route-pattern-2-y: 88%;
  --route-pattern-2-rotate: -14deg;
  --route-pattern-2-size: min(500px, 46vw) auto;
  --route-pattern-2-mask: var(--route-curve-snake);
}

.audience {
  --route-pattern-color: #c4cdbc;
  --route-pattern-opacity: 0.115;
  --route-pattern-x: 2%;
  --route-pattern-y: -2%;
  --route-pattern-rotate: 12deg;
  --route-pattern-size: min(620px, 56vw) auto;
  --route-pattern-mask: var(--route-curve-snake);
  --route-pattern-2-opacity: 0.095;
  --route-pattern-2-x: 88%;
  --route-pattern-2-y: 4%;
  --route-pattern-2-rotate: -12deg;
  --route-pattern-2-size: min(430px, 40vw) auto;
  --route-pattern-2-mask: var(--route-curve-wave);
}

.features {
  position: relative;
  overflow: hidden;
  --route-pattern-color: #bac8d9;
  --route-pattern-opacity: 0.075;
  --route-pattern-x: 2%;
  --route-pattern-y: 16%;
  --route-pattern-rotate: -10deg;
  --route-pattern-size: min(560px, 52vw) auto;
  --route-pattern-mask: var(--route-curve-loop);
  --route-pattern-2-opacity: 0.06;
  --route-pattern-2-x: 88%;
  --route-pattern-2-y: 64%;
  --route-pattern-2-rotate: 10deg;
  --route-pattern-2-size: min(520px, 48vw) auto;
  --route-pattern-2-mask: var(--route-curve-snake);
  background:
    radial-gradient(circle at 16% 18%, rgba(100, 245, 123, 0.08), transparent 32%),
    radial-gradient(circle at 86% 70%, rgba(23, 134, 246, 0.055), transparent 28%),
    var(--bg);
}

.features .container {
  position: relative;
  z-index: 1;
}

.section-head {
  position: relative;
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.features .section-head::after,
.audience .section-head::after,
.pricing .section-head::after {
  display: none;
}

.section-head h2 {
  margin-top: 14px;
}

.section-head p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.section-head.compact {
  margin-bottom: 30px;
}

.route-card-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.route-tile {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.66)),
    url("assets/images/login-bg.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.route-tile.featured {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7)),
    url("assets/images/onboarding-bg.png") center / cover no-repeat;
}

.route-tile p {
  width: max-content;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  background: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.route-tile h3 {
  max-width: 520px;
  margin-top: 18px;
  color: white;
  font-size: clamp(28px, 3.6vw, 48px);
}

.route-tile span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.beta-status {
  padding: 54px 0;
  background: var(--surface);
}

.beta-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.beta-status article {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(100, 245, 123, 0.08), transparent 58%),
    white;
}

.beta-status span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: var(--dark);
}

.beta-status svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.5;
}

.beta-status strong {
  font-size: 18px;
  line-height: 1.18;
}

.beta-status p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.why-now {
  background: var(--surface);
}

.why-now-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.why-now h2 {
  max-width: 760px;
  margin-top: 14px;
}

.why-now p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
  font-weight: 650;
}

.problem-stack {
  display: grid;
  gap: 12px;
}

.problem-stack article {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: var(--bg);
}

.problem-stack svg {
  width: 25px;
  height: 25px;
  color: var(--primary-strong);
  stroke-width: 2.5;
}

.problem-stack span {
  font-weight: 900;
}

.comparison {
  background: var(--bg);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.compare-grid article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: white;
}

.compare-grid article.highlight {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 84% 16%, rgba(100, 245, 123, 0.22), transparent 34%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.compare-grid strong {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.compare-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.compare-grid .highlight p {
  color: rgba(255, 255, 255, 0.74);
}

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

.simple-card {
  position: relative;
  display: flex;
  min-height: 244px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: white;
}

.feature-list .simple-card::after {
  display: none;
}

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

.simple-card h3 {
  margin-top: 24px;
}

.simple-card p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 650;
}

.icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: var(--dark-soft);
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.icon-soft {
  color: var(--blue);
  background: #eaf9ee;
}

.product-panel {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.22) 58%, rgba(255, 255, 255, 0) 72%),
    url("assets/images/login-bg.png") center right / cover no-repeat;
  box-shadow: var(--shadow);
}

.product-copy {
  align-self: center;
  max-width: 510px;
  padding: 46px 58px;
}

.product-copy h2 {
  max-width: 430px;
  margin-top: 14px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 0.95;
}

.product-copy p {
  max-width: 520px;
  margin-top: 16px;
  color: rgba(32, 37, 32, 0.74);
  font-size: 16px;
  font-weight: 700;
}

.section-spark {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--blue);
}

.section-spark svg {
  width: 28px;
  height: 28px;
  fill: rgba(23, 134, 246, 0.12);
  stroke-width: 2.4;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.check-list span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
}

.product-visual {
  position: relative;
  min-height: 420px;
}

.product-visual span {
  position: absolute;
  top: 50%;
  left: 58%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 22px;
  color: var(--primary);
  background: rgba(6, 16, 7, 0.86);
  box-shadow: 0 22px 60px rgba(6, 16, 7, 0.28);
  transform: translate(-50%, -50%);
}

.product-visual svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.3;
}

.feature-list .simple-card {
  min-height: 286px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.sub-hero {
  min-height: 92svh;
  padding: 140px 0 72px;
  background: var(--cream);
}

.feature-page .nav {
  color: var(--text);
}

.about-page .nav:not(.is-scrolled) {
  color: white;
}

.about-page .nav:not(.is-scrolled) .lang-switch {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.about-page .nav:not(.is-scrolled) .btn-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.sub-hero h1 {
  color: var(--text);
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.9;
}

.sub-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
}

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

.device-cluster {
  position: relative;
  min-height: 600px;
}

.device {
  position: absolute;
  width: min(280px, 44%);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.device-one {
  left: 4%;
  top: 12%;
  transform: rotate(-7deg);
}

.device-two {
  left: 32%;
  top: 2%;
  z-index: 2;
}

.device-three {
  right: 4%;
  top: 18%;
  transform: rotate(7deg);
}

.feature-categories {
  overflow: hidden;
  padding: 74px 0 86px;
  background: var(--bg);
}

.carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.carousel-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 58px);
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: white;
  box-shadow: 0 10px 28px rgba(7, 20, 11, 0.08);
  cursor: pointer;
}

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

.carousel-controls svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.feature-rail {
  display: grid;
  grid-auto-columns: minmax(270px, 1fr);
  grid-auto-flow: column;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  padding: 0 0 8px;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.feature-rail::-webkit-scrollbar {
  display: none;
}

.rail-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: white;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rail-card:hover {
  border-color: rgba(100, 245, 123, 0.8);
  box-shadow: 0 18px 46px rgba(7, 20, 11, 0.08);
  transform: translateY(-3px);
}

.rail-card .icon {
  margin-bottom: auto;
}

.rail-card h3 {
  margin-top: 42px;
  font-size: 24px;
}

.rail-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.showcase {
  background: var(--surface);
}

.showcase.reverse {
  background: var(--bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.showcase.reverse .showcase-copy {
  order: 2;
}

.showcase-copy h2 {
  margin-top: 16px;
}

.showcase-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.feature-bullets {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-weight: 850;
}

.feature-bullets svg {
  width: 18px;
  height: 18px;
  color: var(--primary-strong);
  stroke-width: 3;
}

.showcase-media {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 35%, rgba(100, 245, 123, 0.2), transparent 34%),
    var(--surface-soft);
  box-shadow: var(--shadow);
}

.showcase-media img {
  width: min(330px, 74%);
  border-radius: 32px;
  box-shadow: 0 22px 62px rgba(7, 20, 11, 0.18);
}

.showcase-media.double {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 30px;
}

.showcase-media.double img {
  width: min(260px, 90%);
}

.showcase-media.double img:first-child {
  transform: rotate(-6deg) translateX(22px);
}

.showcase-media.double img:last-child {
  transform: rotate(6deg) translateX(-22px);
}

.showcase-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fafff9, #effaf2 62%, #e8f3ff);
  box-shadow: var(--shadow);
}

.gpx-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: 44px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.gpx-card h3 {
  margin-top: 28px;
  font-size: clamp(44px, 5vw, 72px);
}

.gpx-card p {
  max-width: 440px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.feature-cta {
  background: #e9e0ff;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-panel h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 64px);
}

.cta-panel p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
}

.partner-hero {
  padding: 140px 0 84px;
  background: var(--cream);
}

.partner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.partner-hero h1 {
  color: var(--text);
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.9;
}

.partner-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
}

.partner-map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fafff9, #effaf2 62%, #e8f3ff);
  box-shadow: var(--shadow);
}

.about-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 116px 0 76px;
  color: white;
  background:
    radial-gradient(circle at 76% 20%, rgba(100, 245, 123, 0.16), transparent 34%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 58%, #050806 100%);
}

.about-hero-grid {
  position: relative;
  display: grid;
  min-height: 400px;
  place-items: center;
  text-align: center;
}

.about-hero h1 {
  max-width: 920px;
  margin-inline: auto;
  color: white;
  font-size: clamp(48px, 6.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.56;
  font-weight: 650;
}

.about-visual {
  position: absolute;
  inset: 44px 0 0 auto;
  z-index: 0;
  width: min(560px, 42vw);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(100, 245, 123, 0.18);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(6, 16, 7, 0.08), rgba(6, 16, 7, 0.7)),
    url("assets/images/onboarding-bg.png") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}

.about-visual::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
}

.about-visual .icon {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 78px;
  height: 78px;
  border-radius: 24px;
}

.about-hero-grid > div:first-child {
  position: relative;
  z-index: 1;
}

.about-hero .hero-actions {
  justify-content: center;
}

.legal-hero {
  padding: 132px 0 58px;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(100, 245, 123, 0.16), transparent 34%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 60%, #050806 100%);
}

.legal-hero .container {
  max-width: 980px;
}

.legal-hero h1 {
  max-width: 900px;
  color: white;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 650;
}

.legal-section {
  background: var(--surface);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.legal-meta {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.legal-meta a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 860px;
}

.legal-content article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.legal-content article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.legal-content h3 {
  margin-top: 20px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
}

.legal-content p {
  margin-top: 12px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.about-story {
  background: var(--surface);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.about-story h2 {
  max-width: 620px;
  margin-top: 14px;
}

.about-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
}

.about-principles {
  background: var(--bg);
}

.about-principles .simple-card {
  background:
    linear-gradient(180deg, rgba(100, 245, 123, 0.07), transparent 52%),
    white;
}

.about-note {
  background: var(--surface);
}

.about-note-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.95fr) auto;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  border-radius: 38px;
  padding: clamp(34px, 4.8vw, 58px);
  color: white;
  background:
    radial-gradient(circle at 86% 14%, rgba(100, 245, 123, 0.2), transparent 34%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.about-note-panel h2 {
  max-width: 520px;
  color: white;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.about-note-panel p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 650;
}

.about-note-panel .btn {
  justify-self: end;
  white-space: nowrap;
}

.partner-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-value {
  background: var(--bg);
}

.partner-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.partner-copy h2 {
  margin-top: 16px;
}

.partner-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: white;
}

.value-list .icon {
  grid-row: span 2;
}

.value-list p {
  color: var(--muted);
  font-weight: 650;
}

.partner-flow {
  background: white;
}

.partner-form-section {
  scroll-margin-top: 70px;
}

.spots {
  background: white;
}

.spot-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.spot-copy h2 {
  margin-top: 18px;
}

.spot-copy p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.spot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.spot-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(32, 37, 32, 0.08);
  border-radius: 999px;
  padding: 0 14px 0 11px;
  color: var(--text);
  background: var(--surface-soft);
  box-shadow: 0 10px 28px rgba(7, 20, 11, 0.05);
  font-size: 12px;
  font-weight: 900;
}

.spot-list svg {
  width: 17px;
  height: 17px;
  color: var(--primary-strong);
  stroke-width: 2.4;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(43, 231, 90, 0.55);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

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

.map-illustration {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fafff9, #effaf2 62%, #e8f3ff);
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(32, 37, 32, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(32, 37, 32, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(32, 37, 32, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.blue-road {
  position: absolute;
  left: 12%;
  top: 22%;
  width: 80%;
  height: 18%;
  border-radius: 999px;
  background: rgba(23, 134, 246, 0.16);
  transform: rotate(18deg);
}

.green-route {
  position: absolute;
  left: 18%;
  top: 34%;
  width: 66%;
  height: 36%;
  border: 7px solid var(--primary);
  border-top-color: var(--blue);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-10deg);
}

.map-pin {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: white;
  background: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.map-pin.start {
  left: 10%;
  bottom: 24%;
}

.map-pin.water {
  left: 14%;
  top: 20%;
  background: var(--blue);
}

.map-pin.cafe {
  right: 10%;
  top: 24%;
  color: var(--text);
  background: var(--primary);
}

.map-pin.service {
  right: 12%;
  bottom: 26%;
}

.map-pin.shop {
  left: 36%;
  bottom: 14%;
  color: var(--text);
  background: white;
}

.audience {
  background: var(--cream);
}

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

.audience-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.audience-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.audience-card div {
  padding: 28px;
}

.audience-card h3 {
  margin-top: 16px;
}

.audience-card p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 650;
}

.dashboard {
  position: relative;
  overflow: hidden;
  color: white;
  background: #050012;
  --route-pattern-color: #64f57b;
  --route-pattern-opacity: 0.035;
  --route-pattern-x: 52%;
  --route-pattern-y: 46%;
  --route-pattern-rotate: -3deg;
  --route-pattern-size: min(900px, 78vw) auto;
  --route-pattern-mask: var(--route-curve-wave);
  --route-pattern-2-opacity: 0.026;
  --route-pattern-2-x: 4%;
  --route-pattern-2-y: 88%;
  --route-pattern-2-rotate: 14deg;
  --route-pattern-2-size: min(560px, 48vw) auto;
  --route-pattern-2-mask: var(--route-curve-loop);
}

.dashboard::before,
.dashboard::after {
  position: absolute;
  inset: -16% -12%;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: var(--route-pattern-color);
  opacity: var(--route-pattern-opacity);
  transform: rotate(var(--route-pattern-rotate));
  -webkit-mask: var(--route-pattern-mask) var(--route-pattern-x) var(--route-pattern-y) / var(--route-pattern-size) no-repeat;
  mask: var(--route-pattern-mask) var(--route-pattern-x) var(--route-pattern-y) / var(--route-pattern-size) no-repeat;
}

.dashboard::after {
  opacity: var(--route-pattern-2-opacity);
  transform: rotate(var(--route-pattern-2-rotate));
  -webkit-mask: var(--route-pattern-2-mask) var(--route-pattern-2-x) var(--route-pattern-2-y) / var(--route-pattern-2-size) no-repeat;
  mask: var(--route-pattern-2-mask) var(--route-pattern-2-x) var(--route-pattern-2-y) / var(--route-pattern-2-size) no-repeat;
}

.dashboard > .container {
  position: relative;
  z-index: 1;
}

.dash-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 44px;
  background:
    linear-gradient(130deg, rgba(100, 245, 123, 0.2), transparent 46%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #11121b;
  background-size: auto, 62px 62px, 62px 62px, auto;
}

.dash-panel::before {
  position: absolute;
  inset: -22% -18%;
  content: "";
  pointer-events: none;
  opacity: 0.035;
  background: var(--primary);
  -webkit-mask: var(--route-pattern-mask) 72% 34% / min(680px, 70vw) auto no-repeat;
  mask: var(--route-pattern-mask) 72% 34% / min(680px, 70vw) auto no-repeat;
}

.dash-panel::after {
  display: none;
}

.dash-panel > * {
  position: relative;
  z-index: 1;
}

.dash-panel h2 {
  margin-top: 18px;
  color: white;
}

.dash-panel p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 650;
}

.week-card {
  display: grid;
  gap: 12px;
}

.week-card article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
  background: rgba(28, 29, 38, 0.86);
  backdrop-filter: blur(8px);
}

.week-card article:first-child {
  border-color: var(--primary);
  background: rgba(21, 48, 30, 0.9);
}

.week-card strong {
  grid-row: span 2;
  color: var(--primary);
  font-size: 18px;
}

.week-card span {
  font-weight: 900;
}

.week-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.testimonials {
  background:
    radial-gradient(circle at 82% 12%, rgba(100, 245, 123, 0.12), transparent 30%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.testimonials .container {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(100, 245, 123, 0.18);
  border-radius: 42px;
  padding: clamp(30px, 5vw, 58px);
  color: white;
  background:
    radial-gradient(circle at 76% 16%, rgba(100, 245, 123, 0.18), transparent 34%),
    linear-gradient(135deg, #071008 0%, #101b13 54%, #061007 100%);
  box-shadow: 0 34px 90px rgba(6, 16, 7, 0.18);
}

.testimonials .container::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(120deg, black, transparent 72%);
}

.testimonial-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.testimonial-top h2 {
  max-width: 850px;
  color: white;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1;
}

.testimonial-top h2 span {
  color: var(--primary);
}

.testimonial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-actions .btn {
  min-width: 310px;
  color: var(--text);
  background: var(--primary);
}

.store-badge {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  padding: 0 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.store-badge svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.rating-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid rgba(100, 245, 123, 0.24);
  border-radius: 30px;
  padding: 30px 28px;
  color: var(--primary);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(100, 245, 123, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.rating-lockup strong {
  display: block;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.rating-lockup strong span {
  font-size: 0.46em;
  letter-spacing: -0.03em;
}

.rating-lockup p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 850;
}

.laurel {
  display: none;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.stars svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke-width: 2.2;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.52fr) minmax(250px, 0.52fr);
  gap: 16px;
  margin-top: 58px;
}

.testimonial-photo {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(6, 16, 7, 0.12), rgba(6, 16, 7, 0.72)),
    url("assets/images/onboarding-bg.png") center / cover no-repeat;
  box-shadow: inset 0 -80px 120px rgba(6, 16, 7, 0.5);
}

.metric-stack {
  display: grid;
  gap: 16px;
}

.metric-card {
  display: grid;
  min-height: 207px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric-card.lavender {
  min-height: 430px;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.65), transparent 30%),
    linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
}

.metric-card.warm {
  background: rgba(255, 255, 255, 0.09);
}

.metric-card.sage {
  color: var(--text);
  background:
    linear-gradient(180deg, #f5fff6 0%, #d8f7df 100%);
}

.metric-card strong {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.metric-card p {
  max-width: 260px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 650;
}

.metric-card.lavender p,
.metric-card.sage p {
  color: rgba(32, 37, 32, 0.72);
}

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

.price-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
}

.price-card.featured {
  background: var(--primary);
}

.plan {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--bg);
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-top: 22px;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 650;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--text);
}

.waitlist {
  color: white;
  background: var(--dark);
  --route-pattern-color: #64f57b;
  --route-pattern-opacity: 0.042;
  --route-pattern-x: 92%;
  --route-pattern-y: 28%;
  --route-pattern-rotate: 6deg;
  --route-pattern-size: min(620px, 58vw) auto;
  --route-pattern-mask: var(--route-curve-wave);
  --route-pattern-2-opacity: 0.03;
  --route-pattern-2-x: 4%;
  --route-pattern-2-y: 72%;
  --route-pattern-2-rotate: -14deg;
  --route-pattern-2-size: min(500px, 48vw) auto;
  --route-pattern-2-mask: var(--route-curve-loop);
}

.waitlist::before {
  opacity: var(--route-pattern-opacity);
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.waitlist h2 {
  margin-top: 18px;
  color: white;
}

.waitlist p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 650;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--text);
  background: white;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.waitlist-form .form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--text);
  background: white;
  outline: none;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--primary-strong);
  box-shadow: 0 0 0 4px rgba(100, 245, 123, 0.18);
}

.waitlist-form button {
  width: 100%;
}

.waitlist-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.waitlist-form p {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: white;
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 34px;
  color: white;
  background:
    radial-gradient(circle at 18% 12%, rgba(100, 245, 123, 0.16), transparent 34%),
    linear-gradient(135deg, #061007 0%, #101b13 54%, #050806 100%);
}

.footer::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: var(--primary);
  opacity: 0.032;
  -webkit-mask: var(--route-curve-snake) left 28px top 18px / min(560px, 52vw) auto no-repeat;
  mask: var(--route-curve-snake) left 28px top 18px / min(560px, 52vw) auto no-repeat;
}

.footer::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: var(--primary);
  opacity: 0.026;
  transform: rotate(-8deg);
  -webkit-mask: var(--route-curve-wave) right 34px bottom 18px / min(480px, 46vw) auto no-repeat;
  mask: var(--route-curve-wave) right 34px bottom 18px / min(480px, 46vw) auto no-repeat;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.3fr);
  gap: 54px;
}

.footer-brand {
  max-width: 420px;
}

.footer p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 650;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.footer-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  color: var(--text);
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 4px;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.footer-column strong {
  margin-bottom: 6px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-column a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .nav > .nav-links,
  .nav > .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .route-card-row,
  .beta-status-grid,
  .simple-grid,
  .why-now-grid,
  .compare-grid,
  .product-panel,
  .sub-hero-grid,
  .partner-hero-grid,
  .about-hero-grid,
  .about-story-grid,
  .about-note-panel,
  .legal-layout,
  .partner-type-grid,
  .partner-value-grid,
  .showcase-grid,
  .spot-panel,
  .audience-grid,
  .dash-panel,
  .testimonial-top,
  .testimonial-grid,
  .pricing-grid,
  .waitlist-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .dash-panel {
    padding: 28px;
  }

  .product-panel {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/login-bg.png") center / cover no-repeat;
  }

  .product-copy {
    padding: 38px;
  }

  .product-visual {
    min-height: 260px;
  }

  .device-cluster {
    min-height: 520px;
  }

  .showcase.reverse .showcase-copy {
    order: initial;
  }

  .showcase-media,
  .showcase-map,
  .partner-map-card,
  .about-visual,
  .gpx-card {
    min-height: 360px;
  }

  .testimonial-grid {
    margin-top: 56px;
  }

  .metric-card.lavender,
  .testimonial-photo {
    min-height: 330px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 15px;
  }

  .nav .btn {
    min-height: 40px;
    padding: 0 13px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 84px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .section {
    padding: 72px 0;
  }

  .hero-content {
    padding-top: 84px;
  }

  .sub-hero {
    min-height: auto;
    padding: 108px 0 58px;
  }

  .device-cluster {
    min-height: 430px;
  }

  .device {
    width: 52%;
  }

  .device-one {
    left: 0;
  }

  .device-two {
    left: 24%;
  }

  .device-three {
    right: 0;
  }

  .feature-rail {
    width: min(100% - 28px, 1180px);
    grid-auto-columns: minmax(165px, 1fr);
  }

  .partner-hero {
    padding: 108px 0 58px;
  }

  .about-hero {
    min-height: auto;
    padding: 108px 0 66px;
  }

  .about-hero-grid {
    min-height: auto;
  }

  .about-visual {
    inset: auto -18% 24px auto;
    width: min(380px, 70vw);
    min-height: 300px;
    border-radius: 30px;
    opacity: 0.26;
  }

  .legal-hero {
    padding: 108px 0 52px;
  }

  .legal-meta {
    position: static;
  }

  .route-card-row {
    gap: 12px;
  }

  .compare-grid article,
  .beta-status article {
    min-height: auto;
  }

  .route-tile,
  .route-tile.featured {
    min-height: 240px;
    padding: 22px;
  }

  .simple-card,
  .price-card {
    min-height: auto;
    padding: 22px;
  }

  .product-copy {
    padding: 28px;
  }

  .product-visual {
    min-height: 220px;
  }

  .product-visual span {
    left: 50%;
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .map-illustration {
    min-height: 340px;
  }

  .showcase-media,
  .showcase-map,
  .partner-map-card,
  .about-visual,
  .gpx-card {
    min-height: 320px;
  }

  .value-list article {
    grid-template-columns: 1fr;
  }

  .value-list .icon {
    grid-row: auto;
  }

  .showcase-media.double {
    padding: 18px;
  }

  .showcase-media.double img:first-child,
  .showcase-media.double img:last-child {
    transform: none;
  }

  .map-pin.shop {
    display: none;
  }

  .week-card article {
    grid-template-columns: 1fr;
  }

  .testimonial-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .store-badge {
    flex: 1 1 150px;
    justify-content: center;
  }

  .rating-lockup {
    gap: 10px;
  }

  .laurel {
    font-size: 72px;
  }

  .testimonial-photo,
  .metric-card.lavender,
  .metric-card {
    min-height: 230px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .footer-nav {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
