/* ══════════════════════════════════════
   Value Rocket – web4
   ══════════════════════════════════════ */

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ── */
:root {
  --bg: #0b0f19;
  --bg-soft: #111728;
  --surface: rgba(14, 20, 34, 0.82);
  --surface-light: rgba(255, 255, 255, 0.06);
  --text: #f4f7ff;
  --muted: #becae0;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --orange: #ff6b00;
  --orange-soft: rgba(255, 107, 0, 0.2);
  --blue: #4ba3ff;
  --blue-soft: rgba(75, 163, 255, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --radius-sm: 20px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 88px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 12% 10%, rgba(75, 163, 255, 0.24), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 107, 0, 0.22), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #0b1423 0%, #0b1020 30%, #090d17 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

/* ── Noise overlay ── */
.page-noise {
  position: fixed; inset: 0; z-index: -1;
  opacity: 0.07; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

/* ── Progress bar ── */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 50;
  width: 100%; height: 3px;
}
.progress-bar__fill {
  display: block; width: 0; height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffae70, var(--blue));
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.55);
}

/* ── Layout ── */
.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 110px 0; }

.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-heading h2,
.strip h2,
.proof-copy h2,
.principle-copy h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow),
.proof-copy p:not(.eyebrow),
.principle-copy p:not(.eyebrow),
.cta-copy p:not(.eyebrow),
.hero-lead,
.service-card__body p:not(.card-kicker),
.framework-step p,
.usecase-row p,
.proof-point p,
.manifesto p {
  color: var(--muted);
  line-height: 1.65;
}

/* ── Eyebrow / Kicker ── */
.eyebrow, .card-kicker {
  margin: 0 0 16px;
  color: #ffd0ad;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 16, 28, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(6, 9, 16, 0.96);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-height);
}

/* ── Brand ── */
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark { height: 60px; width: auto; }

/* ── Nav ── */
.site-nav {
  display: inline-flex; align-items: center; gap: 26px;
  font-size: 0.94rem; color: var(--muted);
}
.site-nav a { transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }

.nav-toggle {
  display: none; place-items: center;
  width: 52px; height: 52px;
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(255, 255, 255, 0.03); color: var(--text);
}
.nav-toggle span {
  position: absolute; width: 18px; height: 2px;
  border-radius: 999px; background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.nav-toggle span:first-child { transform: translateY(-4px); }
.nav-toggle span:last-child  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: rotate(-45deg); }

/* ── Buttons ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px;
  border: 1px solid transparent; border-radius: 999px;
  background: linear-gradient(135deg, #ff7e1c, var(--orange));
  color: #120d08; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 0 18px 38px rgba(255, 107, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(255, 107, 0, 0.34);
}
.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text); box-shadow: none;
}
.button--small { min-height: 42px; padding: 0 18px; }
.button--light { background: linear-gradient(135deg, #fff3e7, #ffd8b8); color: #21160c; }

/* ══════════════════════════════════════
   Hero (Fullscreen Video/Poster)
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 56px 0 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video, .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: saturate(0.95) contrast(1.04);
}
.hero-overlay,
.hero-overlay::before,
.hero-overlay::after {
  position: absolute; inset: 0; content: "";
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 15, 25, 0.82) 0%, rgba(11, 15, 25, 0.66) 34%, rgba(11, 15, 25, 0.44) 58%, rgba(11, 15, 25, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.18), rgba(11, 15, 25, 0.30) 55%, rgba(11, 15, 25, 0.86));
}
.hero-overlay::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(75, 163, 255, 0.20), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(255, 107, 0, 0.14), transparent 24%);
}
.hero-overlay::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(0deg, rgba(11, 15, 25, 0.18), transparent 22%);
}
.hero-shell--video {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  min-height: calc(100vh - var(--header-height) - 104px);
}
.hero-copy {
  max-width: 680px;
}
.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 0.96; letter-spacing: -0.06em;
  color: #f7f9ff; text-wrap: balance;
}
.hero-lead { max-width: 34rem; margin: 0 0 22px; color: #d6def0; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero-proof {
  max-width: 34rem; margin: 0; padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #dde6f8; font-size: 0.98rem; line-height: 1.7;
}

/* ══════════════════════════════════════
   Strip (Problem)
   ══════════════════════════════════════ */
.strip { padding: 80px 0 38px; }
.strip-split {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px; align-items: start;
}
.strip-copy p { margin-top: 14px; }
.strip-questions {
  display: grid; gap: 0;
}
.strip-questions span {
  display: block; padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #dde6fa; font-size: 0.98rem;
}
.strip-questions span:last-of-type { border-bottom: 1px solid var(--line); }
.strip-answer {
  margin-top: 20px;
  color: var(--orange) !important; font-weight: 700; font-size: 1.05rem;
}

/* ══════════════════════════════════════
   Service Cards
   ══════════════════════════════════════ */
