/* ═══════════════════════════════════════════════
   PLUMAGE WEBSITE — style.css
   Dark, photo-pure, calm. Exact brand tokens from
   the iOS app's Color+Plumage design system.
   ═══════════════════════════════════════════════ */

/* ─── Design tokens ─────────────────────────── */
:root {
  --bg:               #0B0C09;
  --surface:          #15160F;
  --surface-elevated: #1F2018;
  --text-primary:     #F4F1EA;
  --text-secondary:   #9C968A;
  --hairline:         #2A2B23;
  --accent:           #093607;
  --accent-bright:    #67B04E;
  --brand:            #1D761D;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 9999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Bird photo gradient palettes ──────────── */
.bphoto-sky     { background: linear-gradient(160deg, #2a4a7a 0%, #1a3060 45%, #0d1f48 100%); }
.bphoto-forest  { background: linear-gradient(140deg, #1a3a18 0%, #0d2810 55%, #071a08 100%); }
.bphoto-wetland { background: linear-gradient(150deg, #2a4a3a 0%, #1a3028 55%, #0d1f18 100%); }
.bphoto-dawn    { background: linear-gradient(125deg, #4a3820 0%, #2e2212 55%, #1a1508 100%); }
.bphoto-dusk    { background: linear-gradient(155deg, #3a2a4a 0%, #201828 55%, #100d1a 100%); }
.bphoto-meadow  { background: linear-gradient(135deg, #3a5a1a 0%, #2a4010 55%, #1a2a08 100%); }
.bphoto-coast   { background: linear-gradient(145deg, #1a3a5a 0%, #0d2840 55%, #071a2a 100%); }
.bphoto-golden  { background: linear-gradient(130deg, #4a3820 0%, #2e2212 55%, #1a1508 100%); }
.bphoto-blue    { background: linear-gradient(150deg, #1a2a4a 0%, #0d1a38 55%, #071020 100%); }

/* subtle highlight suggesting a bird in the "photo" */
.fp-bird-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 55% 45%, rgba(103,176,78,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.detail-glow {
  background: radial-gradient(ellipse 50% 35% at 50% 40%, rgba(180,160,100,0.15) 0%, transparent 70%);
}

/* ─── Accent helper ──────────────────────────── */
.accent-line { background: rgba(103, 176, 78, 0.55) !important; }


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(11, 12, 9, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(42, 43, 35, 0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-bird-mark { color: var(--accent-bright); flex-shrink: 0; }

.nav-cta {
  background: var(--accent);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: #0d4b09;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(9, 54, 7, 0.45);
}

.nav-cta:active { transform: translateY(0); }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

/* radial spotlight in center */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%,
      rgba(9, 54, 7, 0.30) 0%,
      rgba(103, 176, 78, 0.08) 40%,
      transparent 70%),
    radial-gradient(ellipse 50% 35% at 20% 90%,
      rgba(29, 118, 29, 0.07) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.048;
  filter: url(#grain);
  background: var(--text-primary);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(103, 176, 78, 0.1);
  border: 1px solid rgba(103, 176, 78, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 32px;

  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s 0.1s var(--ease-out-expo) forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.25s var(--ease-out-expo) forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-bright);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;

  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.4s var(--ease-out-expo) forwards;
}

.hero-form {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.55s var(--ease-out-expo) forwards;
}

.input-row {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
  background: rgba(21, 22, 15, 0.8);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 5px 5px 5px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-row:focus-within {
  border-color: rgba(103, 176, 78, 0.4);
  box-shadow: 0 0 0 3px rgba(103, 176, 78, 0.08);
}

.input-row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
}

.input-row input::placeholder { color: var(--text-secondary); opacity: 0.7; }

.input-row button {
  background: var(--accent-bright);
  color: #080D08;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.input-row button:hover { background: #7dc85e; transform: scale(1.02); }
.input-row button:active { transform: scale(0.98); }

.form-note {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-top: 12px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.6s 1.1s ease forwards;
}

.hero-scroll-hint span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.5;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--hairline), transparent);
  animation: scrollPulse 2s 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.2); }
}


/* ═══════════════════════════════════════════════
   STATEMENT SECTION
   ═══════════════════════════════════════════════ */
#statement {
  height: 200vh;
  position: relative;
}

.statement-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statement-text {
  text-align: center;
  transform-origin: center center;
  will-change: transform, opacity;
  padding: 32px;
}

.statement-line {
  font-family: var(--font-serif);
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: block;
}

.statement-line em {
  font-style: italic;
  color: var(--accent-bright);
}


/* ═══════════════════════════════════════════════
   SHOWCASE SECTION — sticky scroll
   ═══════════════════════════════════════════════ */
#showcase {
  height: 500vh;
  position: relative;
}

.showcase-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 0 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Phone mockup */
.showcase-phone-wrap {
  flex-shrink: 0;
  perspective: 1200px;
}

.showcase-phone {
  transform: perspective(1200px) rotateY(-10deg) rotateX(2deg) rotateZ(-1deg);
  transition: transform 0.8s var(--ease-out-expo);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(9,54,7,0.2));
}

.showcase-phone:hover {
  transform: perspective(1200px) rotateY(-5deg) rotateX(1deg) rotateZ(0deg);
}

.phone-shell {
  width: 262px;
  height: 545px;
  background: #0c0d0b;
  border-radius: 46px;
  border: 1.5px solid rgba(255,255,255,0.11);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 0 0 1px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
}

.phone-dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 94px;
  height: 29px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #0B0C09;
}

/* ─── Scene base ─────────────────────────────── */
.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  pointer-events: none;
  overflow: hidden;
  background: #0B0C09;
}

.scene.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ─── Shared phone UI elements ───────────────── */
.scene-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 14px 10px;
}

.sh-logo {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.sh-icons { display: flex; gap: 8px; }
.sh-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--surface-elevated);
}

.phone-tab-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 58px;
  background: rgba(11,12,9,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px 6px;
}

.tab {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
}

.tab-dot {
  width: 22px; height: 4px;
  border-radius: 2px;
  background: var(--surface-elevated);
}

.tab-active .tab-dot {
  background: var(--accent-bright);
  box-shadow: 0 0 6px rgba(103,176,78,0.5);
}

/* ─── Scene 0: Feed ──────────────────────────── */
.feed-stream {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  max-height: 430px;
}

.feed-card { position: relative; overflow: hidden; }
.feed-photo {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.feed-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 10px;
  background: var(--bg);
}

.fm-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-elevated);
  flex-shrink: 0;
}

.fm-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }

.fm-line {
  height: 7px;
  border-radius: 4px;
  background: var(--surface-elevated);
}

.fm-name { width: 60%; }
.fm-species { width: 45%; }
.fm-heart {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--surface-elevated);
  flex-shrink: 0;
}

/* ─── Scene 1: Photo Detail ──────────────────── */
.detail-nav {
  position: absolute;
  top: 52px; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.detail-back {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}

.back-chevron {
  width: 8px; height: 8px;
  border-left: 1.5px solid rgba(255,255,255,0.7);
  border-bottom: 1.5px solid rgba(255,255,255,0.7);
  transform: rotate(45deg) translateX(2px);
}

.detail-nav-dots { display: flex; gap: 4px; }
.nav-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.detail-photo {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.detail-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.di-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-elevated);
  flex-shrink: 0;
}

.di-names { flex: 1; display: flex; flex-direction: column; gap: 4px; }

.di-line {
  height: 7px;
  border-radius: 4px;
  background: var(--surface-elevated);
}

.di-name { width: 50%; }
.di-species { width: 70%; }
.wide-line { width: 78% !important; }

.di-follow-btn {
  width: 52px; height: 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  flex-shrink: 0;
}

.detail-rows { display: flex; flex-direction: column; gap: 8px; }

.dr-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dr-icon {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--surface-elevated);
  flex-shrink: 0;
}

.accent-icon { background: rgba(103,176,78,0.35) !important; }

.dr-line {
  height: 6px;
  border-radius: 3px;
  background: var(--surface-elevated);
  flex: 1;
}

.short-line { max-width: 55%; }

.dr-pill {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c8a630;
  background: rgba(200, 166, 48, 0.15);
  border: 1px solid rgba(200, 166, 48, 0.3);
  border-radius: var(--radius-pill);
  padding: 2px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.detail-actions {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}

.da-btn {
  height: 28px;
  flex: 1;
  border-radius: var(--radius-pill);
  background: var(--surface-elevated);
}

.da-btn-accent { background: var(--accent) !important; }

/* ─── Scene 2: Search ────────────────────────── */
.search-header { padding-bottom: 6px; }

.search-bar-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  width: 100%;
}

.sb-icon {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--text-secondary);
  opacity: 0.4;
}

.sb-input {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--surface-elevated);
}

.search-tabs {
  display: flex;
  gap: 6px;
  padding: 0 14px 10px;
  overflow: hidden;
}

.stab {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  white-space: nowrap;
}

.stab-active {
  color: #080D08;
  background: var(--accent-bright);
  border-color: transparent;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 0 3px;
  flex: 1;
}

.masonry-col { display: flex; flex-direction: column; gap: 3px; }

.masonry-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

/* ─── Scene 3: Profile ───────────────────────── */
.profile-hero-img {
  height: 130px;
  position: relative;
  overflow: hidden;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 8px;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}

.profile-avatar-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--bg);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.profile-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-elevated), var(--accent));
}

