:root {
  --bg: #f4f5ee;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #12281f;
  --text-muted: #526157;
  --line: rgba(18, 40, 31, 0.12);
  --brand: #2d7a4c;
  --brand-deep: #1d5b38;
  --accent: #e8f3cb;
  --shadow: 0 24px 60px rgba(18, 40, 31, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(173, 215, 111, 0.28), transparent 28%),
    linear-gradient(180deg, #fbfcf7 0%, var(--bg) 100%);
  overflow-x: clip;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 252, 247, 0.82);
  border-bottom: 1px solid rgba(18, 40, 31, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(45, 122, 76, 0.16));
}

.brand-wordmark {
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(18, 40, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(18, 40, 31, 0.08);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.language-link.active {
  background: rgba(45, 122, 76, 0.12);
  color: var(--brand-deep);
}

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

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

.nav-links a.active {
  color: var(--text);
  font-weight: 700;
}

.nav-links .nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6b726 0%, #d99c17 100%);
  color: #12281f;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(194, 139, 24, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-links .nav-cta:hover {
  color: #12281f;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(194, 139, 24, 0.36);
}

.nav-links .nav-cta.active {
  color: #12281f;
}

.nav-select-wrap {
  display: none;
  min-width: 0;
  margin: 0;
}

.nav-select {
  width: 100%;
  min-height: 2.85rem;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.72rem 2.85rem 0.72rem 0.95rem;
  background:
    linear-gradient(45deg, transparent 50%, rgba(18, 40, 31, 0.68) 50%) calc(100% - 18px) calc(50% - 3px) / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(18, 40, 31, 0.68) 50%, transparent 50%) calc(100% - 13px) calc(50% - 3px) / 7px 7px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 241, 0.98));
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(18, 40, 31, 0.08);
}

.nav-select:focus-visible {
  outline: 2px solid rgba(45, 122, 76, 0.42);
  outline-offset: 3px;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 18px 34px rgba(34, 95, 58, 0.22);
}