.service-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.service-card {
  overflow: hidden; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)), var(--surface);
  box-shadow: var(--shadow);
}
.service-card img { width: 100%; height: auto; }
.service-card__body { padding: 24px; }
.service-card__body h3, .framework-step h3, .usecase-row h3,
.proof-point h3, .principle-points h3 {
  margin: 0 0 12px; font-size: 1.38rem; letter-spacing: -0.04em;
}
.service-card__body p { margin: 0; }
.service-note {
  margin-top: 16px !important; padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #dde6f8 !important; font-size: 0.9rem; line-height: 1.55;
}

/* ══════════════════════════════════════
   Framework
   ══════════════════════════════════════ */
.framework-section::before {
  content: ""; position: absolute; inset: 8% 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(75, 163, 255, 0.24), rgba(255, 107, 0, 0.34), transparent);
}
.framework-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px; position: relative; padding-top: 16px;
}
.framework-grid::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}
.framework-step {
  position: relative; padding: 18px 0 0;
  border: 0; border-radius: 0; background: transparent; box-shadow: none;
}
.framework-step__index {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-bottom: 16px; border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #ffe6d3; font-weight: 700; position: relative;
}
.framework-step__index::before {
  content: ""; position: absolute; top: -35px; left: 50%;
  width: 1px; height: 24px;
  background: rgba(255, 255, 255, 0.16); transform: translateX(-50%);
}
.framework-step small {
  display: block; margin-top: 12px;
  color: #ffd2b0; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem;
}

/* ══════════════════════════════════════
   Testimonials
   ══════════════════════════════════════ */
.testimonials-section {
  border-top: 1px solid var(--line-soft);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.testimonial-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)), var(--surface);
}
.testimonial-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.avatar {
  flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(75, 163, 255, 0.55), rgba(255, 107, 0, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white; font-weight: 700; letter-spacing: 0.04em;
}
.testimonial-head strong { display: block; font-size: 0.98rem; }
.testimonial-head small {
  display: block; margin-top: 3px;
  color: var(--muted); font-size: 0.82rem; line-height: 1.4;
}
.testimonial-card blockquote {
  margin: 0; padding: 0;
}
.testimonial-card blockquote p {
  color: #e9eefb; font-size: 1rem; line-height: 1.75; margin: 0;
}
.testimonial-tag {
  display: inline-block; margin-top: 18px; padding: 7px 14px;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   Use Cases
   ══════════════════════════════════════ */
.usecases-shell {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px; align-items: start;
}
.usecases-list { display: grid; gap: 0; }
.usecase-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.usecase-row:last-child { border-bottom: 1px solid var(--line); }
.usecase-row p { margin: 0; }

.usecase-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--orange-soft); margin-top: 2px;
}
.usecase-icon svg { width: 20px; height: 20px; color: var(--orange); }

/* ══════════════════════════════════════
   Proof
   ══════════════════════════════════════ */
.proof-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px; align-items: start;
}
.proof-points { display: grid; gap: 22px; }
.proof-point { padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.proof-point span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-bottom: 16px; border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #ffe6d3; font-weight: 700;
}
.manifesto {
  margin: 28px 0 0; padding: 22px 24px;
  border-left: 3px solid var(--orange);
  border-radius: 0 22px 22px 0;
  background: rgba(255, 255, 255, 0.04);
}
.manifesto p { margin: 0; color: #f2f5fb; font-size: 1.08rem; }

/* ══════════════════════════════════════
   Principle / Ansatz
   ══════════════════════════════════════ */
.principle-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px; align-items: start;
}
.principle-image {
  position: relative; overflow: hidden;
  border-radius: 32px; border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
.principle-image::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.02), rgba(7, 10, 18, 0.24) 58%, rgba(7, 10, 18, 0.66)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%);
}
.principle-image img { width: 100%; height: 100%; object-fit: cover; }

.principle-points { display: grid; gap: 14px; margin-top: 28px; }
.principle-points article {
  padding: 2px 0 2px 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
}
.principle-points p { margin: 0; color: var(--muted); }

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.cta-section { padding-bottom: 140px; }
.cta-shell {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px; align-items: start;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 0, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(75, 163, 255, 0.16), transparent 22%),
    rgba(255, 255, 255, 0.04);
}
.cta-panel {
  padding: 28px; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)), var(--surface);
  box-shadow: var(--shadow);
}
.cta-panel .button { margin-bottom: 20px; width: 100%; }
.cta-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ── Contact form ── */
.contact-form { display: grid; gap: 16px; }
.form-field--hp {
  position: absolute; left: -9999px; height: 0; overflow: hidden;
  opacity: 0; pointer-events: none;
}
.form-field { display: grid; gap: 6px; }
.form-field label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text); font-size: 0.95rem;
  transition: border-color 160ms ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-status {
  margin: 0; font-size: 0.88rem; min-height: 1.4em;
}
.form-status--success { color: #6ee7a0; }
.form-status--error { color: #ff6b6b; }
.cta-tags span {
  display: inline-flex; align-items: center; padding: 7px 14px;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted); font-size: 0.82rem;
}

/* ══════════════════════════════════════
   Footer
   ══════════════════════════════════════ */
.site-footer { padding: 0 0 32px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted); font-size: 0.9rem;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: color 160ms ease; }
.footer-links a:hover { color: var(--text); }

