
.landing-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.main > .content {
  padding: 0;
}

.content {
  padding: 0;
}

html, body {
  background: #fff;
  overflow-x: clip;
}

.header.header--landing {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, color-mix(in oklab, var(--c-primary) 15%, transparent) 0%, transparent 40%),
              radial-gradient(circle at 70% 60%, color-mix(in oklab, var(--c-accent) 10%, transparent) 0%, transparent 40%);
  animation: float-bg 20s ease-in-out infinite;
  pointer-events: none;
}

.flow-gradient {
  background: linear-gradient(
    120deg,
    #4fa39d,
    #f2e7c9,
    #e67c5c
  );
  background-size: 300% 300%;
  animation: flowShift 40s ease infinite;
}

@keyframes flowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.flow-hero {
  display: block;
  position: relative;
  overflow: hidden;
  max-width: none;
  width: 100%;
  border-radius: 0;
  margin: -64px 0 0 0;
  padding: calc(6px + 60px) 4px 6px;
}

@media (min-width: 900px) {
  .flow-hero {
    margin: -64px 0 0 0;
    padding: calc(72px + 64px) 28px 72px;
  }
}

.vibe-cards-section {
  padding: 8px 4px 4px;
  background: #fff;
}

.vibe-cards-inner {
  max-width: 1040px;
  margin: 0 auto;
}

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

.vibe-image-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  text-align: center;
}

.vibe-image-frame {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vibe-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.vibe-image-card:hover .vibe-image-frame {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.vibe-image-card.selected .vibe-image-frame {
  border-color: color-mix(in oklab, var(--c-primary) 40%, rgba(255, 255, 255, 0.6));
  box-shadow: 0 22px 54px color-mix(in oklab, var(--c-primary) 18%, rgba(0, 0, 0, 0.08));
}

.vibe-image-card:focus-visible {
  outline: none;
}

.vibe-image-card:focus-visible .vibe-image-frame {
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-primary) 18%, transparent), 0 22px 52px rgba(0, 0, 0, 0.1);
}

.vibe-image-caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: color-mix(in oklab, var(--c-text) 92%, transparent);
}

.vibe-image-emoji {
  font-size: 16px;
  line-height: 1;
}

.flow-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.flow-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.flow-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow-brand-name {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.flow-brand-tagline {
  font-size: 13px;
  color: color-mix(in oklab, var(--c-text) 70%, transparent);
}

.flow-weather {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.flow-main {
  text-align: center;
}

.flow-question {
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
}

.flow-supporting {
  max-width: 720px;
  margin: 0 auto 26px auto;
  font-size: 16px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--c-text) 70%, transparent);
}

.flow-vibes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.vibe-pill {
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0 5px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.vibe-emoji { font-size: 18px; }
.vibe-label { font-weight: 650; }

.vibe-pill:hover {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.vibe-pill:hover .vibe-label {
  font-weight: 750;
}

.vibe-pill.selected {
  background: rgba(255, 255, 255, 0.78);
  border-color: color-mix(in oklab, var(--c-primary) 40%, rgba(255, 255, 255, 0.8));
}

.vibe-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-primary) 18%, transparent), 0 12px 34px rgba(0, 0, 0, 0.07);
}

.flow-vibe-desc {
  min-height: 22px;
  margin-top: 14px;
  font-size: 14px;
  color: color-mix(in oklab, var(--c-text) 70%, transparent);
}

.flow-location {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 650;
  color: color-mix(in oklab, var(--c-text) 78%, transparent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.flow-cta {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.flow-quiet {
  font-size: 13px;
  color: color-mix(in oklab, var(--c-text) 70%, transparent);
}

.flow-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.09;
  overflow: hidden;
}

.flow-lines svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.flow-lines path {
  fill: none;
  stroke: color-mix(in oklab, var(--c-text) 85%, transparent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 18 26;
  animation: flowLine 55s linear infinite;
}

@keyframes flowLine {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -420; }
}

@keyframes float-bg {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 2%); }
}

.landing-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.landing-title {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.landing-gradient {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.landing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in oklab, var(--c-primary) 30%, transparent);
}

.landing-subtitle {
  font-size: 18px;
  color: var(--c-muted);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* CTA button: use .btn-gradient.lg from main.css */

.landing-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-border);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 16px;
  transition: all 0.2s;
}

