/* WeatherFlo brand — frost / sage / fern / forest / gold */
:root {
  --frost: #f8faf6;
  --sage: #e8efe4;
  --fern: #7fa882;
  --forest: #3d6147;
  --canopy: #131a14;
  --gold: #f0b429;
  --white: #ffffff;
  --muted: #8a9e8b;
  --border: #d8e4d1;
  --border-soft: #cdd8ca;

  --bg: var(--frost);
  --bg-card: var(--white);
  --text: var(--canopy);
  --text-muted: var(--forest);
  --accent: var(--fern);
  --accent-hover: var(--forest);
  --accent-dim: rgba(127, 168, 130, 0.14);
  --gold-dim: rgba(240, 180, 41, 0.14);

  --radius: 12px;
  --radius-lg: 16px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --header-h: 64px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-py: clamp(2.75rem, 5vw, 4rem);
  --section-gap: clamp(1.25rem, 3vw, 1.75rem);
  --content-gap: clamp(1rem, 2.5vw, 1.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--fern);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--fern);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.bg-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(127, 168, 130, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 30% at 100% 80%, rgba(240, 180, 41, 0.06), transparent 50%),
    var(--frost);
}

.bg-grain {
  display: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Logo wordmark: Weatherfl + gold sun */
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo-sun {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

.logo--dark {
  color: var(--canopy);
}

.logo--dark .logo-sun {
  background: var(--gold);
}

/* Header — canopy bar (matches intake / live site) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--canopy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-desktop a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: var(--fern) !important;
  color: var(--white) !important;
  letter-spacing: 0.14em !important;
}

.nav-cta:hover {
  background: #6b9470 !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  padding: 2rem 1.25rem;
  background: var(--canopy);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}

.nav-mobile.is-open {
  transform: translateX(0);
}

.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}

/* Hero — cinematic photo + brand overlay */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 26, 20, 0.35) 0%, rgba(19, 26, 20, 0.55) 45%, rgba(19, 26, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(19, 26, 20, 0.5) 0%, transparent 55%);
}

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

.eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 300;
  color: rgba(248, 250, 246, 0.88);
  max-width: 40rem;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  max-width: 36rem;
}

.stat {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.stat span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 250, 246, 0.75);
}

section {
  padding-block: var(--section-py);
  padding-inline: 0;
}

/* Tighter vertical rhythm between stacked sections (avoids double “gutters”) */
main > section:not(.hero) {
  padding-block: clamp(2.25rem, 4.5vw, 3.25rem);
}

section + section {
  margin-top: 0;
}

.section-header {
  margin-bottom: var(--content-gap);
  max-width: 40rem;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header--center .section-intro {
  margin-inline: auto;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fern);
  margin: 0 0 0.75rem;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--canopy);
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 40rem;
  margin: 0;
  line-height: 1.75;
}

.section-intro + .section-intro {
  margin-top: 1rem;
}

.section-intro--after-header {
  margin-top: 0.5rem;
}

.platform {
  background: var(--sage);
}

/* Full-bleed cinematic image band */
.image-band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: var(--content-gap);
  margin-bottom: var(--content-gap);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: min(52vh, 420px);
  min-height: 200px;
  border-block: 1px solid var(--border);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image-band--platform img {
  object-position: center 35%;
}

.image-band--inset {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 56px rgba(19, 26, 20, 0.12);
  max-height: min(48vh, 380px);
}

@media (min-width: 900px) {
  .image-band--inset {
    margin-top: calc(var(--content-gap) + 0.5rem);
  }
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  border-color: var(--fern);
  box-shadow: 0 8px 28px rgba(61, 97, 71, 0.08);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--canopy);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.split-section {
  display: grid;
  gap: var(--section-gap);
  align-items: center;
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(3rem, 5vw, 4.5rem);
  }

  .split-section--reverse {
    direction: rtl;
  }

  .split-section--reverse > * {
    direction: ltr;
  }
}