.profile-name-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
}

.pn-line {
  height: 7px;
  border-radius: 3px;
  background: var(--surface-elevated);
}

.pn-name { width: 80px; }
.pn-handle { width: 55px; background: rgba(103,176,78,0.3) !important; }

.profile-tabs {
  display: flex;
  border-bottom: 1px solid var(--hairline);
  margin: 0 14px;
}

.ptab {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -1px;
}

.ptab-active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-bright);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 8px 14px 60px;
}

.pg-photo {
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
}


/* ─── Showcase text panels ───────────────────── */
.showcase-text-wrap {
  flex: 1;
  max-width: 420px;
  position: relative;
  min-height: 320px;
}

.showcase-step {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  pointer-events: none;
  width: 100%;
}

.showcase-step.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.step-index {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
  opacity: 0.8;
}

.showcase-step h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.showcase-step p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Scroll progress dots */
.showcase-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.progress-track {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hairline);
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.progress-dot.active {
  background: var(--accent-bright);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(103,176,78,0.5);
}


/* ═══════════════════════════════════════════════
   MANIFESTO SECTION
   ═══════════════════════════════════════════════ */
#manifesto {
  padding: 120px 32px;
  background: linear-gradient(to bottom, var(--bg), var(--surface), var(--bg));
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.manifesto-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 64px;
  max-width: 440px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}

