:root {
  --background: #f2f7f0;
  --white: #ffffff;
  --soft: #f6faf4;
  --dark: #111813;
  --dark-soft: #202c22;
  --text: #0c130e;
  --muted: #5c6b60;
  --cream: #f2efe4;
  --cream-muted: rgba(242, 239, 228, 0.72);
  --brand: #297a4a;
  --brand-light: #7ecb83;
  --brand-soft: #dcefe0;
  --sharing: #1a4dad;
  --rain: #1a6eb8;
  --warning: #df7a31;
  --line: rgba(17, 24, 19, 0.1);
  --shadow: 0 30px 90px rgba(17, 24, 19, 0.13);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  max-width: 100%;
}

[data-lucide] {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  stroke: currentColor;
}

.page-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-section {
  min-height: max(100svh, 970px);
  position: relative;
  color: var(--cream);
  background: linear-gradient(180deg, #111813 0%, #183f26 46%, #4f9460 73%, #d8ead9 88%, #ffffff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(242, 239, 228, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 228, 0.09) 1px, transparent 1px);
  background-size: 190px 150px;
  mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 98%);
}

.site-nav,
.hero-grid {
  position: relative;
  z-index: 1;
}

.site-nav {
  width: min(970px, calc(100% - 72px));
  height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 23px;
  font-weight: 900;
}

.brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.pill-button,
.store-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.nav-button {
  justify-self: end;
  background: var(--cream);
  color: var(--dark);
}

.nav-button [data-lucide],
.dark-button [data-lucide] {
  width: 16px;
  height: 16px;
}

.store-button {
  background: var(--cream);
  color: var(--dark);
}

.app-store-button {
  gap: 9px;
  padding-left: 17px;
}

.app-store-button img {
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 5px;
}

.dark-button,
.dark-store {
  background: var(--dark);
  color: var(--cream);
}

.hero-grid {
  width: min(1180px, calc(100% - 72px));
  height: calc(max(100svh, 970px) - 80px);
  min-height: 820px;
  margin: 0 auto;
  position: relative;
}

.hero-grid h1 {
  margin: 100px auto 0;
  display: grid;
  gap: 20px;
  font-size: clamp(78px, 7.7vw, 156px);
  line-height: 0.84;
  letter-spacing: 0;
  text-align: center;
  font-weight: 1000;
}

.hero-grid h1 span:last-child {
  transform: translateX(185px);
}

.hero-note,
.hero-actions {
  position: absolute;
  max-width: 330px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.hero-note-left {
  left: 48px;
  top: 332px;
}

.hero-actions {
  right: 34px;
  top: 500px;
}

.hero-actions p {
  margin: 0 0 18px;
}

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

.hero-device-wrap {
  position: absolute;
  left: 50%;
  bottom: 150px;
  width: 390px;
  transform: translateX(-50%);
}

.phone-frame {
  width: 315px;
  min-height: 640px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 10px solid #0b0d0c;
  border-radius: 44px;
  background: #f7faf5;
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 25px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-frame figcaption,
.recap-placeholder figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(41, 122, 74, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 122, 74, 0.08) 1px, transparent 1px),
    #f7faf5;
  background-size: 42px 42px;
  color: var(--muted);
}

.phone-frame figcaption strong,
.recap-placeholder figcaption strong {
  align-self: end;
  color: var(--brand);
  font-size: 18px;
}

.phone-frame figcaption span,
.recap-placeholder figcaption span {
  align-self: start;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.phone-frame.is-placeholder img,
.recap-placeholder.is-placeholder img {
  opacity: 0;
}

.phone-frame:not(.is-placeholder) figcaption,
.recap-placeholder:not(.is-placeholder) figcaption {
  display: none;
}

.hero-phone {
  width: 350px;
  margin: 0 auto;
  position: relative;
}

.hero-phone img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(17, 24, 19, 0.26));
}

.framed-screen {
  width: min(78%, 360px);
  margin: 0;
  filter: drop-shadow(0 24px 42px rgba(17, 24, 19, 0.22));
}

.framed-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.float-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 17px;
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 16px 38px rgba(17, 24, 19, 0.18);
  font-size: 12px;
  font-weight: 900;
  animation: float-chip 4.8s ease-in-out infinite;
  will-change: transform;
}

.chip-left {
  left: -42px;
  top: 270px;
  --chip-rotate: -9deg;
  animation-delay: -1.2s;
}