.btn.btn-secondary {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.btn.btn-install {
  color: #12281f;
  background: linear-gradient(135deg, #f6b726 0%, #d99c17 100%);
  box-shadow: 0 10px 22px rgba(194, 139, 24, 0.3);
}

.btn.btn-install:hover,
.btn.btn-install:focus-visible {
  color: #12281f;
}

.btn.btn-store {
  color: #12281f;
  background: linear-gradient(135deg, #f6b726 0%, #d99c17 100%);
  padding: 10px 22px 10px 16px;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(194, 139, 24, 0.32);
}

.btn.btn-store:hover,
.btn.btn-store:focus-visible {
  color: #12281f;
}

.btn-store-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: #12281f;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
}

.btn-store-sub {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.02em;
}

.btn-store-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.btn-row--stores {
  gap: 10px;
}

.hero {
  padding: 48px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.hero-copy,
.hero-media,
.section-card,
.info-card,
.step-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  border-radius: 36px;
  padding: 50px 42px 44px;
  display: grid;
  align-content: start;
  gap: 0;
}

.hero-copy-main {
  display: grid;
  align-content: start;
  gap: 0;
}

.hero-copy-footer {
  display: grid;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}

.hero h1,
.section-title {
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
}

.hero h1 span {
  color: var(--brand);
}

.hero p {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 41rem;
}

.hero .hero-price-meta {
  display: inline-block;
  margin: 14px 0 0;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(232, 243, 203, 0.6);
  border: 1px solid rgba(45, 122, 76, 0.12);
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  max-width: 100%;
  line-height: 1.45;
  white-space: normal;
  text-wrap: balance;
}

.hero .hero-price-meta strong {
  color: var(--brand-deep);
  font-weight: 700;
}

.hero .hero-trust {
  display: block;
  margin: 16px 0 0;
  padding-left: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.005em;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.hero-point {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 17px 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(242, 248, 227, 0.96), rgba(233, 243, 213, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-point strong {
  display: block;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-media {
  border-radius: 36px;
  overflow: hidden;
  min-height: 540px;
  position: relative;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(221, 235, 190, 0.48), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(135deg, #173828 0%, #2c6f48 56%, #5f9770 100%);
}

.hero-photo--garden {
  background:
    radial-gradient(circle at top right, rgba(232, 243, 203, 0.2), transparent 26%),
    linear-gradient(140deg, rgba(6, 27, 18, 0.74), rgba(14, 52, 34, 0.22)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23214d36'/%3E%3Cstop offset='1' stop-color='%236a9a6d'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='800' fill='url(%23g)'/%3E%3Cg opacity='.22' fill='%23f6f7ef'%3E%3Ccircle cx='130' cy='160' r='80'/%3E%3Ccircle cx='610' cy='110' r='70'/%3E%3Ccircle cx='510' cy='520' r='92'/%3E%3C/g%3E%3Cg opacity='.8'%3E%3Cpath d='M128 520c44-92 132-153 236-153 79 0 162 38 223 110-40 96-131 163-238 163-89 0-165-44-221-120z' fill='%239fd28c'/%3E%3Cpath d='M261 297c78 46 128 125 134 224-108-28-191-103-227-202 27-14 60-22 93-22z' fill='%236aa15f'/%3E%3Cpath d='M446 283c54 19 103 55 137 106-102 25-213 5-302-54 42-38 103-62 165-62z' fill='%23dce9b8'/%3E%3Cpath d='M204 604c40-56 94-100 165-123-12 86-62 163-134 214-34-17-61-50-31-91z' fill='%233a7d53'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
}

.hero-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hero-badge .pill,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-panel {
  position: absolute;
  inset: auto 28px 28px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(10, 28, 20, 0.78);
  color: rgba(255, 255, 255, 0.92);
}

.hero-panel h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.55;
}

.support-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  align-items: start;
}

.support-copy {
  padding: 46px 38px 38px;
}

.support-copy .btn-row {
  margin-bottom: 2px;
}

.support-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2px;
}

.support-points .hero-point {
  padding: 18px;
  border-radius: 20px;
}

.support-points .hero-point strong {
  font-size: 1rem;
}

.support-hero-card {
  display: grid;
  gap: 18px;
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(232, 243, 203, 0.28), transparent 30%),
    linear-gradient(145deg, #173828 0%, #244d36 58%, #4f805b 100%);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.92);
}

.support-hero-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.support-hero-card-header .pill {
  color: var(--text);
}

.support-hero-card-main {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(10, 28, 20, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-hero-card-main h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.support-hero-card-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.support-topic-list {
  display: grid;
  gap: 10px;
}

.support-topic-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.support-topic-list strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.support-topic-list span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-media--phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(218, 238, 173, 0.26), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #173828 0%, #234e35 56%, #4c7957 100%);
}

.hero-media--phone::before,
.hero-media--phone::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-media--phone::before {
  top: 58px;
  left: 26px;
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-media--phone::after {
  right: 26px;
  bottom: 164px;
  width: 132px;
  height: 132px;
  background: rgba(232, 243, 203, 0.08);
}

.hero-phone-shell,
.hero-panel--phone {
  position: relative;
  z-index: 1;
}

.hero-phone-shell {
  display: flex;
  justify-content: center;
}

.hero-phone {
  width: min(100%, 356px);
  padding: 11px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #29292c 0%, #0f1012 56%, #050507 100%);
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.42),
    0 10px 24px rgba(4, 6, 7, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-phone-notch {
  width: 42%;
  height: 28px;
  margin: 0 auto 12px;
  border-radius: 0 0 18px 18px;
  background: #020304;
}

.phone-screen {
  position: relative;
  border-radius: 32px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(246, 249, 239, 0.96) 0%, rgba(233, 240, 223, 0.94) 100%);
  display: grid;
  gap: 14px;
  min-height: 684px;
}

.phone-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill--screen {
  background: rgba(29, 91, 56, 0.1);
  color: var(--brand-deep);
}

.phone-status {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.phone-stage-viewport {
  position: relative;
  min-height: 618px;
}

.phone-stage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  align-content: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 520ms;
}

.phone-stage.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.phone-stage-body {
  display: grid;
  align-content: start;
  min-height: 0;
}

.phone-story-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.phone-story-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(29, 91, 56, 0.22);
  transform-origin: center;
  transition:
    width 280ms ease,
    background-color 280ms ease,
    transform 280ms ease;
}

.phone-story-dot.is-active {
  width: 24px;
  background: rgba(29, 91, 56, 0.92);
}

.sun-reveal-card,
.comparison-area-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 40, 31, 0.08);
  box-shadow: 0 14px 30px rgba(18, 40, 31, 0.1);
}

.sun-reveal-card {
  border-radius: 24px;
  padding: 14px;
  display: grid;
  gap: 10px;
  animation: plot-card-breathe 7s ease-in-out infinite;
}

.phone-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.phone-card-header h2 {
  margin: 0 0 4px;
  color: #1c1c1e;
  font-size: 1.02rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.phone-card-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.3;
}

.sun-badge {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 8px;
  background: #d97706;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(217, 119, 6, 0.2);
}

.sun-filter-row,
.sun-time-row {
  display: flex;
  gap: 6px;
}

.sun-filter-row span,
.sun-time-row span {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-radius: 999px;
  padding: 6px 5px;
  background: #f3f4f6;
  color: #526157;
  font-size: 0.54rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.sun-filter-row .active,
.sun-time-row .active {
  background: #2d4f38;
  color: #fff;
}

.sun-time-row {
  flex-wrap: wrap;
}

.sun-time-row span {
  flex: 1 0 calc(50% - 6px);
}

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

.sun-stat-grid div {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(45, 79, 56, 0.08);
  border-radius: 14px;
  background: #f8faf8;
}

.sun-stat-grid small,
.comparison-placeholder small {
  display: block;
  color: #8e8e93;
  font-size: 0.57rem;
  font-weight: 650;
  line-height: 1.2;
}

.sun-stat-grid strong {
  display: block;
  margin-top: 3px;
  color: #1c1c1e;
  font-size: 0.78rem;
  line-height: 1.1;
}

.sun-heatmap {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 3px;
  width: 72%;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #f8fafc;
}

.sun-heatmap span {
  aspect-ratio: 1;
  border-radius: 4px;
}

.sun-heatmap .void {
  background: transparent;
}

.sun-heatmap .cool {
  background: #93c5fd;
}

.sun-heatmap .mild {
  background: #fde68a;
}

.sun-heatmap .sun {
  background: #fdba74;
}

.sun-heatmap .hot {
  background: #f97316;
}

.sun-legend {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  color: #8e8e93;
  font-size: 0.6rem;
  font-weight: 700;
}

.sun-legend i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e2e8f0, #c7d2fe, #93c5fd, #fde68a, #fdba74, #f97316);
}

.comparison-mock {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(250, 250, 248, 0.98), rgba(238, 242, 232, 0.96));
  border: 1px solid rgba(18, 40, 31, 0.08);
  box-shadow: 0 16px 34px rgba(18, 40, 31, 0.1);
}

.comparison-tabs {
  display: flex;
  gap: 8px;
  padding: 14px 14px 8px;
  overflow: hidden;
}

.comparison-tabs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: #1c1c1e;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(26, 51, 34, 0.08);
}

.comparison-tabs .active {
  color: #2d4f38;
}

.comparison-tabs i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2d4f38;
}

.comparison-scroll {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 8px 14px 98px;
  overflow: hidden;
}

.comparison-area-card {
  overflow: hidden;
  border-radius: 22px;
}

.comparison-area-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
}

.comparison-area-card header strong {
  color: #1c1c1e;
  font-size: 0.86rem;
}

.comparison-area-card header span {
  width: 9px;
  height: 9px;
  border-right: 2px solid #2d4f38;
  border-bottom: 2px solid #2d4f38;
  transform: rotate(-45deg);
}

.before-after-yard {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #88a16d;
}