/* ══════════════════════════════════════
   Reveal animation
   ══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   Responsive
   ══════════════════════════════════════ */
@media (max-width: 1080px) {
  .hero-shell,
  .usecases-shell,
  .principle-grid,
  .proof-grid,
  .cta-shell,
  .strip-split {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .framework-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root { --container: min(100vw - 28px, 1180px); }
  .section { padding: 84px 0; }
  .header-inner { min-height: 78px; }

  .nav-toggle { display: grid; position: relative; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); right: 14px; left: 14px;
    display: grid; gap: 10px; padding: 14px;
    border: 1px solid var(--line-soft); border-radius: 22px;
    background: rgba(7, 11, 20, 0.94); box-shadow: var(--shadow);
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }

  .service-grid,
  .framework-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; overflow: visible; }
  .hero-shell--video { min-height: auto; padding: 60px 0; }
  .cta-shell { padding: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  :root { --container: min(100vw - 32px, 1180px); }
  .hero-copy h1 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-lead { font-size: 0.95rem; }
  .section-heading h2, .strip h2, .proof-copy h2,
  .principle-copy h2, .cta-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .button, .button--small { width: 100%; }
  .hero-actions { flex-direction: column; }
  .brand__mark { height: 40px; }
}

/* ══════════════════════════════════════
   About
   ══════════════════════════════════════ */
.about-grid {
  max-width: 720px;
}
.about-copy p {
  color: var(--muted); line-height: 1.75; margin: 0 0 18px;
}

/* ══════════════════════════════════════
   Blog
   ══════════════════════════════════════ */
.blog-list {
  display: grid; gap: 0;
}
.blog-card {
  border-top: 1px solid var(--line);
}
.blog-card a {
  display: block; padding: 28px 0;
  transition: opacity 160ms ease;
}
.blog-card a:hover { opacity: 0.75; }
.blog-card h2 {
  margin: 8px 0 10px;
  font-size: 1.5rem; letter-spacing: -0.03em;
}
.blog-card p {
  margin: 0; color: var(--muted); line-height: 1.65;
}

.blog-back {
  display: inline-block; margin-bottom: 28px;
  color: var(--muted); font-size: 0.92rem;
  transition: color 160ms ease;
}
.blog-back:hover { color: var(--text); }

.blog-post .eyebrow { margin-bottom: 12px; }

/* ── Prose (Blog article body) ── */
.prose {
  max-width: 720px; line-height: 1.85; color: #c8d3e8; font-size: 1.05rem;
}
.prose h2 {
  margin: 56px 0 18px; padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 1.6rem; letter-spacing: -0.03em;
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose p { margin: 0 0 22px; }
.prose ul, .prose ol {
  margin: 0 0 22px; padding-left: 24px;
}
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--text); }

/* Highlighted takeaway paragraphs (bold-only paragraphs) */
.prose p:has(> strong:only-child) {
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 107, 0, 0.08);
  color: #f0e6db;
  font-size: 1rem;
}

/* Blog CTA box */
.prose-cta {
  display: block; margin: 48px 0 24px; padding: 28px;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 0, 0.14), transparent 50%),
    rgba(255, 255, 255, 0.04);
  text-align: center;
}
.prose-cta p {
  margin: 0 0 16px; color: var(--text); font-size: 1.1rem; font-weight: 600;
}
.prose-cta .button { display: inline-flex; }

/* Horizontal rule in prose */
.prose hr {
  margin: 48px 0; border: none;
  border-top: 1px solid var(--line-soft);
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-list {
  max-width: 720px; display: grid; gap: 0;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  color: var(--text); font-size: 1.05rem; font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  width: 32px; height: 32px; margin-left: 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--orange); font-size: 1.2rem; font-weight: 400;
  transition: transform 200ms ease, background 200ms ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--orange-soft);
  transform: rotate(180deg);
}
.faq-item p {
  margin: 0; padding: 0 0 22px;
  color: var(--muted); line-height: 1.7; font-size: 0.95rem;
}

/* ══════════════════════════════════════
   Legal pages (Impressum / Datenschutz)
   ══════════════════════════════════════ */
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  margin: 42px 0 14px; font-size: 1.4rem; letter-spacing: -0.03em;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  margin: 0 0 16px; color: var(--muted); line-height: 1.7;
}
.legal-content ul {
  margin: 0 0 16px; padding-left: 24px; color: var(--muted); line-height: 1.7;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════
   404
   ══════════════════════════════════════ */
.error-page {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - var(--header-height) - 120px);
  text-align: center;
}
.error-page h1 {
  font-size: clamp(3rem, 10vw, 8rem); letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-page p { color: var(--muted); margin: 0 0 28px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}