.chip-top {
  left: 12px;
  top: 144px;
  background: var(--sharing);
  color: white;
  --chip-rotate: -18deg;
  animation-delay: -2.4s;
}

.chip-right {
  right: -58px;
  top: 420px;
  --chip-rotate: 12deg;
  animation-delay: -0.4s;
}

@keyframes float-chip {
  0%,
  100% {
    transform: translateY(0) rotate(var(--chip-rotate));
  }

  50% {
    transform: translateY(-10px) rotate(var(--chip-rotate));
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-chip {
    animation: none;
    transform: rotate(var(--chip-rotate));
  }
}

.overview-section,
.feature-grid-section,
.steps-section,
.alternating-section,
.faq-section,
.download-panel,
.site-footer {
  background: var(--white);
}

.overview-section,
.feature-grid-section,
.steps-section,
.alternating-section,
.faq-section {
  width: min(950px, calc(100% - 72px));
  margin: 0 auto;
}

.proof-row {
  padding: 92px 0 98px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: 70px;
  align-items: start;
}

.proof-row h2,
.feature-copy h2,
.section-heading h2,
.faq-copy h2,
.download-panel h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.proof-row p,
.feature-copy p,
.section-heading p,
.steps-grid p,
.faq-copy p,
.download-panel p,
.mini-feature-row p,
.feature-card p {
  color: var(--muted);
  line-height: 1.55;
}

.proof-row ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.proof-row li {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(17, 24, 19, 0.08);
  border-radius: 18px;
  background: rgba(246, 247, 245, 0.72);
}

.proof-row li strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.proof-row li > [data-lucide] {
  grid-row: 1 / span 2;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  color: var(--brand);
}

.proof-row li span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.overview-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.visual-card,
.feature-card,
.orbital-card,
.notification-card,
.faq-list details,
.download-panel {
  border-radius: var(--radius);
  background: #f6f7f5;
}

.sky-card {
  height: 600px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: linear-gradient(180deg, #173520 0%, #2e7045 48%, #eef7ee 100%);
}

.sky-card .framed-screen {
  transform: translateY(100px);
}

.feature-copy {
  max-width: 470px;
}

.mini-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 62px;
}

.mini-feature-row h3,
.feature-card h3,
.steps-grid h3,
.cta-card h3,
.notification-card h3 {
  margin: 16px 0 8px;
  font-size: 21px;
  line-height: 1.15;
}

.icon-square,
.step-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: white;
}

.icon-square [data-lucide],
.step-icon [data-lucide],
.feature-icon [data-lucide] {
  width: 25px;
  height: 25px;
}

.feature-icon {
  margin-bottom: 20px;
}

.green-icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
}

.blue-icon {
  background: linear-gradient(135deg, var(--sharing), #6b95ff);
}

.invite-page-shell {
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(180deg, #111813 0%, #183f26 48%, #f6faf4 100%);
  color: var(--cream);
}

.invite-fallback-section {
  min-height: 100svh;
  position: relative;
}

.invite-fallback-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(242, 239, 228, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 228, 0.09) 1px, transparent 1px);
  background-size: 190px 150px;
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 98%);
}

.invite-nav,
.invite-fallback-grid {
  position: relative;
  z-index: 1;
}

.invite-nav {
  grid-template-columns: 1fr auto;
}

.invite-fallback-grid {
  width: min(1050px, calc(100% - 72px));
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: 64px 0 96px;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.invite-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invite-copy h1 {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.invite-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--cream-muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.invite-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.invite-secondary-link {
  background: rgba(242, 239, 228, 0.14);
  color: var(--cream);
  border: 1px solid rgba(242, 239, 228, 0.22);
}

.invite-phone {
  width: min(390px, 100%);
  margin: 0;
  justify-self: center;
  transform: rotate(2deg);
}

.invite-phone img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(17, 24, 19, 0.32));
}

.utility-page-shell {
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(180deg, #111813 0%, #183f26 46%, #f6faf4 100%);
  color: var(--cream);
}

.utility-nav {
  grid-template-columns: 1fr auto;
}

.utility-panel {
  width: min(780px, calc(100% - 72px));
  margin: 0 auto;
  padding: 120px 0 140px;
}

.utility-panel h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.utility-panel > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--cream-muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.download-page-panel {
  width: min(1050px, calc(100% - 72px));
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: 70px 0 110px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.download-page-copy {
  max-width: 620px;
}

.download-app-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 21px;
  box-shadow: 0 20px 48px rgba(17, 24, 19, 0.24);
}

.download-page-copy h1 {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.download-page-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--cream-muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.download-page-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.download-feature-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-feature-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 19, 0.08);
  border-radius: 999px;
  background: rgba(246, 250, 244, 0.88);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(17, 24, 19, 0.12);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.download-feature-row [data-lucide] {
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.download-page-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.download-page-phone {
  width: min(360px, 100%);
  margin: 0;
  transform: rotate(2deg);
}

.download-page-phone img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(17, 24, 19, 0.32));
}