.split-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.split-section__content .section-label {
  margin-bottom: 0;
}

.split-section__content h2 {
  margin-bottom: 0;
}

.split-section__content .section-intro {
  margin-bottom: 0;
}

.split-section__content .quote-block {
  margin: 0;
}

.split-section__content .bullet-list {
  margin: 0;
}

.split-section__content .stat-row {
  margin: 0;
}

.section-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 56px rgba(19, 26, 20, 0.12);
  aspect-ratio: 16 / 9;
  min-height: 220px;
  position: relative;
}

.section-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19, 26, 20, 0.15) 100%);
  pointer-events: none;
}

.section-media picture,
.image-band picture {
  display: block;
  width: 100%;
  height: 100%;
}

.section-media img,
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

#brands .section-media img {
  object-position: center 45%;
}

#business .section-media img {
  object-position: center 38%;
}

@media (min-width: 900px) {
  .section-media {
    aspect-ratio: 4 / 3;
    min-height: 320px;
  }

  .section-media--wide {
    aspect-ratio: 16 / 10;
  }
}

.quote-block {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--sage);
  border: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--forest);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fern);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
}

@media (min-width: 640px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  text-align: center;
  padding: 1.15rem 0.65rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.stat-box span {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.35;
}


.about-layout {
  display: grid;
  gap: var(--section-gap);
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }

  .about-layout .section-header {
    grid-column: 1 / -1;
    max-width: 42rem;
  }

  .about-layout .pillars {
    grid-column: 1 / -1;
  }
}

.about-layout .pillars {
  margin-top: 0.5rem;
}

.pillars {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

@media (min-width: 720px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar {
  padding: 1.35rem;
  border-left: 3px solid var(--fern);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--border);
  border-left: 3px solid var(--fern);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

#business {
  background: var(--white);
}

#brands {
  background: var(--sage);
}

/* Contextual chip section */
#contextual {
  background: var(--frost);
}

.chip-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* Inside the contextual split, chip sits centred in its column */
.contextual-split {
  align-items: center;
}

/* Force 3 columns for the contextual cards from 640px up */
@media (min-width: 640px) {
  .contextual-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contextual-cards {
  margin-top: var(--content-gap);
}

/* Phone shell */
.phone-frame {
  width: min(300px, 88vw);
  background: linear-gradient(170deg, rgba(127,168,130,0.55) 0%, #c8d9c4 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 80px rgba(19, 26, 20, 0.22), 0 8px 24px rgba(19, 26, 20, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Top weather area */
.phone-weather-area {
  padding: 1.4rem 1rem 0.9rem;
  flex: 1;
}

.phone-location {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(19, 26, 20, 0.5);
  margin: 0 0 0.1rem;
}

.phone-temp {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--canopy);
  line-height: 1;
  margin: 0 0 0.2rem;
}

.phone-condition {
  font-size: 0.75rem;
  color: rgba(19, 26, 20, 0.55);
  margin: 0;
}

/* Chip row — right-aligned above the sheet, matching SwiftUI trailing alignment */
.chip-row {
  padding: 0 0.75rem 0.65rem;
  display: flex;
  justify-content: flex-end;
}

/* The chip itself — ZStack with × top-left overlaid */
.campaign-chip {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 0.55rem 0.6rem 0.55rem 1.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  width: 210px;
  cursor: pointer;
}

/* × dismiss — top-left overlay, matching ZStack(alignment: .topLeading) */
.chip-dismiss {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(19, 26, 20, 0.38);
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

/* Circle icon — matches 26×26 circle background at 0.12 opacity */
.chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(61, 97, 71, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  line-height: 1;
}

.chip-body {
  flex: 1;
  min-width: 0;
}

/* 13pt semibold CTA text */
.chip-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--canopy);
  line-height: 1.25;
}

/* 11pt regular subtitle at 0.82 opacity */
.chip-subtitle {
  font-size: 0.67rem;
  font-weight: 400;
  color: rgba(19, 26, 20, 0.7);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 11pt semibold chevron at 0.75 opacity */
.chip-chevron {
  color: rgba(19, 26, 20, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

/* Bottom sheet mock — frosted, with grab handle */
.phone-sheet {
  background: rgba(248, 250, 246, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px 18px 0 0;
  padding: 0.6rem 1rem 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.6);
}

.sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(19, 26, 20, 0.2);
  margin: 0 auto 0.55rem;
}

.sheet-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(19, 26, 20, 0.38);
  text-align: center;
  margin: 0 0 0.5rem;
}

/* Tab bar mock */
.phone-tabbar {
  background: rgba(248, 250, 246, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(19,26,20,0.08);
  padding: 0.5rem 0.75rem 0.6rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  color: rgba(19, 26, 20, 0.45);
}

.tab-item.active {
  color: var(--forest);
}

.tab-icon {
  font-size: 0.95rem;
  line-height: 1;
}

/* How it works */
.how-it-works {
  background: var(--sage);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
  margin-top: var(--content-gap);
}

.how-it-works h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--canopy);
  margin: 0 0 1.1rem;
}

.how-it-works ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.how-it-works li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-it-works li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fern);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

