/* ============================================
   FORAGE — Marketing Site
   Aesthetic: Dark Forest Floor
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0f0a;
  --bg-raised: #151a12;
  --bg-card: #1a1f16;
  --bg-card-hover: #212920;
  --border: rgba(109, 190, 90, 0.12);
  --border-strong: rgba(109, 190, 90, 0.25);
  --green: #6DBE5A;
  --green-dim: #4A9040;
  --green-glow: rgba(109, 190, 90, 0.15);
  --green-bright: #8ED47A;
  --cream: #e8e8d8;
  --cream-dim: #a0a090;
  --cream-faint: #686860;
  --warm: #c4a862;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Grain Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--green-bright); }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 120px 0;
  position: relative;
}

/* ============================================
   NAV BAR
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(12, 15, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg { height: 28px; width: auto; }
.nav-logo span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--green);
  color: var(--bg) !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
  color: var(--bg) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(109, 190, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative leaves with image fills */
.hero-leaf {
  position: absolute;
  opacity: 0.75;
  pointer-events: none;
  filter: saturate(0.85) brightness(1);
  transition: opacity 0.4s;
}
.hero-leaf--1 {
  top: 5%;
  left: 5%;
  transform: rotate(-35deg);
  width: 220px;
}
.hero-leaf--2 {
  bottom: 8%;
  right: 4%;
  transform: rotate(20deg);
  width: 180px;
}
.hero-leaf--3 {
  top: 25%;
  right: 10%;
  transform: rotate(-10deg);
  width: 130px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-logo svg {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 30px rgba(109, 190, 90, 0.3));
}
.hero-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-tagline em {
  font-style: normal;
  color: var(--green);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--green);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(109, 190, 90, 0.3);
  color: var(--bg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 28px;
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  color: var(--green);
  border-color: var(--green);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
.scroll-hint .material-symbols-outlined { font-size: 20px; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--green-glow);
  border-radius: 999px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--border);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--green-glow);
  color: var(--green);
  margin-bottom: 20px;
  font-size: 26px;
}
.feature-icon .material-symbols-outlined {
  font-size: 26px;
  font-variation-settings: 'FILL' 0, 'wght' 400;
}

.feature-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cream);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

/* Connecting line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-glow), var(--border-strong), var(--green-glow));
}

.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  background: var(--bg);
  border: 2px solid var(--border-strong);
  position: relative;
  z-index: 2;
}
.step h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   BUILT DIFFERENT
   ============================================ */
.differentiators { background: var(--bg); }

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

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.diff-item:hover {
  border-color: var(--border);
  background: var(--bg-card);
}
.diff-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green-glow);
  color: var(--green);
}
.diff-icon .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: 'FILL' 0, 'wght' 400;
}
.diff-item h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--cream);
}
.diff-item p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.55;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(109, 190, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: var(--cream-dim);
  margin-bottom: 36px;
  font-size: 1.05rem;
  position: relative;
}

/* Signup form */
.signup-form {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.signup-input-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.signup-input-wrap input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--cream);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-input-wrap input::placeholder {
  color: var(--cream-faint);
}
.signup-input-wrap input:focus {
  border-color: var(--green);
}
.signup-input-wrap .btn-primary {
  white-space: nowrap;
  padding: 16px 28px;
  flex-shrink: 0;
}
.signup-hint {
  font-size: 0.8rem !important;
  color: var(--cream-faint) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}
.signup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.signup-success p {
  margin-bottom: 0;
  color: var(--cream);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand svg { height: 22px; width: auto; }
.footer-brand span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dim);
}
.footer-center {
  font-size: 0.85rem;
  color: var(--cream-faint);
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--cream-faint);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }

/* ============================================
   PHOTO SHOWCASE (below hero)
   ============================================ */
.showcase {
  padding: 0 0 40px;
  background: var(--bg);
  overflow: hidden;
}
.showcase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.showcase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.showcase-card:hover img {
  transform: scale(1.04);
}
/* Gradient overlay for text legibility */
.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 15, 10, 0.75) 0%, transparent 50%);
  pointer-events: none;
}
.showcase-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.showcase-caption span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cream-dim);
  margin-top: 2px;
}