.download-chip-one {
  left: 0;
  top: 90px;
  transform: rotate(-8deg);
}

.download-chip-two {
  right: 0;
  bottom: 110px;
  background: var(--brand-light);
  transform: rotate(7deg);
}

.utility-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.utility-secondary-link {
  background: rgba(242, 239, 228, 0.14);
  color: var(--cream);
  border: 1px solid rgba(242, 239, 228, 0.22);
}

.utility-link-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.utility-link-grid a {
  min-height: 96px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(242, 239, 228, 0.18);
  border-radius: 18px;
  background: rgba(242, 239, 228, 0.1);
  color: var(--cream);
  font-weight: 850;
}

.utility-link-grid a:hover {
  background: rgba(242, 239, 228, 0.16);
}

.link-tile-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--white);
  justify-self: center;
}

.link-tile-icon [data-lucide] {
  width: 23px;
  height: 23px;
}

.support-action {
  width: min(100%, 390px);
  min-height: 82px;
  margin-top: 12px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(17, 24, 19, 0.08);
  border-radius: 18px;
  background: rgba(246, 247, 245, 0.92);
}

.legal-document a.support-action {
  color: var(--text);
  text-decoration: none;
}

.support-action strong,
.support-action small {
  display: block;
}

.support-action strong {
  font-size: 17px;
  line-height: 1.15;
}

.support-action small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.not-found-panel {
  width: min(1050px, calc(100% - 72px));
  margin: 0 auto;
  padding: 86px 0 120px;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(340px, 0.78fr);
  gap: 70px;
  align-items: center;
}

.not-found-copy h1 {
  margin: 0;
  font-size: clamp(54px, 6.5vw, 94px);
  line-height: 0.92;
  letter-spacing: 0;
}