.yard-current,
.yard-proposed {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.yard-current {
  z-index: 1;
  width: 50%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 65%),
    linear-gradient(180deg, #c8ddeb 0 25%, transparent 25%),
    linear-gradient(90deg, #c5b094 0 20%, transparent 20%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(77, 98, 70, 0.45) 18px 22px),
    linear-gradient(180deg, transparent 0 38%, #6f9863 38% 100%);
}

.yard-current::before {
  content: "";
  position: absolute;
  left: -15px;
  bottom: 35px;
  width: 118px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12px 13px, #6f9863 0 10px, transparent 11px),
    radial-gradient(circle at 36px 13px, #6f9863 0 10px, transparent 11px),
    radial-gradient(circle at 60px 13px, #6f9863 0 10px, transparent 11px),
    radial-gradient(circle at 84px 13px, #6f9863 0 10px, transparent 11px);
}

.yard-proposed {
  background:
    radial-gradient(circle at 82% 28%, #5f9147 0 31px, transparent 32px),
    radial-gradient(circle at 82% 65%, #78a35e 0 11px, transparent 12px),
    linear-gradient(180deg, #c7dded 0 25%, transparent 25%),
    linear-gradient(90deg, transparent 0 49%, #d8caa8 49% 100%),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(131, 105, 68, 0.22) 23px 25px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(131, 105, 68, 0.18) 23px 25px),
    linear-gradient(180deg, transparent 0 38%, #8ab06d 38% 100%);
}

.yard-proposed::before {
  content: "";
  position: absolute;
  left: 42%;
  bottom: 0;
  width: 42px;
  height: 66px;
  background: #9ca691;
}

.before-after-yard em {
  position: absolute;
  bottom: 10px;
  z-index: 3;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(28, 28, 30, 0.52);
  color: #fff;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
}

.yard-current em {
  left: 10px;
}

.yard-proposed em {
  right: 10px;
  background: rgba(45, 79, 56, 0.72);
}

.yard-slider {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 5;
  width: 2px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-1px);
}

.yard-slider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #4caf50;
  box-shadow: 0 8px 16px rgba(18, 40, 31, 0.24);
  transform: translate(-50%, -50%);
}

.yard-slider span::before,
.yard-slider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.yard-slider span::before {
  left: 8px;
  transform: translateY(-50%) rotate(-45deg);
}

.yard-slider span::after {
  right: 8px;
  transform: translateY(-50%) rotate(135deg);
}

.comparison-placeholder {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 142px;
  padding: 24px 18px 26px;
  background: #f2f2f0;
  text-align: center;
}

.comparison-placeholder-icon {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #d1d5db;
}

.comparison-placeholder-icon::before {
  content: "";
  display: block;
  width: 19px;
  height: 15px;
  margin: auto;
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 48%, #8e8e93 50% 62%, transparent 64%),
    linear-gradient(45deg, transparent 44%, #8e8e93 46% 62%, transparent 64%),
    #f9fafb;
}

.comparison-placeholder strong {
  color: #1c1c1e;
  font-size: 0.84rem;
}

.comparison-action-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 12px 18px 18px;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -12px 28px rgba(26, 51, 34, 0.12);
}

.phone-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.phone-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
}

.phone-dots .active {
  width: 17px;
  background: #2d4f38;
}

.comparison-share-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  padding: 13px 14px;
  background: #2d4f38;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.comparison-share-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.comparison-share-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.comparison-share-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 3px;
  height: 7px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.plot-preview-card {
  border-radius: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 40, 31, 0.08);
  box-shadow: 0 16px 34px rgba(18, 40, 31, 0.1);
  display: grid;
  gap: 12px;
  animation: plot-card-breathe 7s ease-in-out infinite;
}

.plot-status-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 243, 203, 0.98), rgba(215, 233, 181, 0.94));
  border: 1px solid rgba(29, 91, 56, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 10px 18px rgba(18, 40, 31, 0.06);
}

.plot-status-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(29, 91, 56, 0.12);
  color: var(--brand-deep);
  flex: 0 0 auto;
}

.plot-status-banner-icon svg {
  width: 18px;
  height: 18px;
}

.plot-status-banner-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.plot-status-banner-copy strong,
.plot-status-banner-copy span {
  display: block;
}

.plot-status-banner-copy strong {
  font-size: 0.84rem;
  line-height: 1.1;
  color: var(--brand-deep);
}

.plot-status-banner-copy span {
  font-size: 0.72rem;
  line-height: 1.25;
  color: rgba(16, 38, 27, 0.72);
}

.plot-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 250, 241, 0.96), rgba(237, 244, 224, 0.92));
  border: 1px solid rgba(29, 91, 56, 0.08);
}

.plot-address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(29, 91, 56, 0.1);
  flex: 0 0 auto;
}

.plot-address-icon svg {
  width: 18px;
  height: 18px;
}

.plot-address-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.plot-address-copy strong,
.plot-address-copy span {
  display: block;
}

.plot-address-copy strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.plot-address-copy span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.plot-diagram-card {
  position: relative;
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(244, 249, 235, 0.98), rgba(228, 238, 211, 0.94));
  border: 1px solid rgba(29, 91, 56, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 24px rgba(18, 40, 31, 0.06);
}

.plot-diagram-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 242, 0.96));
  min-height: 190px;
  box-shadow: inset 0 -1px 0 rgba(18, 40, 31, 0.05);
}

.plot-diagram-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 22%, rgba(220, 233, 190, 0.32), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(29, 91, 56, 0.04));
  opacity: 0.9;
}

.plot-diagram-reference-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(29, 91, 56, 0.06);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 26px rgba(18, 40, 31, 0.08);
}

.plot-diagram-reference-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.26), transparent 18%),
    linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.22) 36%, transparent 58%);
  opacity: 0.9;
  pointer-events: none;
  animation: plot-reference-sheen 8s ease-in-out infinite;
}

.plot-diagram-reference {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  animation: plot-reference-drift 8s ease-in-out infinite;
}