.manifesto-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.manifesto-item:hover {
  background: var(--surface-elevated);
  border-color: rgba(103, 176, 78, 0.2);
}

.mi-no {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}

.mi-no s {
  text-decoration: line-through;
  text-decoration-color: rgba(103, 176, 78, 0.6);
  text-decoration-thickness: 1.5px;
}

.mi-arrow {
  font-size: 18px;
  color: var(--accent-bright);
  opacity: 0.7;
  font-weight: 300;
}

.mi-yes {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}


/* ═══════════════════════════════════════════════
   PHOTOGRAPHERS SECTION
   ═══════════════════════════════════════════════ */
#photographers {
  padding: 120px 32px;
  background: var(--surface);
  position: relative;
}

#photographers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 95% 50%, rgba(9, 54, 7, 0.14), transparent 60%);
  pointer-events: none;
}

.photographers-inner { max-width: 1100px; margin: 0 auto; position: relative; }

.photographers-header {
  max-width: 580px;
  margin-bottom: 72px;
}

.photographers-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.photographers-header p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  background: var(--surface-elevated);
  border-color: rgba(103, 176, 78, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(9, 54, 7, 0.22);
}

.fc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(9, 54, 7, 0.4);
  border: 1px solid rgba(103, 176, 78, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   COMMUNITY SECTION
   ═══════════════════════════════════════════════ */
#community {
  padding: 120px 32px;
  background: linear-gradient(to bottom, var(--bg), #0d110d);
  overflow: hidden;
  position: relative;
}

#community::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 50% at 75% 25%, rgba(29, 118, 29, 0.08), transparent 55%);
  pointer-events: none;
}

.community-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.community-text { max-width: 440px; }

.community-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.community-body {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
}

.community-visual {
  flex: 1;
  position: relative;
  height: 380px;
}

.cv-card {
  position: absolute;
  width: 200px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.cv-card:hover { transform: translateY(-4px) !important; }

.cv-card-1 { top: 0; left: 0; transform: rotate(-2deg); z-index: 1; }
.cv-card-2 { top: 60px; left: 130px; transform: rotate(1.5deg); z-index: 3; }
.cv-card-3 { top: 160px; left: 30px; transform: rotate(-1deg); z-index: 2; }

.cv-photo {
  height: 130px;
  position: relative;
}

.cv-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.cv-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-elevated);
  flex-shrink: 0;
}