.not-found-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--cream-muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.not-found-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.route-card {
  width: min(390px, 100%);
  min-height: 390px;
  padding: 34px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid rgba(242, 239, 228, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(rgba(242, 239, 228, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 228, 0.1) 1px, transparent 1px),
    rgba(242, 239, 228, 0.12);
  background-size: 42px 42px;
  box-shadow: 0 30px 80px rgba(17, 24, 19, 0.28);
}

.route-number {
  width: 100%;
  color: var(--cream);
  font-size: clamp(84px, 12vw, 142px);
  line-height: 0.82;
  font-weight: 1000;
  text-align: center;
}

.route-card svg {
  width: 100%;
  height: 180px;
  display: block;
  color: var(--brand-light);
  overflow: visible;
}

.route-card path {
  fill: none;
  stroke: currentColor;
  stroke-width: 13;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-card circle {
  fill: var(--cream);
  stroke: var(--brand-light);
  stroke-width: 7;
}

.route-chip {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--dark);
  box-shadow: 0 18px 42px rgba(17, 24, 19, 0.22);
  font-size: 12px;
  font-weight: 950;
}

.chip-start {
  left: 10px;
  top: 82px;
  transform: rotate(-8deg);
}

.chip-missing {
  right: 0;
  top: 44px;
  background: var(--warning);
  color: var(--white);
  transform: rotate(8deg);
}

.chip-home {
  right: 28px;
  bottom: 70px;
  background: var(--brand-light);
  transform: rotate(-5deg);
}

.not-found-links {
  grid-column: 1 / -1;
  margin-top: 0;
}

.rain-icon {
  background: linear-gradient(135deg, var(--rain), #8fc7e8);
}

.warning-icon {
  background: linear-gradient(135deg, var(--warning), #f1bd6e);
}

.feature-grid-section {
  padding: 100px 0 70px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 58px;
  text-align: center;
}

.eyebrow {
  color: var(--brand);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  min-height: 370px;
  padding: 30px;
  overflow: hidden;
}

.feature-card.wide-card {
  min-height: 330px;
}

.placeholder-panel {
  margin-top: 32px;
  padding: 26px;
  border-radius: 21px;
  background: white;
  box-shadow: 0 18px 44px rgba(17, 24, 19, 0.08);
}

.placeholder-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.placeholder-lines span {
  height: 16px;
  border-radius: 999px;
  background: var(--brand-soft);
}

.placeholder-lines span:nth-child(2) {
  width: 74%;
}

.placeholder-lines span:nth-child(3) {
  width: 54%;
}

.feature-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 900;
}

.feature-action [data-lucide] {
  width: 18px;
  height: 18px;
}

.card-phone {
  width: 250px;
  min-height: 430px;
  margin: 26px auto -170px;
}

.card-screen {
  width: 250px;
  margin: 26px auto -170px;
}

.screen-preview {
  min-height: 445px;
  position: relative;
}

.screen-preview figcaption {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  gap: 8px;
  padding: 28px;
  border-radius: 42px;
  background:
    linear-gradient(rgba(41, 122, 74, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 122, 74, 0.08) 1px, transparent 1px),
    #f7faf5;
  background-size: 36px 36px;
  color: var(--muted);
  text-align: center;
}

.screen-preview figcaption strong,
.screen-preview figcaption span {
  display: block;
}

.screen-preview figcaption strong {
  align-self: end;
  color: var(--brand);
  font-size: 16px;
}

.screen-preview figcaption span {
  align-self: start;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.screen-preview.is-missing img {
  display: none;
}

.screen-preview.is-missing figcaption {
  display: grid;
}

.weather-icon-showcase {
  min-height: 245px;
  margin-top: 18px;
  display: grid;
  place-items: center;
}

.weather-icon-showcase img {
  width: min(72%, 230px);
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 34px rgba(17, 24, 19, 0.14));
}

.join-card-row {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.join-card {
  width: 190px;
  height: 170px;
  padding: 24px;
  border-radius: 22px;
  color: white;
  box-shadow: 0 24px 44px rgba(17, 24, 19, 0.16);
}

.join-card strong,
.join-card span {
  display: block;
}

.join-card span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.rotate-left {
  background: var(--brand);
  transform: rotate(-7deg) translateX(14px);
}

.rotate-right {
  background: var(--sharing);
  transform: rotate(7deg) translateX(-14px);
}

.recap-placeholder {
  height: 220px;
  margin: 30px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: white;
}

.share-card-preview {
  width: min(50%, 155px);
  margin: 22px auto 0;
  position: relative;
  transform: rotate(-8deg);
  filter: drop-shadow(0 16px 24px rgba(17, 24, 19, 0.16));
}

.share-card-preview::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  z-index: 0;
  border-radius: 18px;
  background: rgba(41, 122, 74, 0.12);
}

.share-card-preview img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 20px;
}

.steps-section {
  padding: 74px 0 92px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-bottom: 96px;
  padding:
    40px
    24px;
  background: #ffffff;
}

.steps-grid article {
  text-align: center;
}

.cta-panel {
  min-height: 710px;
  padding: 58px 34px 0;
  overflow: hidden;
  border-radius: 28px;
  color: var(--cream);
  background: linear-gradient(180deg, #111813 0%, #246138 58%, #eef7ee 100%);
  text-align: center;
}

.cta-panel h2 {
  max-width: 670px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.cta-content {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: end center;
}

.cta-phone {
  width: 315px;
  margin: 0 0 32px;
  z-index: 2;
  filter: drop-shadow(0 22px 42px rgba(17, 24, 19, 0.2));
}

.cta-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-card {
  width: 250px;
  height: 220px;
  padding: 25px;
  position: absolute;
  bottom: 130px;
  border-radius: 18px;
  background: white;
  color: var(--text);
  text-align: left;
  box-shadow: 0 20px 54px rgba(17, 24, 19, 0.12);
}

.cta-card p {
  color: var(--muted);
}

.card-left {
  left: calc(50% - 420px);
  transform: rotate(-4deg);
}

.card-right {
  right: calc(50% - 420px);
  transform: rotate(4deg);
}

.alternating-section {
  padding: 88px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px 62px;
  align-items: center;
}

.orbital-card,
.notification-card {
  min-height: 340px;
  position: relative;
}

.orbit-item,
.orbit-center {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
}

.orbit-center {
  width: 130px;
  height: 130px;
  left: 50%;
  top: 50%;
  background: var(--brand);
  color: white;
  transform: translate(-50%, -50%);
}

.orbit-item {
  width: 100px;
  height: 100px;
  padding: 0 12px;
  background: white;
  box-shadow: 0 12px 30px rgba(17, 24, 19, 0.08);
  line-height: 1.15;
}

.item-one { left: 32px; top: 92px; }
.item-two { left: 150px; top: 32px; }
.item-three { right: 72px; top: 78px; background: var(--sharing); color: white; }
.item-four { left: 92px; bottom: 50px; }
.item-five { right: 80px; bottom: 58px; color: var(--brand); }

.lower-copy {
  justify-self: end;
}

.notification-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 56px;
}

.bell {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 8px solid white;
  border-radius: 50%;
  background: var(--warning);
  color: white;
  box-shadow: 0 12px 30px rgba(17, 24, 19, 0.12);
}

.bell [data-lucide] {
  width: 23px;
  height: 23px;
}

.faq-section {
  padding: 92px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-list details {
  overflow: hidden;
  padding: 0;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 240ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height 280ms ease,
    opacity 220ms ease,
    transform 260ms ease;
}

.faq-answer > p {
  overflow: hidden;
}

.faq-list p {
  margin: 0;
  padding: 0 28px 28px;
  color: var(--muted);
  line-height: 1.55;
}

.faq-list details[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-list details.is-closing .faq-answer {
  opacity: 0;
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details,
  .faq-list summary::after,
  .faq-answer {
    transition: none;
  }
}

.download-panel {
  width: min(820px, calc(100% - 72px));
  min-height: 420px;
  margin: 44px auto 130px;
  padding: 70px 54px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #297a4a 0%, #bfe2c0 72%, #ffffff 100%);
}

.download-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0;
  font-weight: 900;
}

.download-checks span::before {
  content: none;
}

.download-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-checks [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.dark-store {
  gap: 9px;
}

.dark-store [data-lucide] {
  width: 17px;
  height: 17px;
}

.download-phone {
  width: 285px;
  margin-bottom: -190px;
  filter: drop-shadow(0 22px 42px rgba(17, 24, 19, 0.2));
}

.download-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer {
  width: min(880px, calc(100% - 72px));
  margin: 0 auto;
  padding: 0 0 70px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.footer-columns div {
  display: grid;
  gap: 14px;
}

.footer-columns h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.footer-columns a {
  color: var(--muted);
  font-size: 14px;
}

.footer-wordmark {
  margin: 86px 0 46px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: clamp(76px, 13vw, 180px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  font-weight: 1000;
}

.footer-wordmark img {
  width: 170px;
  height: 170px;
  border-radius: 44px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.legal-shell {
  min-height: 100vh;
  background: var(--white);
  color: var(--text);
}

.legal-nav {
  width: min(960px, calc(100% - 72px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-brand {
  color: var(--text);
}

.legal-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legal-nav-links a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand);
}

.legal-document {
  width: min(820px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-document h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.legal-updated {
  margin: 0 0 44px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.legal-document section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-grid h1 span:last-child {
    transform: none;
  }

  .hero-note,
  .hero-actions {
    position: static;
    margin: 24px auto 0;
    text-align: center;
  }

  .hero-device-wrap {
    position: relative;
    bottom: auto;
    margin: 52px auto 0;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 40px;
  }

  .overview-grid,
  .alternating-section,
  .faq-section,
  .download-panel,
  .invite-fallback-grid,
  .not-found-panel,
  .download-page-panel {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-left,
  .card-right {
    position: static;
    transform: none;
  }

  .cta-content {
    gap: 18px;
    padding-top: 32px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    width: calc(100% - 32px);
    height: auto;
    padding: 18px 0;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .overview-section,
  .feature-grid-section,
  .steps-section,
  .alternating-section,
  .faq-section,
  .site-footer,
  .invite-fallback-grid,
  .utility-panel,
  .not-found-panel,
  .download-page-panel {
    width: calc(100% - 32px);
  }

  .invite-fallback-grid {
    min-height: auto;
    padding: 54px 0 72px;
    gap: 44px;
    text-align: center;
  }

  .invite-copy {
    justify-self: center;
  }

  .invite-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .invite-actions {
    justify-content: center;
  }

  .invite-phone {
    width: min(330px, 78vw);
    transform: none;
  }

  .utility-panel {
    padding: 70px 0 92px;
    text-align: center;
  }

  .utility-panel > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .utility-actions {
    justify-content: center;
  }

  .utility-link-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .not-found-panel {
    padding: 48px 0 80px;
    gap: 38px;
    text-align: center;
  }

  .not-found-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .not-found-visual {
    min-height: 360px;
  }

  .route-card {
    width: min(330px, 88vw);
    min-height: 330px;
    border-radius: 28px;
  }

  .route-chip {
    font-size: 11px;
  }

  .chip-start {
    left: 18px;
    top: 42px;
  }

  .chip-missing {
    right: 18px;
    top: 22px;
  }

  .chip-home {
    right: 18px;
    bottom: 44px;
  }

  .download-page-panel {
    min-height: auto;
    padding: 46px 0 82px;
    gap: 42px;
    text-align: center;
  }

  .download-app-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .download-page-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .download-page-actions,
  .download-feature-row {
    justify-content: center;
  }

  .download-page-visual {
    min-height: 420px;
  }

  .download-page-phone {
    width: min(330px, 82vw);
    transform: none;
  }

  .download-chip-one {
    left: 18px;
    top: 30px;
  }

  .download-chip-two {
    right: 18px;
    bottom: 52px;
  }

  .hero-grid h1 {
    margin: 70px auto 0;
    font-size: clamp(58px, 15vw, 88px);
    text-align: center;
  }

  .hero-grid {
    height: auto;
    min-height: 0;
    padding-bottom: 86px;
  }

  .hero-note,
  .hero-actions {
    max-width: min(340px, 88vw);
  }

  .hero-note {
    margin-top: 54px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .store-row {
    justify-content: center;
  }

  .hero-device-wrap {
    width: min(390px, 92vw);
    margin-top: 72px;
  }

  .hero-phone {
    width: min(390px, 92vw);
  }

  .float-chip {
    display: none;
  }

  .proof-row ul,
  .feature-grid,
  .steps-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .overview-section,
  .feature-grid-section,
  .steps-section,
  .faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .alternating-section {
    padding-top: 34px;
    padding-bottom: 52px;
    gap: 34px;
  }

  .overview-grid {
    min-height: auto;
  }

  .mini-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .cta-panel {
    min-height: 0;
    padding: 42px 18px 0;
  }

  .cta-content {
    min-height: 0;
    padding: 22px 0 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
  }

  .cta-phone {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(275px, 62vw);
    margin: 8px 0 -2px;
  }

  .cta-card {
    width: 100%;
    height: 142px;
    padding: 14px;
    bottom: auto;
  }

  .cta-card h3 {
    margin-top: 10px;
    font-size: 14px;
  }

  .cta-card p {
    font-size: 10px;
    line-height: 1.28;
  }

  .cta-card .icon-square {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .cta-card .icon-square [data-lucide] {
    width: 18px;
    height: 18px;
  }

  .card-left {
    grid-column: 1;
    position: relative;
    left: auto;
    transform: rotate(-4deg);
  }

  .card-right {
    grid-column: 2;
    position: relative;
    right: auto;
    justify-self: end;
    transform: rotate(4deg);
  }

  .orbital-card {
    min-height: 220px;
  }

  .orbit-item {
    width: 74px;
    height: 74px;
    font-size: 12px;
  }

  .orbit-center {
    width: 104px;
    height: 104px;
  }

  .item-one { left: 20px; top: 74px; }
  .item-two { left: 110px; top: 24px; }
  .item-three { right: 40px; top: 54px; }
  .item-four { left: 78px; bottom: 28px; }
  .item-five { right: 58px; bottom: 34px; }

  .download-panel {
    width: calc(100% - 32px);
    padding: 44px 24px;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    gap: 34px;
    text-align: center;
  }

  .download-panel > div {
    display: grid;
    width: min(100%, 560px);
    justify-items: center;
    justify-self: center;
    text-align: center;
  }

  .download-panel h2,
  .download-panel p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .download-checks,
  .download-panel .store-button {
    justify-content: center;
  }

  .download-checks {
    width: auto;
    justify-self: center;
  }

  .download-panel .store-button {
    width: fit-content;
    justify-self: center;
    margin-inline: auto;
  }

  .download-phone {
    justify-self: center;
    margin-inline: auto;
  }

  .lower-copy {
    justify-self: start;
  }

  .footer-wordmark {
    gap: 14px;
    font-size: clamp(58px, 19vw, 96px);
  }

  .footer-wordmark img {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

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

  .legal-nav,
  .legal-document {
    width: calc(100% - 32px);
  }

  .legal-nav {
    min-height: 76px;
  }

  .legal-nav-links {
    gap: 4px;
  }

  .legal-nav-links a {
    padding: 7px 9px;
    font-size: 12px;
  }

  .legal-document {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .legal-document section {
    padding: 28px 0;
  }
}
