/* PhotoMeterPro — hybrid cinematic dark + light informational site */

:root {
  --accent: #FFD65A;
  --accent-bright: #FFCC00;
  --dark-bg: #000000;
  --dark-panel: rgba(255, 255, 255, 0.055);
  --dark-line: rgba(255, 255, 255, 0.14);
  --dark-line-strong: rgba(255, 255, 255, 0.28);
  --dark-text: #ffffff;
  --dark-muted: rgba(255, 255, 255, 0.72);
  --light-bg: #ffffff;
  --light-muted-bg: #f5f5f7;
  --light-text: #1d1d1f;
  --light-muted: #6e6e73;
  --light-border: rgba(0, 0, 0, 0.1);
  --light-border-strong: rgba(0, 0, 0, 0.14);
  --free: #30d158;
  --pro: #bf5af2;
  --container: 1180px;
  --container-wide: 1366px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SF Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; height: auto; }

.accent { color: var(--accent); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 8px 16px; background: var(--accent); color: #000; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ─── DARK ZONE ─── */

.zone-dark {
  background: var(--dark-bg);
  color: var(--dark-text);
  overflow: hidden;
  position: relative;
}

.zone-dark::before {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 214, 90, 0.14), transparent 32%),
    radial-gradient(circle at 8% 12%, rgba(255, 214, 90, 0.18), transparent 28%);
  content: "";
  height: 55vh;
  inset: 0 0 auto;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.zone-dark > * { position: relative; z-index: 1; }

/* Dark header */

.site-header-dark {
  align-items: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-dark {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 850;
  gap: 12px;
}

.aperture-mark { height: 36px; width: 36px; }

.site-nav-dark {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 36px);
}

.site-nav-dark a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s;
}

.site-nav-dark a:hover { color: var(--accent); }

.nav-toggle-dark {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px; padding: 0;
  border: 1px solid var(--dark-line-strong);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-dark span {
  display: block; width: 16px; height: 2px;
  margin: 0 auto; background: #fff; border-radius: 1px;
}

/* Dark hero */

.hero-dark {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
  margin: 0 auto;
  max-width: var(--container-wide);
  padding: 48px clamp(20px, 5vw, 48px) 100px;
}

.hero-dark-copy h1 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 860;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  max-width: 820px;
}

.hero-dark-sub {
  color: var(--dark-muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.35;
  margin: 20px 0 0;
  max-width: 620px;
}

.terminal-box {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--dark-line-strong);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: grid;
  font-family: var(--mono);
  font-size: clamp(14px, 1.2vw, 17px);
  gap: 10px;
  margin-top: 24px;
  max-width: 580px;
  min-height: 140px;
  padding: 18px 20px;
}

.terminal-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
}

.terminal-active { color: var(--accent); }

.cursor {
  animation: blink 0.9s steps(2, start) infinite;
  background: var(--accent);
  display: inline-block;
  height: 1.1em;
  width: 2px;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-dark-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}

.btn:hover {
  box-shadow: 0 10px 26px rgba(255, 214, 90, 0.18);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #000;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  border: 1px solid var(--dark-line-strong);
  color: var(--dark-text);
}

.hero-dark-media {
  display: flex;
  justify-content: center;
}