/* Placeholder gradient fills for images not yet added */
.showcase-card--placeholder {
  background: linear-gradient(135deg, #1a2418 0%, #0f1a0d 50%, #1a1f16 100%);
}
.showcase-card--placeholder.warm {
  background: linear-gradient(135deg, #1f1a12 0%, #1a150e 50%, #1f1816 100%);
}
.showcase-card--placeholder.cool {
  background: linear-gradient(135deg, #121a1f 0%, #0e1518 50%, #161a1f 100%);
}

/* ============================================
   COMMUNITY DIAGRAM (animated SVG)
   ============================================ */
.community-diagram {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.diagram-wrap {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.diagram-wrap svg {
  width: 100%;
  height: auto;
}

/* Animated dash flow along connections */
@keyframes dash-flow {
  to { stroke-dashoffset: -24; }
}
.diagram-connection {
  stroke-dasharray: 8 16;
  stroke-dashoffset: 0;
  animation: dash-flow 2s linear infinite;
}

/* Glow on center node */
@keyframes center-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(109, 190, 90, 0.3)); }
  50% { filter: drop-shadow(0 0 24px rgba(109, 190, 90, 0.5)); }
}
.diagram-center {
  animation: center-glow 3s ease-in-out infinite;
}

/* Node label */
.diagram-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: var(--cream-dim);
}
.diagram-label-center {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  fill: var(--green);
}

/* ============================================
   LIFESTYLE BREAK (fullwidth image)
   ============================================ */
.lifestyle-break {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lifestyle-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder gradient for when no image is set */
.lifestyle-break--placeholder {
  background: linear-gradient(135deg, #0f1a0d 0%, #141414 30%, #1a1812 60%, #0c0f0a 100%);
}
.lifestyle-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 15, 10, 0.85) 0%, rgba(12, 15, 10, 0.3) 50%, rgba(12, 15, 10, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.lifestyle-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.lifestyle-content blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  max-width: 600px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.lifestyle-content cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
}

/* ============================================
   TRAY / PANEL SLIDE ANIMATIONS
   ============================================ */
@keyframes tray-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@keyframes tray-out {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}
.tray-slide-up {
  animation: tray-in 0.3s ease-out forwards;
}
.tray-slide-down {
  animation: tray-out 0.25s ease-in forwards;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger > .reveal:nth-child(6) { transition-delay: 400ms; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (768–1024px) --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { gap: 32px; }

  .hero-leaf--1 { width: 160px; left: 2%; }
  .hero-leaf--2 { width: 130px; right: 2%; }
  .hero-leaf--3 { width: 100px; right: 5%; }
}

/* --- Small tablet / large phone (max 768px) --- */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  /* Nav — slide down/up animation */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(12, 15, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: block; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 110px 20px 60px;
  }
  .scroll-hint { display: none; }
  .hero-logo svg { height: 38px; }
  .hero-logo-text { font-size: 2.2rem; }
  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 440px;
  }

  /* Hero leaves — hide on tablet/mobile */
  .hero-leaf { display: none; }

  /* Showcase */
  .showcase-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  .showcase-card { aspect-ratio: 16 / 9; }
  .showcase-caption { font-size: 0.8rem; bottom: 12px; left: 14px; }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card { padding: 28px 22px; }

  /* Diagram */
  .community-diagram { padding: 50px 0; }
  .diagram-wrap { padding: 0; max-width: 105%; margin-left: -2.5%; }

  /* How it works */
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps::before { display: none; }
  .step-number { width: 64px; height: 64px; font-size: 1.3rem; }

  /* Differentiators */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { padding: 18px; }

  /* Lifestyle */
  .lifestyle-break { height: 280px; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Section headers */
  .section-header { margin-bottom: 48px; }
}

/* --- Phone (max 480px) --- */
@media (max-width: 480px) {
  section { padding: 56px 0; }

  .hero { padding: 100px 16px 48px; }
  .hero-logo { gap: 10px; margin-bottom: 24px; }
  .hero-logo svg { height: 32px; }
  .hero-logo-text { font-size: 1.8rem; }
  .hero-tagline { margin-bottom: 18px; }
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }


  /* Scroll hint */
  .scroll-hint { bottom: 20px; }

  /* Showcase */
  .showcase { padding-bottom: 24px; }

  /* Signup form */
  .signup-input-wrap { flex-direction: column; }
  .signup-input-wrap .btn-primary { width: 100%; }
  .signup-form { padding: 0 8px; }

  /* Lifestyle */
  .lifestyle-break { height: 220px; }
  .lifestyle-content blockquote { font-size: 1.15rem; }

  /* Diagram — compact */
  .community-diagram { padding: 40px 0; }
  .section-header { margin-bottom: 36px; }
}
