:root {
  --bg: #0a1628;
  --surface: rgba(255,255,255,0.82);
  --surface-strong: #ffffff;
  --ink: #0f1728;
  --muted: #667085;
  --line: rgba(15, 23, 40, 0.08);
  --navy: #0c2340;
  --navy-deep: #071220;
  --blue: #2357ff;
  --blue-2: #5b8cff;
  --teal: #38bdf8;
  --gold: #b88746;
  --gold-warm: #d4a24c;
  --green: #0f9f6e;
  --red: #c04f4f;
  --shadow: 0 24px 60px rgba(12, 35, 64, 0.10);
  --shadow-soft: 0 10px 30px rgba(12, 35, 64, 0.08);
  --shadow-dark: 0 24px 64px rgba(0,0,0,0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1328px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #060e1a 0%, #0d1f35 40%, #0f2944 70%, #0a1628 100%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.shell-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 80%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: var(--max);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(56,189,248,0.12);
  background: rgba(7,18,32,0.82);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
}

.brand, .app-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-brand-block.text-brand {
  padding-left: 16px;
}

.app-brand-block.text-brand::before {
  height: 28px;
}

.text-brand {
  position: relative;
  padding-left: 18px;
}

.text-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-warm), var(--teal));
  box-shadow: 0 0 18px rgba(56,189,248,0.28);
}

.brand-text strong, .app-brand-block strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4f7fb;
}

.brand-text small, .app-brand-block small {
  color: rgba(255,255,255,0.62);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

.topnav a:hover { color: #e8ecf4; }
.topnav a { transition: color 180ms ease; }
.topbar-actions { display: flex; gap: 10px; }

.section, .section-tight {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 20px;
  position: relative;
}

.section-tight { padding: 20px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(540px, 1fr);
  gap: 46px;
  align-items: center;
  min-height: 85vh;
  padding-top: 60px;
}

.hero-copy { max-width: 700px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #e8ecf4;
}

.hero-headline-line { display: block; }

.section-intro-block h2, .panel-head h2, .demo-panel h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 1.03rem;
}

.section-intro-block p, .demo-panel p, .workspace-card p, .checkout-summary p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero-actions, .demo-actions, .auth-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.workspace-card, .pricing-card, .feature-card, .timeline-grid article, .demo-panel, .proof-band, .request-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.52);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  background: rgba(7,18,32,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(56,189,248,0.12);
  box-shadow: var(--shadow-dark);
  padding: 22px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(56,189,248,0.06), transparent 35%);
  pointer-events: none;
}

.hero-metrics div {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56,189,248,0.10);
  box-shadow: none;
  border-radius: 22px;
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  color: #e8ecf4;
  font-size: 1.35rem;
}

.hero-metrics span {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.hero-card-head, .hero-surface-top, .card-head-row, .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

/* Report preview — video or image */
.hero-preview-surface {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  padding: 4px 12px 0;
}

.hero-preview-img,
.hero-preview-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.hero-preview-video {
  object-fit: cover;
  max-height: 420px;
}

.hero-preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(transparent, rgba(7,18,32,0.92));
  pointer-events: none;
}