.iphone-device {
  aspect-ratio: 393 / 852;
  background: linear-gradient(145deg, #2a2a2e, #0a0a0c);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  max-height: min(68vh, 580px);
  padding: 12px;
  position: relative;
  width: min(100%, 340px);
}

.iphone-device::before {
  background: #000;
  border-radius: 999px;
  content: "";
  height: 24px;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 28%;
  z-index: 2;
}

.iphone-screen {
  background: #000;
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
}

.iphone-screen img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

/* Feature rail (7 cards) */

.feature-rail {
  margin: -56px auto 0;
  max-width: var(--container-wide);
  padding: 0 clamp(16px, 4vw, 48px) 32px;
  position: relative;
  z-index: 2;
}

.feature-rail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.rail-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--dark-line-strong);
  border-radius: 8px;
  min-height: 190px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.rail-card:hover {
  border-color: rgba(255, 214, 90, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.rail-card svg {
  color: var(--accent);
  fill: none;
  height: 40px;
  margin: 0 auto 10px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 40px;
}

.rail-card h3 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 6px;
}

.rail-card p {
  color: var(--dark-muted);
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

/* Stats bar */

.stats-bar {
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  padding: 28px clamp(20px, 5vw, 48px);
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
}

.stat { text-align: center; flex: 1 1 100px; }

.stat-num {
  color: var(--accent);
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  color: var(--dark-muted);
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 6px;
  text-transform: uppercase;
}

/* Story dark */

.story-dark {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 360px) 1fr;
  margin: 0 auto;
  max-width: var(--container-wide);
  padding: 48px clamp(20px, 5vw, 48px) 64px;
}

.story-dark-copy h2 {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 14px;
}

.story-dark-copy p {
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.text-link-light {
  color: var(--accent);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.text-link-light:hover { text-decoration: underline; }

.story-dark-images {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-img {
  align-items: flex-end;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  display: flex;
  min-height: 160px;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.story-img::before {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  content: "";
  inset: 0;
  position: absolute;
}

.story-img span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  position: relative;
}

.story-location { background-image: url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=760&q=82"); }
.story-studio { background-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=760&q=82"); }
.story-sunset { background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=760&q=82"); }

/* ─── LIGHT ZONE ─── */

.zone-light {
  background: var(--light-bg);
  color: var(--light-text);
}

.home-section {
  margin: 0 auto;
  max-width: var(--container);
  padding: 72px clamp(20px, 4vw, 48px);
}

.home-section-muted {
  background: var(--light-muted-bg);
  max-width: none;
}

.home-section-muted > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container);
}

.section-label {
  color: var(--light-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 12px;
}

.section-lead {
  color: var(--light-muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 680px;
}

.section-note {
  color: var(--light-muted);
  font-size: 14px;
  margin-top: 24px;
}

.section-cta { margin-top: 24px; }

.text-link {
  color: var(--light-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Features split */

.features-split {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(220px, 320px) 1fr;
}

.features-visual img {
  border: 1px solid var(--light-border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.features-grid {
  display: grid;
  gap: 28px 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
}

.feature-item p {
  color: var(--light-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.feature-icon {
  align-items: center;
  color: var(--accent-bright);
  display: flex;
  height: 36px;
  margin-bottom: 10px;
  width: 36px;
}

.feature-icon svg {
  fill: none;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 28px;
}

/* Steps */

.steps-row {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.step-card {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
}

.step-num {
  align-items: center;
  background: var(--accent-bright);
  border-radius: 999px;
  color: #1d1d1f;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  margin-bottom: 14px;
  width: 36px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.step-card p {
  color: var(--light-muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 16px;
}

.step-icon {
  color: var(--light-muted);
  display: flex;
  justify-content: center;
}

.step-icon svg {
  fill: none;
  height: 36px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 36px;
}

.step-arrow {
  align-self: center;
  color: #c7c7cc;
  font-size: 22px;
  margin-top: 20px;
}

/* App tour */

.tour-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 14px;
  display: grid;
  gap: 0;
  grid-template-columns: 140px 1fr;
  overflow: hidden;
}

.home-section-muted .tour-card { background: #fff; }

.tour-shot {
  align-items: center;
  background: #f0f0f2;
  display: flex;
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
}

.tour-shot img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.tour-shot-placeholder {
  color: var(--light-muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.tour-body { padding: 20px; }

.tour-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 8px 0 6px;
}

.tour-body p {
  color: var(--light-muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 10px;
}

.badge {
  border-radius: 6px;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  text-transform: uppercase;
}

.badge-free { background: rgba(48, 209, 88, 0.15); color: #1a7a34; }
.badge-pro { background: rgba(191, 90, 242, 0.15); color: #7a2dad; }

/* AI grid */

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

.ai-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 22px;
}

.home-section-muted .ai-card { background: #fff; }

.ai-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.ai-card p {
  color: var(--light-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

/* Pricing + FAQ */

.pricing-faq-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.1fr 0.9fr;
}

.pricing-cards {
  display: grid;
  gap: 16px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--light-border-strong);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.pricing-card-popular {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.12);
}

.popular-badge {
  background: var(--accent-bright);
  border-radius: 6px;
  color: #1d1d1f;
  font-size: 10px;
  font-weight: 800;
  left: 24px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  position: absolute;
  top: -11px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}

.pricing-type {
  color: var(--light-muted);
  font-size: 14px;
  margin: 0 0 16px;
}

.pricing-list { margin: 0 0 20px; }

.pricing-list li {
  font-size: 14px;
  padding: 4px 0 4px 22px;
  position: relative;
}

.pricing-list li::before {
  color: var(--accent-bright);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.btn-store {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  transition: transform 0.18s, box-shadow 0.18s;
  width: 100%;
}

.btn-store-yellow {
  background: var(--accent-bright);
  border: 1px solid var(--accent-bright);
  color: #1d1d1f;
}

.btn-store:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.pricing-note {
  color: var(--light-muted);
  font-size: 12px;
  margin: 14px 0 0;
  text-align: center;
}

.faq-list { border-top: 1px solid var(--light-border); }

.faq-item { border-bottom: 1px solid var(--light-border); }

.faq-item summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  padding: 18px 32px 18px 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  color: var(--light-muted);
  content: "+";
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  color: var(--light-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
  padding-right: 24px;
}

.faq-more { margin-top: 16px; }
.faq-more a { color: var(--light-muted); font-size: 14px; font-weight: 600; }

/* CTA band (dark accent inside light zone) */

.cta-band {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 64px clamp(20px, 4vw, 48px);
}

.cta-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 auto;
  max-width: var(--container);
}

.cta-app-icon img {
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  width: 80px;
}

.cta-band h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin: 0;
}

.cta-band p {
  color: var(--dark-muted);
  margin: 12px 0 0;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta-meta {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin-top: 16px;
}

/* Footer */

.site-footer,
.footer {
  background: var(--light-muted-bg);
  border-top: 1px solid var(--light-border);
  padding: 48px clamp(20px, 4vw, 48px) 32px;
}

.footer-grid,
.footer-columns {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--container-wide);
}

.footer-col h4,
.footer-column h4 {
  color: var(--light-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.footer-col a,
.footer-column a {
  color: var(--light-text);
  display: block;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--light-muted); }

.footer-brand-col { text-align: right; }

.brand-footer {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
}

.brand-icon {
  align-items: center;
  background: var(--accent-bright);
  border-radius: 8px;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.brand-icon img { height: 18px; width: 18px; }

.footer-tagline {
  color: var(--light-muted);
  font-size: 14px;
  margin: 12px 0 0;
}

.footer-copy,
.footer-bottom p {
  color: var(--light-muted);
  font-size: 12px;
  margin: 16px 0 0;
}

.footer-bottom {
  border-top: 1px solid var(--light-border);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
}

/* ─── INNER PAGES (light) ─── */

.site-header,
.header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  display: flex;
  gap: 24px;
  height: 64px;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  width: 100%;
}

.brand,
.logo {
  align-items: center;
  color: var(--light-text);
  display: flex;
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
}

.site-nav,
.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
}

.site-nav a,
.nav a {
  color: var(--light-muted);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover,
.nav a:hover { color: var(--light-text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px; padding: 0;
  border: 1px solid var(--light-border-strong);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block; width: 16px; height: 2px;
  margin: 0 auto; background: var(--light-text); border-radius: 1px;
}

.page-main {
  margin: 0 auto;
  max-width: var(--container);
  padding: 48px clamp(20px, 4vw, 48px) 72px;
}

.page-content { max-width: 720px; }

.page-eyebrow {
  color: var(--light-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.page-content h1 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.page-prose h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.page-prose h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.page-prose p,
.page-prose li {
  color: var(--light-muted);
  font-size: 16px;
  line-height: 1.65;
}

.page-prose ul,
.page-prose ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.page-prose li { margin-bottom: 6px; }

.page-prose a {
  color: var(--light-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq-item {
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.page-faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.page-faq-item h2 { font-size: 18px; margin-top: 0; }

/* ─── RESPONSIVE ─── */

@media (max-width: 1100px) {
  .feature-rail-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-dark { grid-template-columns: 1fr; }
  .hero-dark-media { order: -1; }
  .pricing-faq-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand-col { text-align: left; }
}

@media (max-width: 768px) {
  .feature-rail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-split { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .story-dark { grid-template-columns: 1fr; }
  .story-dark-images { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card { grid-template-columns: 1fr; }
  .tour-shot { min-height: 200px; }
  .ai-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }

  .site-header-dark,
  .site-header,
  .header {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 20px;
  }

  .nav-toggle-dark,
  .nav-toggle { display: flex; }

  .site-nav-dark,
  .site-nav,
  .nav {
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid var(--dark-line);
    border-radius: 10px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    width: 100%;
  }

  .site-header .site-nav,
  .header .nav {
    background: #fff;
    border-color: var(--light-border);
  }

  .site-nav-dark.open,
  .site-nav.open,
  .nav.open { display: flex; }

  .site-nav-dark a,
  .site-nav a,
  .nav a {
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .feature-rail-grid { grid-template-columns: 1fr; }
  .stats-inner { justify-content: center; }
}