.plot-diagram-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(18, 40, 31, 0.1));
}

.plot-diagram-svg--scenario {
  overflow: visible;
}

.plot-road {
  opacity: 0.72;
}

.plot-road--line {
  stroke-linecap: round;
  stroke-dasharray: 12 10;
  animation: road-line-drift 7s linear infinite;
}

.plot-footpath {
  fill: none;
  opacity: 0.92;
}

.plot-footpath-outline {
  animation: footpath-dash 7s linear infinite;
}

.plot-footpath-center {
  animation: road-line-drift 7s linear infinite;
}

.plot-scene {
  transform-origin: 58% 58%;
  animation: plot-scene-settle 7s ease-in-out infinite;
}

.plot-zone {
  stroke: rgba(36, 79, 55, 0.14);
  stroke-width: 8;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: zone-breathe 7s ease-in-out infinite;
}

.plot-zone--back {
  animation-delay: 0s;
}

.plot-zone--east {
  animation-delay: 0.5s;
}

.plot-zone--west {
  animation-delay: 0.9s;
}

.plot-zone--front {
  animation-delay: 1.3s;
}

.plot-zone--parking {
  animation-delay: 1.7s;
}

.plot-boundary {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plot-house-shape {
  filter: drop-shadow(0 8px 12px rgba(18, 40, 31, 0.14));
}

.plot-route-path {
  animation: route-dash 4.8s linear infinite;
}

.plot-zone-copy {
  font-family: inherit;
}

.plot-zone-title,
.plot-house-copy,
.plot-zone-area {
  paint-order: stroke fill;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-linejoin: round;
}

.plot-zone-title {
  fill: #1d2733;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  stroke-width: 4px;
}

.plot-zone-area {
  fill: #45515f;
  font-size: 13px;
  font-weight: 700;
  stroke-width: 3px;
}

.plot-house-copy {
  fill: #202838;
  font-size: 21px;
  font-weight: 800;
  stroke-width: 4px;
}

.plot-scenario-tag {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 2;
  min-height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 1.05rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #315e40;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 14px 28px rgba(25, 56, 38, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: scenario-tag-pulse 7s ease-in-out infinite;
}

.plot-diagram-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.plot-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.plot-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.plot-legend-dot--house {
  background: #e6b12d;
}

.plot-legend-dot--garden {
  background: #9bcb72;
}

.plot-legend-dot--route {
  background: #3f744c;
}

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

.plot-stat {
  display: grid;
  gap: 3px;
  padding: 11px 10px;
  border-radius: 16px;
  background: rgba(244, 248, 237, 0.92);
  border: 1px solid rgba(29, 91, 56, 0.08);
  text-align: center;
}

.plot-stat strong {
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.plot-stat span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.discovery-screen {
  display: grid;
  gap: 12px;
}

.discovery-search {
  display: flex;
  align-items: center;
  min-height: 2.9rem;
  border-radius: 16px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 40, 31, 0.08);
  color: #97a096;
  font-size: 0.84rem;
  font-weight: 600;
}

.discovery-search::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='6.5' stroke='%23818d81' stroke-width='2'/%3E%3Cpath d='M16 16l4 4' stroke='%23818d81' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.discovery-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.discovery-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border-radius: 999px;
  padding: 0.35rem 0.78rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.discovery-chip--active {
  background: rgba(232, 243, 203, 0.9);
  color: var(--brand-deep);
}

.discovery-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 40, 31, 0.08);
  box-shadow: 0 18px 36px rgba(18, 40, 31, 0.11);
}

.discovery-card-media {
  position: relative;
  height: 164px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 12%),
    radial-gradient(circle at 16% 60%, rgba(121, 155, 112, 0.9), rgba(121, 155, 112, 0) 13%),
    radial-gradient(circle at 86% 56%, rgba(121, 155, 112, 0.82), rgba(121, 155, 112, 0) 12%),
    linear-gradient(180deg, rgba(219, 233, 236, 0.98) 0%, rgba(219, 233, 236, 0.98) 46%, rgba(108, 129, 135, 0.88) 46%, rgba(108, 129, 135, 0.88) 100%);
}

.discovery-card-media::before {
  content: "";
  position: absolute;
  left: 38px;
  bottom: 22px;
  width: 150px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 18px rgba(33, 63, 49, 0.12);
  transform: rotate(-8deg);
}

.discovery-card-media::after {
  content: "";
  position: absolute;
  left: 118px;
  bottom: 16px;
  width: 126px;
  height: 5px;
  border-radius: 999px;
  background: rgba(37, 71, 55, 0.16);
  transform: rotate(-8deg);
}

.discovery-label,
.discovery-badge {
  position: absolute;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
  padding: 0.35rem 0.76rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.discovery-label {
  left: 14px;
  background: rgba(232, 243, 203, 0.92);
  color: var(--brand-deep);
}

.discovery-badge {
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-deep);
}

.discovery-card-body {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
}

.discovery-card h2 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.discovery-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.discovery-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.discovery-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  border-radius: 999px;
  padding: 0.26rem 0.72rem;
  background: rgba(242, 246, 236, 0.96);
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.discovery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 18px;
  padding: 0.72rem 1rem;
  background: #557c5a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 24px rgba(39, 78, 56, 0.18);
}

.discovery-cta::after {
  content: "->";
  margin-left: 10px;
  font-size: 1rem;
  line-height: 1;
}

.discovery-note {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.vision-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 40, 31, 0.08);
  box-shadow: 0 18px 36px rgba(18, 40, 31, 0.12);
  animation: vision-card-lift 7s ease-in-out infinite;
}

.vision-card-media {
  position: relative;
  height: 188px;
}