.hero-video-cta {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.hero-access-note {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(56,189,248,0.14);
}

.hero-access-note-strong {
  background: linear-gradient(135deg, rgba(35,87,255,0.18), rgba(56,189,248,0.16));
  border: 1px solid rgba(125,211,252,0.55);
  box-shadow: 0 14px 28px rgba(10, 27, 49, 0.22), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-access-label {
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-access-note strong {
  color: #ffffff;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
}

.hero-access-note small {
  color: rgba(255,255,255,0.86);
  font-size: 0.9rem;
}

.mini-tag, .plan-badge, .score-pill, .status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.mini-tag {
  color: var(--teal);
  background: rgba(56,189,248,0.12);
}

.status-dot {
  color: #34d399;
  background: rgba(52,211,153,0.12);
}

.score-pill {
  color: var(--navy);
  background: rgba(12,35,64,0.07);
}

.primary-btn, .secondary-btn, .ghost-btn, .text-btn {
  border: none;
  border-radius: 16px;
  padding: 13px 18px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, #0c2d52, #1e5fad);
  box-shadow: 0 14px 28px rgba(14, 47, 82, 0.35);
}

.primary-btn:hover, .secondary-btn:hover, .ghost-btn:hover { transform: translateY(-1px); }

.secondary-btn {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
}

.ghost-btn {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}

.modal .ghost-btn,
.app-panel .ghost-btn,
.demo-panel .ghost-btn {
  color: var(--navy);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
}

.text-btn {
  color: var(--blue);
  background: transparent;
  padding: 0;
}

.large { padding: 16px 22px; font-size: 1rem; }
.block { width: 100%; justify-content: center; display: inline-flex; }

.hero .secondary-btn {
  color: #e8ecf4;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero .secondary-btn:hover { background: rgba(255,255,255,0.14); }
.hero .eyebrow { color: var(--teal); }

.proof-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  border-radius: 22px;
  padding: 14px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  background: rgba(12,35,64,0.6);
  border: 1px solid rgba(56,189,248,0.10);
  box-shadow: none;
  margin-top: -20px;
}

.proof-band div {
  padding: 12px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(56,189,248,0.08);
}

.report-highlights-section, .feature-layout, .pricing-section, .workflow-section, .demo-section {
  background: rgba(255,255,255,0.96);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 60px 40px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  margin-top: 0;
}

.feature-layout, .workflow-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.report-highlights-section {
  display: grid;
  gap: 28px;
}

.section-intro-block.center { text-align: center; max-width: 820px; margin: 0 auto 24px; }
.feature-cards, .timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card, .timeline-grid article {
  border-radius: 22px;
  padding: 22px;
}

.feature-num {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 800;
}

.feature-card p, .timeline-grid article p, .pricing-card li { color: var(--muted); line-height: 1.65; }

.report-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.report-highlight-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(247,249,252,0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.report-highlight-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #eff4fb, #dfe8f6);
  overflow: hidden;
}

.report-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-highlight-body { padding: 20px; }

.report-highlight-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(35,87,255,0.08);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-highlight-body h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 1.2rem;
}

.report-highlight-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.report-highlights-cta {
  display: flex;
  justify-content: center;
}

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

.pricing-card {
  border-radius: 28px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(12,35,64,0.98), rgba(22,56,106,0.98));
  color: white;
  transform: translateY(-10px);
}

.pricing-card.featured * { color: white; }
.pricing-card.lifetime {
  background: linear-gradient(180deg, rgba(184,135,70,0.14), rgba(255,255,255,0.92));
}

.plan-badge {
  color: var(--blue);
  background: rgba(35,87,255,0.08);
}

.badge-dark {
  color: white;
  background: rgba(255,255,255,0.12);
}

.badge-gold {
  color: #7a531d;
  background: rgba(184,135,70,0.16);
}

.pricing-card h3 {
  font-size: 3rem;
  margin: 20px 0 6px;
}

.pricing-card h3 span {
  font-size: 1rem;
  font-weight: 600;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.pricing-card li::before {
  content: '•';
  margin-right: 10px;
  color: var(--blue);
}

.pricing-card.featured li::before { color: rgba(255,255,255,0.85); }
.compact h3 { font-size: 2.4rem; }

.demo-panel {
  border-radius: 30px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.demo-actions { justify-content: flex-end; }

.app-view {
  max-width: calc(var(--max) + 40px);
  margin: 0 auto 80px;
  padding: 28px 20px 20px;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
}

body.app-mode .topbar { display: none; }
body.app-mode #marketingSite { display: none; }
body.app-mode .app-view { display: grid !important; }
.hidden { display: none !important; }

.app-sidebar {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 22px;
  border-radius: 26px;
  background: rgba(12,35,64,0.96);
  color: white;
  box-shadow: var(--shadow);
}

.app-nav {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.app-nav-btn {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.78);
  padding: 14px 15px;
  border-radius: 16px;
  text-align: left;
  font-weight: 700;
}

.app-nav-btn.active {
  background: linear-gradient(135deg, rgba(35,87,255,0.55), rgba(91,140,255,0.24));
  color: white;
}

.sidebar-plan-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.sidebar-plan-card strong, #creditsLabel { display: block; margin-top: 4px; }
.sidebar-plan-card span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.credit-tracker-card {
  display: grid;
  gap: 10px;
}

.credit-tracker-card p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}

.tracker-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}

.tracker-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #7dd3fc);
  transition: width 220ms ease;
}

.app-main {
  min-width: 0;
  display: grid;
}

.app-panel {
  display: none;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.5);
}

.app-panel.active { display: block; }
.panel-head { margin-bottom: 26px; }

.panel-head-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.panel-head h2 { font-size: 2.35rem; }