.cv-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }

.cv-line {
  height: 6px;
  border-radius: 3px;
  background: var(--surface-elevated);
}

.cv-line-a { width: 65%; }
.cv-line-b { width: 45%; }


/* ═══════════════════════════════════════════════
   WAITLIST SECTION
   ═══════════════════════════════════════════════ */
#waitlist {
  padding: 140px 32px 120px;
  text-align: center;
  background: linear-gradient(to bottom, #0d110d, var(--bg));
}

.waitlist-inner { max-width: 560px; margin: 0 auto; }

.waitlist-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 20px;
  opacity: 0.8;
}

#waitlist h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

#waitlist p {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.65;
}

.waitlist-form { width: 100%; }

.wl-input-row {
  display: flex;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 12px;
}

.wl-input-row:focus-within {
  border-color: rgba(103, 176, 78, 0.45);
  box-shadow: 0 0 0 3px rgba(103, 176, 78, 0.1);
}

.wl-input-row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
}

.wl-input-row input::placeholder { color: var(--text-secondary); opacity: 0.6; }

.wl-input-row button {
  background: var(--accent);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wl-input-row button:hover {
  background: #0d4b09;
  transform: scale(1.02);
}

.wl-note {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.55;
  margin-bottom: 0 !important;
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: rgba(9, 54, 7, 0.2);
  border: 1px solid rgba(103, 176, 78, 0.3);
  border-radius: var(--radius-lg);
}

.ws-check { opacity: 0.9; }

.waitlist-success p {
  font-size: 18px !important;
  color: var(--text-primary) !important;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--hairline);
  padding: 48px 32px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-links a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.4;
}


/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(var(--dy, 16px)); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .showcase-pin {
    flex-direction: column;
    gap: 48px;
    padding: 80px 32px 80px;
    justify-content: center;
  }

  #showcase { height: 600vh; }

  .showcase-phone-wrap { order: -1; }

  .showcase-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(10px);
    text-align: center;
  }

  .showcase-step.active { transform: none; }

  .showcase-text-wrap {
    max-width: 100%;
    width: 100%;
    position: relative;
    min-height: 240px;
    overflow: hidden;
  }

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

  .community-inner { flex-direction: column; }
  .community-visual { width: 100%; }

  .cv-card-1 { left: 0; }
  .cv-card-2 { left: 50%; }
  .cv-card-3 { left: 25%; top: 180px; }
}

@media (max-width: 640px) {
  #nav { padding: 0 16px; }

  .hero-content { padding: 100px 20px 70px; }

  .input-row { flex-direction: column; padding: 8px; border-radius: var(--radius-lg); }
  .input-row input { padding: 8px 12px; }
  .input-row button { width: 100%; padding: 12px; }

  #statement { height: 160vh; }
  .statement-pin { padding: 0 20px; }

  /* Phone must fit above text in the 100vh sticky pin on a real phone viewport.
     At 390×844: 40px top + 390px phone + 28px gap + 180px text + 40px bottom = 678px < 844px */
  .showcase-pin {
    padding: 40px 24px;
    gap: 28px;
  }
  .phone-shell {
    width: 190px;
    height: 395px;
    border-radius: 34px;
  }
  .phone-dynamic-island {
    width: 72px;
    height: 22px;
    top: 10px;
  }
  /* Disable 3D rotation on mobile. The desktop drop-shadow overflows the layout
     box and paints over the text step below — replace with a contained box-shadow. */
  .showcase-phone {
    transform: none !important;
    filter: none;
    transition: none;
  }
  .showcase-phone .phone-shell {
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04), 0 0 0 1px rgba(0,0,0,0.6);
  }
  .showcase-text-wrap { min-height: 180px; }
  .showcase-step h2 { font-size: 26px; }

  .feature-grid { grid-template-columns: 1fr; }

  .manifesto-grid { grid-template-columns: 1fr 1fr; }

  .wl-input-row { flex-direction: column; padding: 8px; border-radius: var(--radius-lg); }
  .wl-input-row input { padding: 8px 12px; }
  .wl-input-row button { width: 100%; }

  .community-visual { display: none; }

  .photographers-header p, .community-body { font-size: 16px; }

  #manifesto, #photographers, #community, #waitlist { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