@media (min-width: 640px) {
  .how-it-works ol {
    flex-direction: row;
    gap: 1.5rem;
  }

  .how-it-works li {
    flex: 1;
    flex-direction: column;
    gap: 0.6rem;
  }

  .how-it-works li::before {
    margin-top: 0;
  }
}

.contextual-footer {
  margin-top: var(--content-gap);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contextual-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 52rem;
}

.contextual-footer strong {
  color: var(--forest);
  font-weight: 500;
}

.download-section {
  text-align: center;
  padding-block: clamp(2.75rem, 5vw, 4rem);
  background: var(--canopy);
  color: var(--white);
  margin-top: 0;
}

.download-section .section-label {
  color: var(--gold);
}

.download-section h2 {
  color: var(--white);
  max-width: 16ch;
  margin-inline: auto;
}

.download-section .section-header {
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--content-gap);
}

.download-section .section-intro {
  color: rgba(248, 250, 246, 0.8);
  margin-inline: auto;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 420px;
  margin: 1.75rem auto 0;
}

@media (min-width: 480px) {
  .waitlist-form {
    flex-direction: row;
  }
}

.waitlist-form input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
}

.waitlist-form input::placeholder {
  color: var(--muted);
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--fern);
}

.waitlist-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--fern);
  color: var(--fern);
}

.btn-app {
  background: var(--gold);
  color: var(--canopy);
  padding: 0.95rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.btn-app:hover {
  background: #e5a820;
  color: var(--canopy);
  transform: translateY(-1px);
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: var(--content-gap);
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.contact-card a {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--forest);
}

.site-footer {
  padding: 2.25rem 0 1.75rem;
  background: var(--canopy);
  color: var(--muted);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 28rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-weight: 300;
}

.footer-links h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.85rem;
  font-weight: 400;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: rgba(248, 250, 246, 0.75);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

/* Legal */
.legal-page {
  padding: calc(var(--header-h) + 2rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 300;
  margin: 0 0 0.5rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 1.25rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 1.25rem;
}

/* go.html */
.go-page {
  min-height: 100dvh;
  padding: 1.75rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.go-profile {
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: 360px;
}

.go-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(19, 26, 20, 0.1);
}

.go-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.go-profile h1 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--canopy);
}

.go-profile h1 .logo-sun {
  width: 13px;
  height: 13px;
}

.go-profile p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.go-links {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.go-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--canopy);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.go-link:hover {
  border-color: var(--fern);
  transform: translateY(-2px);
  color: var(--canopy);
}

.go-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  background: var(--sage);
  color: var(--forest);
}

.go-link-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.go-link-text span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

.go-footer {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(19, 26, 20, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin-inline: auto;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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