.workspace-hero-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(12,35,64,0.98), rgba(22,56,106,0.92));
  border: 1px solid rgba(56,189,248,0.14);
}

.workspace-hero-card h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 1.8rem;
}

.workspace-hero-card p {
  margin: 0;
  color: rgba(255,255,255,0.74);
}

.workspace-hero-card .eyebrow { margin-bottom: 12px; }

.workspace-hero-actions {
  display: grid;
  gap: 12px;
}

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

.workspace-card { border-radius: 22px; padding: 22px; }
.stat-card small { display: block; margin-top: 8px; color: var(--muted); }

.sample-report-shell {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-soft);
}

.sample-report-shell iframe {
  width: 100%;
  height: 840px;
  border: 0;
  background: white;
}

.tiny-note {
  margin-top: 10px;
  font-size: 0.86rem;
}

.request-card form {
  display: grid;
  gap: 18px;
}

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

.form-grid.single { grid-template-columns: 1fr; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

label { display: grid; gap: 9px; }

label span {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(35,87,255,0.4);
  box-shadow: 0 0 0 4px rgba(35,87,255,0.08);
}

.full-width { grid-column: 1 / -1; }

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.credit-notice { font-size: 0.92rem; }

.submission-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15,159,110,0.08);
  border: 1px solid rgba(15,159,110,0.18);
  color: #0a6c4a;
}

.auth-perk {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(35,87,255,0.06);
  border: 1px solid rgba(35,87,255,0.12);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 28, 0.55);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 20px;
}

.modal {
  width: min(760px, 100%);
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.auth-modal { width: min(520px, 100%); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.checkout-summary {
  border-radius: 20px;
  background: #f8faff;
  border: 1px solid var(--line);
  padding: 18px;
}
.checkout-summary h4 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--navy);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.summary-line:last-child { border-bottom: none; }
.summary-line span {
  color: var(--muted);
  font-weight: 500;
}
.summary-line strong {
  color: var(--navy);
  text-align: right;
}
.summary-line.total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2px solid var(--navy);
  border-bottom: none;
  font-size: 1.05rem;
}
.summary-line.total span { color: var(--navy); font-weight: 700; }
.summary-line.total strong { font-size: 1.15rem; }

.modal-header h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 2rem;
}

.modal-header p { color: var(--muted); margin-top: 0; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  font-size: 1.5rem;
}

.access-code-error {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 0;
}

.access-code-hint {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

.access-code-hint small {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 0 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.72);
}

.site-footer strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.site-footer span { color: rgba(255,255,255,0.62); }

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: rgba(255,255,255,0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .hero, .feature-layout, .workflow-section, .demo-panel, .checkout-layout, .app-view, .workspace-hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy { max-width: none; }

  .hero-video-surface {
    min-height: 460px;
  }

  .hero-preview-surface {
    border-radius: 12px;
  }

  .topbar { flex-wrap: wrap; }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .app-sidebar { position: static; }

  .workspace-grid, .pricing-grid, .proof-band, .hero-metrics, .report-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hero, .section, .section-tight { padding-left: 16px; padding-right: 16px; }

  .workspace-grid, .pricing-grid, .feature-cards, .timeline-grid, .proof-band, .hero-metrics, .form-grid, .three-col, .report-highlights-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 2.7rem; }

  .hero-headline-line { display: inline; }
  .hero-headline-line + .hero-headline-line::before { content: ' '; }

  .panel-head, .submit-row, .topbar-actions, .hero-actions, .demo-actions, .auth-actions, .panel-head-actions, .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .sample-report-shell iframe { height: 620px; }

  .hero-video-surface {
    min-height: 360px;
  }

  .hero-video {
    transform: scale(0.88);
  }

  .hero-preview-surface {
    border-radius: 10px;
  }

  .hero-preview-img {
    border-radius: 8px;
  }

  .site-footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ─── Reports List ─── */
.report-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.report-row:last-child { border-bottom: none; }
.report-row-info {
  flex: 1;
  min-width: 0;
}
.report-row-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}
.report-domain {
  font-size: 0.82rem;
  color: var(--muted);
}
.report-row-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.report-market {
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(15, 23, 40, 0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}
.report-status {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}
.status-completed { color: var(--green); background: rgba(15, 159, 110, 0.08); }
.status-generating { color: var(--gold); background: rgba(184, 135, 70, 0.08); }
.report-row-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.report-date {
  font-size: 0.78rem;
  color: var(--muted);
}
.secondary-btn.small {
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
}