.landing-secondary:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.how-section {
  padding: 0px 4px;
  max-width: 1000px;
  margin: 0 auto;
}

.how-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px auto;
  color: var(--c-muted);
  line-height: 1.6;
}

.how-poem {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 10px;
}

.how-line {
  padding: 12px 14px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--c-surface) 70%, transparent);
  border: 1px solid color-mix(in oklab, var(--c-border) 78%, transparent);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.step-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}

.vibes-section {
  padding: 60px 24px;
  background: var(--c-surface);
}

.vibes-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vibes-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vibes-subtext {
  margin: 0 auto 22px auto;
  max-width: 620px;
  color: var(--c-muted);
}

.vibes-desc {
  margin-top: 18px;
  min-height: 22px;
  font-size: 14px;
  color: var(--c-muted);
}

.vibes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.zones-section {
  padding: 0px 4px;
  max-width: 1000px;
  margin: 0 auto;
}

.zones-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.zones-subtitle {
  text-align: center;
  margin: 0 auto 26px auto;
  max-width: 720px;
  color: var(--c-muted);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.zone-card {
  padding: 20px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.zone-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-muted);
}

.zone-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.zone-tags {
  font-size: 12px;
  color: var(--c-muted);
}

/* Platform Stats Banner */
.stats-banner {
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: white;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Offerings Section */
.offerings-section {
  padding: 60px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.offerings-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.offering-card {
  padding: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  transition: all 0.2s;
}

.offering-card:hover {
  border-color: var(--c-primary);
  transform: translateY(-1px);
}

.ambient-section {
  padding: 46px 24px;
}

.ambient-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 18px 16px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--c-surface) 72%, transparent);
  border: 1px solid color-mix(in oklab, var(--c-border) 80%, transparent);
}

.ambient-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 10px;
}

.ambient-line {
  font-size: 14px;
  color: color-mix(in oklab, var(--c-text) 78%, transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  min-height: 22px;
}

.ambient-line.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-cta {
  padding: 6px 4px 0px;
}

.footer-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 24px;
  border-radius: 18px;
  background: color-mix(in oklab, var(--c-surface) 70%, transparent);
  border: 1px solid color-mix(in oklab, var(--c-border) 80%, transparent);
}

.footer-cta-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-cta-subtitle {
  color: var(--c-muted);
  max-width: 680px;
  margin: 0 auto 22px auto;
}

@media (prefers-reduced-motion: reduce) {
  .flow-gradient {
    animation: none;
    background-size: auto;
  }
  .flow-lines path {
    animation: none;
  }
  .ambient-line {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .vibe-pill {
    transition: none;
  }
  .vibe-image-frame {
    transition: none;
  }
  .vibe-image-card:hover .vibe-image-frame {
    transform: none;
  }
}

@media (max-width: 640px) {
  .vibe-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.offering-category {
  display: inline-block;
  padding: 4px 10px;
  background: color-mix(in oklab, var(--c-primary) 15%, transparent);
  color: var(--c-primary);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.offering-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.offering-meta {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  gap: 12px;
}

/* Location Picker */
.location-picker {
  margin-bottom: 32px;
  max-width: 400px;
}

.location-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.location-icon {
  position: absolute;
  left: 16px;
  font-size: 18px;
  pointer-events: none;
}

.location-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  font-size: 16px;
  border: 2px solid var(--c-border);
  border-radius: 14px;
  background: var(--c-surface);
  color: var(--c-text);
  transition: all 0.2s;
}

.location-input:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-primary) 15%, transparent);
}

.location-input::placeholder {
  color: var(--c-muted);
}

.location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.location-dropdown.open {
  display: block;
}

.location-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s;
}

.location-option:hover {
  background: #fff;
}

.location-option:first-child {
  border-radius: 12px 12px 0 0;
}

.location-option:last-child {
  border-radius: 0 0 12px 12px;
}

.location-option:only-child {
  border-radius: 12px;
}

.location-option-city {
  font-weight: 600;
  color: var(--c-text);
}

.location-option-country {
  font-size: 13px;
  color: var(--c-muted);
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-steps {
    grid-template-columns: 1fr;
  }
  .landing-secondary {
    display: block;
    margin: 16px 0 0 0;
  }
}