/* ───────────────────────────────────────────
   Cadeenz Landing Page — styles.css
   Brand: dark #070D09, accent #4b950a
─────────────────────────────────────────── */

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

:root {
  --bg:          #070D09;
  --panel:       #111A14;
  --panel-soft:  #0D1510;
  --panel-hard:  #16201A;
  --border:      #26342C;
  --text:        #EAF1EC;
  --text-2:      #B7C4BA;
  --text-muted:  #7D8D82;
  --accent:      #4b950a;
  --accent-soft: #9BE65C;
  --accent-glow: rgba(75, 149, 10, 0.35);
  --accent-dim:  rgba(75, 149, 10, 0.12);
  --danger:      #F17676;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 60px rgba(75, 149, 10, 0.15), 0 0 120px rgba(75, 149, 10, 0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Ambient canvas ── */
#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 10px; left: 0; right: 0;
  z-index: 100;
  padding: 12px 24px 0;
  transition: background var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(7, 13, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 32px; width: auto; filter: brightness(1.1); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: opacity var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  top: 50px; left: 0; right: 0;
  z-index: 99;
  background: rgba(7, 13, 9, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 16px 24px 15px 24px;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  color: var(--text-2);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.mobile-cta {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 50px;
  padding: 14px 24px;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section primitives ── */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 152px 24px 80px;
  z-index: 1;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(75, 149, 10, 0.25);
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.accent-word {
  color: var(--accent-soft);
  position: relative;
}
.accent-word::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ── Phone frame ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-frame {
  position: relative;
  width: 260px;
  background: #0A1410;
  border-radius: 44px;
  border: 1.5px solid rgba(75, 149, 10, 0.3);
  box-shadow:
    0 0 0 6px rgba(75, 149, 10, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: phone-float 6s ease-in-out infinite;
  overflow: hidden;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.phone-screen {
  padding: 20px 16px 24px;
  min-height: 500px;
}
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--text-2);
  margin-bottom: 20px;
  padding: 0 4px;
}
.phone-time { font-weight: 700; font-size: 12px; }
.phone-icons { display: flex; gap: 6px; font-size: 8px; opacity: 0.7; }
.phone-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.phone-tab-label {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  align-self: flex-start;
  padding: 0 4px;
  letter-spacing: -0.02em;
}
.phone-timer-ring {
  position: relative;
  width: 180px; height: 180px;
}
.timer-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.timer-track {
  fill: none;
  stroke: #1A2C20;
  stroke-width: 10;
}
.timer-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 125;
  filter: drop-shadow(0 0 8px var(--accent-glow));
  transition: stroke-dashoffset 1s linear;
}
.timer-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.timer-display {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.timer-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.phone-session-info { width: 100%; display: flex; justify-content: center; }
.session-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--accent-dim);
  border: 1px solid rgba(75, 149, 10, 0.2);
  color: var(--accent-soft);
}
.session-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.phone-task-preview {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0F1A13;
  border: 1px solid #1E2E22;
  border-radius: 12px;
  padding: 11px 14px;
}
.phone-task-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent-soft);
  font-weight: 700;
  flex-shrink: 0;
}
.phone-task-text {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.phone-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}
.ctrl-secondary {
  background: #0F1A13;
  border: 1px solid #1E2E22;
  color: var(--text-muted);
}
.ctrl-primary {
  background: var(--accent);
  border: none;
  box-shadow: 0 4px 16px var(--accent-glow);
  width: 56px; height: 56px;
}
.phone-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 60px;
  background: var(--accent);
  filter: blur(40px);
  opacity: 0.25;
  border-radius: 50%;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-1 {
  width: 300px; height: 300px;
  background: rgba(75, 149, 10, 0.12);
  top: -60px; right: -80px;
}
.orb-2 {
  width: 200px; height: 200px;
  background: rgba(155, 230, 92, 0.06);
  bottom: 0; left: -60px;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  animation: fade-in-up 1.5s 2s both;
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 6px;
  background: var(--accent-soft);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ── Features ── */
.features {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card--large:nth-of-type(1) { grid-column: span 2; }
.feature-card--large:nth-of-type(4) { grid-column: span 2; }

.feature-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(75, 149, 10, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(75, 149, 10, 0.1);
}
.feature-icon-wrap { margin-bottom: 24px; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1px solid rgba(75, 149, 10, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  transition: box-shadow var(--transition);
}
.feature-card:hover .feature-icon {
  box-shadow: 0 0 24px var(--accent-glow);
}
.deep-icon {
  background: linear-gradient(135deg, rgba(75, 149, 10, 0.15), rgba(75, 149, 10, 0.04));
}
.feature-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
}
.feature-accent-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover .feature-accent-bar { opacity: 1; }

/* ── Manifesto ── */
.manifesto {
  position: relative;
  padding: 80px 24px;
  z-index: 1;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.manifesto-quote {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.manifesto-quote::before {
  content: '"';
  position: absolute;
  top: -32px; left: -16px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  font-style: normal;
  line-height: 1;
}
.manifesto-source {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.manifesto-orb {
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse at center, rgba(75, 149, 10, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── How it works ── */
.how {
  padding: 120px 0;
  z-index: 1;
  position: relative;
}
.steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.step:last-child { padding-bottom: 0; }
.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--panel);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-soft);
  letter-spacing: 0.03em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(75, 149, 10, 0.08);
}
.step-line {
  flex: 1;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: 8px;
  min-height: 48px;
}
.step-content { padding-top: 12px; }
.step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Download CTA ── */
.download {
  padding: 120px 24px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(75, 149, 10, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.download-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
.download-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.download-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.download-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}
.download-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.store-badge {
  text-decoration: none;
  color: var(--text);
  background: #0A120D;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 149, 10, 0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(75, 149, 10, 0.1);
}
.store-badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
}
.store-icon {
  width: 28px; height: 28px;
  color: var(--text);
  flex-shrink: 0;
}
.store-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.store-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.store-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.download-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-icon-frame {
  width: 140px; height: 140px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px rgba(75, 149, 10, 0.3),
              0 24px 60px rgba(0,0,0,0.5),
              0 0 60px rgba(75, 149, 10, 0.2);
  animation: phone-float 5s ease-in-out infinite;
}
.app-icon-img { width: 100%; height: 100%; object-fit: cover; }
.download-orb {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 149, 10, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  z-index: 1;
  position: relative;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-logo { height: 28px; width: auto; margin-bottom: 12px; filter: brightness(1.1); }
.footer-tagline { font-size: 14px; color: var(--text-muted); font-style: italic; }
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.footer-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-badges { display: flex; gap: 8px; }
.platform-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── Responsive ── */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large:nth-of-type(1) { grid-column: span 2; }
  .feature-card--large:nth-of-type(4) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .mobile-menu { top: 50px; left: 0; right: 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1 !important; }
  .download-inner { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px; }
  .download-visual { display: none; }
  .hero-stats { gap: 20px; }
  .hero { padding: 96px 24px 60px; }
  .hero-headline { margin-bottom: 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-badge { margin-bottom: 20px; }
  .hero-actions { margin-bottom: 36px; }
  .steps { gap: 0; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .download-badges { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 24px; }
}

/* ───────────────────────────────────────────
   Sub-pages: shared layout (FAQ, Suggestions,
   Privacy, Terms)
─────────────────────────────────────────── */

.subpage-hero {
  position: relative;
  padding: 168px 24px 56px;
  z-index: 1;
  overflow: hidden;
}
.subpage-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.subpage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(75, 149, 10, 0.25);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.subpage-title {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.subpage-title .accent-word { color: var(--accent-soft); }
.subpage-lede {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}
.subpage-meta {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.subpage-orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 149, 10, 0.10) 0%, transparent 65%);
  top: -40%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(20px);
}

.subpage-body {
  position: relative;
  z-index: 1;
  padding: 24px 24px 96px;
}
.subpage-inner {
  max-width: 880px;
  margin: 0 auto;
}

.suggest-embed {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.suggest-embed iframe {
  max-width: 100%;
  width: 640px;
  border-radius: 12px;
}

/* Prose / long-form content (privacy, terms) */
.prose h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 48px 0 14px;
  scroll-margin-top: 96px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  margin: 28px 0 10px;
}
.prose p,
.prose li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol {
  margin: 0 0 18px 22px;
}
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--accent-soft); }
.prose strong { color: var(--text); font-weight: 700; }
.prose a {
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(155, 230, 92, 0.25);
  transition: border-color var(--transition), color var(--transition);
}
.prose a:hover { color: var(--text); border-bottom-color: var(--accent-soft); }
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Legal layout: TOC + content side-by-side on wide screens */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: flex-start;
}
.legal-toc {
  position: sticky;
  top: 96px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 0;
}
.legal-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-toc a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.legal-toc a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-left-color: var(--accent);
}

/* FAQ accordion (using <details>) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: rgba(75, 149, 10, 0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 22px 64px 22px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  position: relative;
  user-select: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-soft);
  border-bottom: 2px solid var(--accent-soft);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after {
  transform: translateY(-20%) rotate(-135deg);
}
.faq-question:hover { color: var(--accent-soft); }
.faq-answer {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(155, 230, 92, 0.25);
}
.faq-answer a:hover { border-bottom-color: var(--accent-soft); }

.faq-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 40px 0 16px;
}
.faq-category:first-child { margin-top: 0; }

/* Suggestions form */
.suggest-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.suggest-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}
.field-label .field-optional {
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}
.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.field-input,
.field-textarea,
.field-select {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  background: var(--panel-hard);
}
.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--text-muted);
}
.field-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.field-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239BE65C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.field-select option {
  background: var(--panel);
  color: var(--text);
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

/* Cards row for ways-to-help / contact alternatives */
.alt-channels {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.alt-channel {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--transition), border-color var(--transition);
}
.alt-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 149, 10, 0.35);
}
.alt-channel-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  margin-bottom: 4px;
}
.alt-channel-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.alt-channel-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color var(--transition), transform var(--transition);
}
.back-link:hover { color: var(--accent-soft); transform: translateX(-2px); }

/* Sub-page responsive */
@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc {
    position: relative;
    top: auto;
    flex-direction: row;
    flex-wrap: wrap;
    background: var(--panel-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    gap: 4px;
  }
  .legal-toc-title { width: 100%; margin-bottom: 8px; }
  .legal-toc a { padding: 6px 10px; border-left: none; border-bottom: 2px solid transparent; }
  .legal-toc a:hover { border-left: none; border-bottom-color: var(--accent); }
}

@media (max-width: 768px) {
  .subpage-hero { padding: 132px 24px 40px; }
  .suggest-form { padding: 28px; }
  .suggest-form-grid { grid-template-columns: 1fr; }
  .alt-channels { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: flex-start; }
  .btn-submit { width: 100%; justify-content: center; }
}