.vision-card-media--current {
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(155deg, rgba(14, 39, 26, 0.88), rgba(37, 73, 49, 0.58)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 280'%3E%3Crect width='480' height='280' fill='%2373967a'/%3E%3Crect x='34' y='54' width='168' height='174' rx='18' fill='%239ba590'/%3E%3Crect x='214' y='40' width='210' height='92' rx='18' fill='%23858f7d'/%3E%3Crect x='228' y='146' width='182' height='82' rx='18' fill='%236a745f'/%3E%3Cpath d='M0 218c82-44 164-66 246-66 66 0 144 18 234 56v72H0z' fill='%2349624e'/%3E%3Cpath d='M160 0h26v280h-26z' fill='%23596454' opacity='.84'/%3E%3Cpath d='M316 0h18v280h-18z' fill='%23525d50' opacity='.72'/%3E%3C/svg%3E") center / cover no-repeat;
}

.vision-card-media--future {
  background:
    linear-gradient(180deg, rgba(201, 225, 246, 0.98) 0%, rgba(201, 225, 246, 0.98) 36%, rgba(140, 177, 118, 0.92) 36%, rgba(102, 140, 85, 0.94) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 320'%3E%3Crect width='480' height='320' fill='%23cfe1f3'/%3E%3Crect x='0' y='110' width='480' height='210' fill='%2385aa75'/%3E%3Crect x='0' y='122' width='48' height='198' fill='%23dcc3a7'/%3E%3Crect x='47' y='122' width='12' height='198' fill='%23c7a686'/%3E%3Crect x='58' y='122' width='352' height='120' fill='%23c8a883'/%3E%3Cpath d='M58 154h352M58 190h352M58 226h352' stroke='%23b5916d' stroke-width='6' opacity='.9'/%3E%3Cpath d='M95 122v120M132 122v120M169 122v120M206 122v120M243 122v120M280 122v120M317 122v120M354 122v120M391 122v120' stroke='%23b5916d' stroke-width='6' opacity='.9'/%3E%3Cg fill='%23799f60'%3E%3Ccircle cx='18' cy='214' r='28'/%3E%3Ccircle cx='60' cy='214' r='28'/%3E%3Ccircle cx='102' cy='214' r='28'/%3E%3Ccircle cx='144' cy='214' r='28'/%3E%3Ccircle cx='186' cy='214' r='28'/%3E%3Ccircle cx='228' cy='214' r='28'/%3E%3Ccircle cx='270' cy='214' r='28'/%3E%3Ccircle cx='312' cy='214' r='28'/%3E%3C/g%3E%3Crect x='161' y='268' width='218' height='108' rx='6' fill='%238e8882'/%3E%3Cpath d='M161 304h218M161 340h218M209 268v108M257 268v108M305 268v108' stroke='%2377726d' stroke-width='4' opacity='.55'/%3E%3Cg fill='%23869f73' opacity='.86'%3E%3Ccircle cx='22' cy='292' r='32'/%3E%3Ccircle cx='82' cy='326' r='26' opacity='.72'/%3E%3Ccircle cx='432' cy='302' r='38'/%3E%3Ccircle cx='470' cy='340' r='28' opacity='.76'/%3E%3C/g%3E%3Cg fill='%2389a66e' opacity='.52'%3E%3Cpath d='M18 278l22-58 8 14-10 44h52l-78-2z'/%3E%3Cpath d='M440 280l20-54 10 12-8 42h38l-60 0z'/%3E%3C/g%3E%3Cg%3E%3Ccircle cx='450' cy='112' r='70' fill='%235a8350' opacity='.9'/%3E%3Ccircle cx='422' cy='96' r='62' fill='%2375a168' opacity='.88'/%3E%3Ccircle cx='472' cy='84' r='64' fill='%2387b074' opacity='.86'/%3E%3Crect x='470' y='134' width='20' height='72' fill='%238c6c56'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
  animation: vision-scene-pan 9s ease-in-out infinite;
}

.vision-card-media--future::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(18, 40, 31, 0.14) 100%);
  pointer-events: none;
}

.vision-card--compact .vision-card-media {
  height: 152px;
}

.vision-card-body {
  display: grid;
  gap: 14px;
  padding: 18px 18px 20px;
}

.vision-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
  background: rgba(232, 243, 203, 0.82);
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vision-card-topline {
  display: flex;
  align-items: center;
}

.vision-budget {
  position: absolute;
  right: 18px;
  top: 146px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  background: #5d9964;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow:
    0 10px 22px rgba(37, 82, 56, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  animation: budget-pulse 7s ease-in-out infinite;
}

.vision-card--compact .vision-budget {
  top: 110px;
  right: 16px;
  min-height: 2.3rem;
  padding: 0.4rem 0.92rem;
  font-size: 0.76rem;
}

.vision-card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.vision-card--compact h2 {
  margin-bottom: 2px;
  font-size: 1.04rem;
}

.vision-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.vision-card--compact p {
  font-size: 0.79rem;
  line-height: 1.52;
}

.vision-area-row {
  display: flex;
}

.vision-area-pill {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  border-radius: 16px;
  padding: 0.65rem 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 40, 31, 0.1);
  color: #58616d;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.vision-area-pill::after {
  content: "›";
  margin-left: auto;
  color: var(--brand-deep);
  font-size: 1.5rem;
  line-height: 1;
}

.vision-question {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 800;
  color: #2b3a33;
}

.vision-question::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='5' y='4' width='14' height='16' rx='2.5' stroke='%23577761' stroke-width='2'/%3E%3Cpath d='M9 4.5h6' stroke='%23577761' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.vision-actions {
  display: grid;
  gap: 12px;
}

.vision-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  border-radius: 18px;
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.vision-btn:hover,
.vision-btn:focus-visible {
  transform: translateY(-1px);
}

.vision-btn--ghost {
  border: 2px solid rgba(87, 119, 97, 0.75);
  color: #577761;
  background: rgba(255, 255, 255, 0.9);
}

.vision-btn--primary {
  border: 2px solid #557c5a;
  color: #fff;
  background: #557c5a;
  box-shadow: 0 12px 24px rgba(39, 78, 56, 0.18);
}

@keyframes phone-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes plot-card-breathe {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 16px 34px rgba(18, 40, 31, 0.1);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(18, 40, 31, 0.15);
  }
}

@keyframes plot-reference-drift {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.015) translateY(-2px);
  }
}

@keyframes plot-reference-sheen {
  0%, 100% {
    transform: translateX(-18%);
    opacity: 0.72;
  }
  50% {
    transform: translateX(8%);
    opacity: 0.94;
  }
}

@keyframes plot-scene-settle {
  0%, 100% {
    transform: translate(-20px, -126px) scale(0.63);
  }
  25% {
    transform: translate(-20px, -124px) scale(0.632);
  }
  55% {
    transform: translate(-20px, -121px) scale(0.635);
  }
  75% {
    transform: translate(-20px, -123px) scale(0.632);
  }
}

@keyframes zone-breathe {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.88;
  }
}

@keyframes road-line-drift {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes footpath-dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -22;
  }
}

@keyframes route-dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -30;
  }
}

@keyframes scenario-tag-pulse {
  0%, 100% {
    box-shadow:
      0 14px 28px rgba(25, 56, 38, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }
  50% {
    box-shadow:
      0 18px 34px rgba(25, 56, 38, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  }
}

@keyframes vision-card-lift {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 36px rgba(18, 40, 31, 0.12);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(18, 40, 31, 0.16);
  }
}

@keyframes vision-scene-pan {
  0%, 100% {
    background-position: center center, center center;
  }
  50% {
    background-position: center center, center -4px;
  }
}

@keyframes budget-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 10px 22px rgba(37, 82, 56, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 14px 30px rgba(37, 82, 56, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  }
}

@keyframes arrow-dot-ripple {
  0%, 65%, 100% {
    background: rgba(29, 91, 56, 0.28);
    transform: scale(1);
  }
  25% {
    background: rgba(29, 91, 56, 0.95);
    transform: scale(1.35);
  }
}

.hero-phone {
  animation: phone-float 7s ease-in-out infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone,
  .plot-preview-card,
  .plot-diagram-reference,
  .plot-diagram-reference-frame::after,
  .plot-road--line,
  .plot-footpath-outline,
  .plot-scene,
  .plot-zone,
  .plot-route-path,
  .plot-scenario-tag,
  .vision-card,
  .vision-card-media--future,
  .vision-budget,
  .phone-story-dot {
    animation: none;
  }
}

.hero-panel--phone {
  position: static;
  inset: auto;
  padding: 17px 20px;
  border-radius: 24px;
  background: rgba(9, 27, 18, 0.72);
}

.hero-panel--phone h2 {
  margin-bottom: 7px;
  font-size: 1.26rem;
}

.hero-panel--phone p {
  max-width: 30ch;
  font-size: 0.88rem;
  line-height: 1.46;
}

.section {
  padding: 24px 0 58px;
}

.section-card {
  border-radius: 32px;
  padding: 36px;
}

.beta-signup-section {
  padding-top: 30px;
}

.beta-signup-card {
  max-width: 940px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-lead {
  margin: 0 0 28px;
  max-width: 48rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.support-form {
  display: grid;
  gap: 18px;
}

.beta-signup-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
}

.beta-signup-form > .form-grid {
  display: contents;
}

.beta-signup-form > .form-grid-single,
.beta-signup-form > .form-note,
.beta-signup-form > .form-actions {
  grid-column: 1 / -1;
}

.beta-signup-form > .form-grid-single {
  display: block;
}

.beta-signup-form .form-field {
  align-self: start;
  align-content: start;
}

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

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

.form-field {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 650;
}

.form-field span {
  font-size: 0.95rem;
}

.form-field input {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-field input:focus {
  outline: 2px solid rgba(45, 122, 76, 0.2);
  border-color: rgba(45, 122, 76, 0.35);
}

.field-hint {
  margin: -2px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.field-hint[data-state="found"] {
  color: var(--brand-deep);
}

.field-hint[data-state="error"] {
  color: #7b1f1f;
}

.device-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 56px;
}

.device-option {
  position: relative;
  min-width: 0;
}

.device-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.device-option-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-muted);
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.device-option input:checked + .device-option-label,
.device-option.selected .device-option-label {
  border-color: rgba(45, 122, 76, 0.36);
  background: rgba(232, 243, 203, 0.72);
  color: var(--brand-deep);
}

.device-option input:focus-visible + .device-option-label {
  outline: 2px solid rgba(45, 122, 76, 0.2);
  outline-offset: 3px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.captcha-row strong {
  min-width: 128px;
}

.captcha-row input {
  max-width: 220px;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.form-alert {
  border-radius: 20px;
  padding: 16px 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-alert-error {
  background: rgba(176, 39, 39, 0.08);
  border: 1px solid rgba(176, 39, 39, 0.14);
  color: #7b1f1f;
}

.form-alert-success {
  background: rgba(45, 122, 76, 0.1);
  border: 1px solid rgba(45, 122, 76, 0.16);
  color: var(--brand-deep);
}

.form-note {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.code-block {
  margin: 10px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(18, 40, 31, 0.08);
  font-family: "SFMono-Regular", ui-monospace, monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.steps-grid,
.info-grid,
.feature-grid,
.link-grid,
.guide-grid {
  display: grid;
  gap: 18px;
}

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

.steps-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step-card,
.info-card {
  border-radius: 24px;
  padding: 24px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.step-card p,
.info-card p,
.bullet-list,
.info-note {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.97rem;
}

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

.info-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bullet-list {
  padding-left: 18px;
}

.bullet-list li + li {
  margin-top: 10px;
}

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

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

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

.guide-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(18, 40, 31, 0.08);
}

.category-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(18, 40, 31, 0.08);
}

.category-card--active {
  outline: 2px solid rgba(45, 122, 76, 0.24);
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-card h3 {
  margin: 14px 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.category-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.category-count {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.guide-card--large h2,
.guide-card h3 {
  margin: 12px 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.guide-card--large h2 {
  font-size: 1.45rem;
}

.guide-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.guide-card-category {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(232, 243, 203, 0.78);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.guide-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.guide-card-meta a,
.text-link {
  color: var(--brand-deep);
  font-weight: 700;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}

.section-card--soft {
  background: rgba(255, 255, 255, 0.72);
}

.cta-band {
  background:
    radial-gradient(circle at right top, rgba(232, 243, 203, 0.7), transparent 25%),
    rgba(255, 255, 255, 0.9);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.cta-links {
  display: grid;
  gap: 18px;
}

.section-title--compact {
  max-width: 14ch;
}

.hero-grid--download {
  grid-template-columns: 1.05fr 0.75fr;
}

.download-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  border-radius: 36px;
  display: grid;
  place-items: center;
  padding: 28px;
}

.download-card-inner {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.pill--soft {
  background: rgba(232, 243, 203, 0.88);
}

.qr-frame {
  width: min(100%, 280px);
  padding: 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 40, 31, 0.12);
}

.qr-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.download-note {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.download-launch-note {
  display: block;
  margin: 4px 0 8px;
  padding: 16px 18px;
  border: 1px solid rgba(45, 122, 76, 0.2);
  border-radius: 20px;
  background: rgba(232, 243, 203, 0.72);
  color: var(--text-muted);
  line-height: 1.6;
}

.download-launch-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.download-launch-note a {
  color: var(--brand-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-links {
  width: 100%;
  display: grid;
  gap: 10px;
}

.store-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  font-weight: 700;
}

.hero--compact {
  padding-bottom: 12px;
}

.section-title--medium {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.section--tight {
  padding-top: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.markdown-article,
.sidebar-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(18, 40, 31, 0.08);
}

.markdown-article {
  padding: 34px;
}

.markdown-article h2,
.markdown-article h3 {
  letter-spacing: -0.03em;
  color: var(--text);
}

.markdown-article h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
  font-size: 1.8rem;
}

.markdown-article h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.markdown-article p,
.markdown-article li {
  color: var(--text-muted);
  line-height: 1.78;
  font-size: 1rem;
}

.markdown-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.markdown-article th,
.markdown-article td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  vertical-align: top;
}

.markdown-article th {
  color: var(--text);
  background: rgba(232, 243, 203, 0.56);
}

.markdown-article blockquote {
  margin: 1.5rem 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background: rgba(232, 243, 203, 0.38);
  border-radius: 0 18px 18px 0;
}

.markdown-article ul,
.markdown-article ol {
  padding-left: 1.35rem;
}

.markdown-article a {
  color: var(--brand-deep);
  font-weight: 700;
}

.article-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.article-meta a {
  color: var(--brand-deep);
  font-weight: 700;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs a:not(:last-child)::after {
  content: "/";
  color: rgba(18, 40, 31, 0.34);
}

.markdown-intro {
  margin-top: 20px;
  color: var(--text-muted);
  line-height: 1.72;
}

.markdown-intro p:last-child {
  margin-bottom: 0;
}

.content-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 22px;
}

.sidebar-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.sidebar-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.btn-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sidebar-links {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.sidebar-links a {
  color: var(--brand-deep);
  font-weight: 650;
}

.article-cta {
  margin-top: 32px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(232, 243, 203, 0.54);
  border: 1px solid rgba(45, 122, 76, 0.12);
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta p {
  margin: 0 0 18px;
}

.link-card {
  padding: 22px 22px 24px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.link-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.link-card span {
  display: block;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.link-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand-deep);
  font-weight: 650;
}

.footer {
  padding: 0 0 54px;
}

.footer-card {
  border-radius: 28px;
  padding: 24px 28px;
  background: rgba(18, 40, 31, 0.94);
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-card small {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  margin-top: 6px;
}

.footer-card small a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 0.16em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.footer-card small a:hover,
.footer-card small a:focus-visible {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

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

.footer-stores {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.reveal-item {
  --reveal-delay: 0ms;
}

html.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

html.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.info-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

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

  html.motion-ready .reveal-item,
  html.motion-ready .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .steps-grid,
  .info-grid,
  .form-grid,
  .link-grid,
  .guide-grid,
  .category-grid,
  .cta-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-media--phone {
    min-height: 0;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .support-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .beta-signup-form {
    grid-template-columns: 1fr;
  }

  .beta-signup-form > .form-grid {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .guide-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .language-switch {
    margin-left: auto;
  }

  .nav-select-wrap {
    display: grid;
    width: min(16rem, 32vw);
    flex: 0 0 min(16rem, 32vw);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(1180px, calc(100% - 20px));
  }

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

  .topbar-inner {
    gap: 10px;
    padding: 10px 0;
    min-height: 64px;
    flex-wrap: wrap;
    align-items: center;
  }

  .language-switch {
    display: none;
  }

  .nav-select-wrap {
    display: grid;
    order: 2;
    width: auto;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 62vw;
    margin-left: auto;
  }

  .nav-select {
    width: auto;
    min-width: 10.75rem;
    padding: 0.58rem 2.4rem 0.58rem 0.85rem;
    font-size: 0.92rem;
  }

  .brand {
    gap: 10px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 10.5rem);
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark {
    font-size: 1.1rem;
  }
  .hero-copy,
  .hero-media,
  .section-card,
  .step-card,
  .info-card,
  .download-card,
  .markdown-article,
  .sidebar-card,
  .guide-card {
    border-radius: 24px;
  }

  .hero-copy,
  .section-card {
    padding: 26px;
  }

  .support-copy,
  .support-hero-card {
    padding: 28px 22px;
  }

  .support-points {
    grid-template-columns: 1fr;
  }

  .support-hero-card-main {
    padding: 22px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .hero-price-meta {
    margin-top: 12px;
  }

  .hero .hero-trust {
    margin-top: 16px;
    padding-left: 4px;
  }

  .hero .hero-price-meta {
    width: 100%;
    padding: 12px 16px;
  }

  .hero-media--phone {
    padding: 20px;
  }

  .hero-phone {
    width: 100%;
    max-width: 352px;
  }

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

  .phone-stage-viewport {
    min-height: 564px;
  }

  .plot-preview-card {
    padding: 12px;
    gap: 10px;
  }

  .plot-status-banner {
    padding: 10px 11px;
  }

  .plot-status-banner-copy strong {
    font-size: 0.78rem;
  }

  .plot-status-banner-copy span {
    font-size: 0.67rem;
  }

  .plot-address {
    padding: 10px 11px;
  }

  .plot-address-copy strong {
    font-size: 0.88rem;
  }

  .plot-diagram-card {
    padding: 8px;
  }

  .plot-diagram-stage {
    min-height: 168px;
  }

  .plot-zone-title {
    font-size: 17px;
    stroke-width: 4.5px;
  }

  .plot-zone-area {
    font-size: 12px;
  }

  .plot-house-copy {
    font-size: 19px;
  }

  .plot-scenario-tag {
    min-height: 1.95rem;
    padding: 0.32rem 1.1rem;
    font-size: 0.76rem;
  }

  .plot-diagram-legend {
    gap: 8px;
  }

  .plot-legend-item {
    font-size: 0.66rem;
  }

  .plot-stats {
    gap: 6px;
  }

  .plot-stat {
    padding: 10px 8px;
  }

  .discovery-search {
    min-height: 2.7rem;
    font-size: 0.78rem;
  }

  .discovery-chip {
    font-size: 0.66rem;
  }

  .discovery-card-media {
    height: 148px;
  }

  .discovery-label,
  .discovery-badge {
    min-height: 1.86rem;
    font-size: 0.64rem;
  }

  .discovery-card-body {
    gap: 9px;
    padding: 14px 16px 16px;
  }

  .discovery-card h2 {
    font-size: 1rem;
  }

  .discovery-card p,
  .discovery-note {
    font-size: 0.75rem;
  }

  .discovery-cta {
    min-height: 2.75rem;
    font-size: 0.84rem;
  }

  .vision-card {
    border-radius: 24px;
  }

  .vision-card-media {
    height: 172px;
  }

  .vision-budget {
    top: 132px;
    right: 14px;
    min-height: 2.25rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }

  .vision-card-body {
    gap: 12px;
    padding: 16px;
  }

  .vision-card--compact .vision-card-media {
    height: 144px;
  }

  .vision-card h2 {
    margin-bottom: 4px;
    font-size: 1.04rem;
  }

  .vision-area-pill {
    min-height: 2.75rem;
    padding: 0.58rem 0.85rem;
    font-size: 0.84rem;
  }

  .vision-question {
    font-size: 0.88rem;
  }

  .vision-card p {
    font-size: 0.79rem;
  }

  .vision-btn {
    min-height: 3rem;
    font-size: 0.9rem;
    padding-inline: 0.9rem;
  }

  .sun-reveal-card {
    padding: 12px;
    gap: 8px;
  }

  .phone-card-header h2 {
    font-size: 0.95rem;
  }

  .phone-card-header p {
    font-size: 0.6rem;
  }

  .sun-badge {
    padding: 5px 7px;
    font-size: 0.52rem;
  }

  .sun-filter-row,
  .sun-time-row {
    gap: 5px;
  }

  .sun-filter-row span,
  .sun-time-row span {
    padding: 5px 3px;
    font-size: 0.49rem;
  }

  .sun-stat-grid {
    gap: 5px;
  }

  .sun-stat-grid div {
    padding: 6px;
  }

  .sun-stat-grid small,
  .comparison-placeholder small {
    font-size: 0.52rem;
  }

  .sun-stat-grid strong {
    font-size: 0.72rem;
  }

  .sun-heatmap {
    width: 70%;
    gap: 2px;
    padding: 7px;
    border-radius: 16px;
  }

  .comparison-tabs {
    padding: 12px 12px 6px;
  }

  .comparison-tabs span {
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .comparison-scroll {
    gap: 10px;
    padding: 6px 12px 90px;
  }

  .comparison-area-card header {
    padding: 12px 14px;
  }

  .before-after-yard {
    height: 136px;
  }

  .comparison-placeholder {
    min-height: 128px;
    padding: 22px 16px;
  }

  .comparison-action-bar {
    padding: 10px 16px 16px;
  }

  .comparison-share-cta {
    padding: 12px;
    font-size: 0.78rem;
  }

  .phone-story-dot.is-active {
    width: 22px;
  }

  .markdown-article {
    padding: 26px;
  }
}

/* Mobile sticky install CTA */
.mobile-sticky-cta {
  display: none;
}

.mobile-install-toast {
  display: none;
}

@media (max-width: 760px) {
  .mobile-install-toast {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 36;
    padding: 10px;
    border-radius: 28px;
    background: rgba(18, 40, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 22px 44px rgba(7, 19, 14, 0.28),
      0 10px 24px rgba(7, 19, 14, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, calc(100% + 18px), 0);
    transition:
      opacity 240ms ease,
      transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .mobile-install-toast.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .mobile-install-toast-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-install-toast .btn.btn-store {
    min-width: 0;
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    box-shadow: 0 10px 20px rgba(194, 139, 24, 0.24);
  }

  .mobile-install-toast .btn-store-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-install-toast .btn-store-sub {
    font-size: 0.56rem;
  }

  .mobile-install-toast .btn-store-name {
    font-size: 0.92rem;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 30;
    padding: 10px;
    border-radius: 28px;
    background: rgba(18, 40, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 22px 44px rgba(7, 19, 14, 0.28),
      0 10px 24px rgba(7, 19, 14, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta .btn.btn-store {
    min-width: 0;
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    box-shadow: 0 10px 20px rgba(194, 139, 24, 0.24);
  }

  .mobile-sticky-cta .btn-store-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-sticky-cta .btn-store-sub {
    font-size: 0.56rem;
  }

  .mobile-sticky-cta .btn-store-name {
    font-size: 0.92rem;
  }

  body:has(.mobile-sticky-cta) {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  body.mobile-install-toast-active {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-install-toast {
    transition: none;
  }
}
