@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Mukta:wght@400;500;600;700&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap");

:root {
  --paper: #f6f3ec;
  --surface: #efebe0;
  --ink: #1a1a17;
  --muted: #4a463c;
  --pitch: #1f3a2e;
  --brass: #b0863c;
  --error: #9b2d2d;
  --success: #2e6b4f;
  --info: #2e5a6b;
  --radius-report: 2px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-soft: 0 24px 60px rgba(26, 26, 23, 0.12);
  --shadow-panel: 0 14px 30px rgba(26, 26, 23, 0.08);
  --shadow-frame: 0 30px 90px rgba(26, 26, 23, 0.18);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(176, 134, 60, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(239, 235, 224, 0.62), rgba(246, 243, 236, 1)),
    var(--paper);
  font-family: "General Sans", "Mukta", "Tiro Devanagari Hindi", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(rgba(26, 26, 23, 0.1) 0.4px, transparent 0.4px),
    radial-gradient(rgba(26, 26, 23, 0.05) 0.3px, transparent 0.3px);
  background-position: 0 0, 10px 12px;
  background-size: 18px 18px, 22px 22px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  min-height: 48px;
  border: 0;
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(20px);
}

.page-shell::before {
  top: 120px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(31, 58, 46, 0.07);
}

.page-shell::after {
  left: -90px;
  bottom: 380px;
  width: 320px;
  height: 320px;
  background: rgba(176, 134, 60, 0.08);
}

.container {
  width: min(calc(100% - 72px), 1360px);
  margin: 0 auto;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 18px 0 20px;
}

.hero > .container {
  width: min(calc(100% - 140px), 1200px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.topbar .button-secondary {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
  border-width: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 180ms ease-out;
}

.nav-links a:hover {
  color: var(--pitch);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 20px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(176, 134, 60, 0.6);
  background:
    radial-gradient(circle at center, rgba(176, 134, 60, 0.18), transparent 60%),
    rgba(239, 235, 224, 0.9);
  display: grid;
  place-items: center;
  color: var(--pitch);
  font-family: "Fraunces", serif;
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pitch);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-grid,
.artifact-grid,
.story-grid,
.cta-band,
.dashboard-grid,
.trust-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  column-gap: 16px;
}

.hero-copy h1,
.section-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Lora", serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(30px, 3.3vw, 46px);
  max-width: 24ch;
}

.section-copy h2,
.cta-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  max-width: 11ch;
}

.hero-copy p,
.section-copy p,
.cta-copy p,
.body-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 60ch;
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.55;
}

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

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out,
    background 180ms ease-out, border-color 180ms ease-out;
}

.button-primary {
  background: var(--pitch);
  color: var(--paper);
  border: 1px solid rgba(176, 134, 60, 0.45);
  box-shadow:
    0 10px 24px rgba(31, 58, 46, 0.22),
    inset 0 1px 0 rgba(246, 243, 236, 0.08);
}

.button-primary:hover {
  background: #234134;
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(31, 58, 46, 0.28),
    inset 0 1px 0 rgba(246, 243, 236, 0.12);
  border-color: rgba(176, 134, 60, 0.7);
}

.button-secondary {
  background: transparent;
  color: var(--pitch);
  border: 1.5px solid rgba(31, 58, 46, 0.5);
}

.button-secondary:hover {
  background: rgba(31, 58, 46, 0.06);
  border-color: var(--pitch);
  transform: translateY(-2px);
}

.button-primary:active,
.button-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(31, 58, 46, 0.18);
}

.button-primary:focus-visible,
.button-secondary:focus-visible {
  outline: 2px solid var(--pitch);
  outline-offset: 3px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-metrics span,
.tiny-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.hero-metrics span,
.tiny-pill {
  background: rgba(239, 235, 224, 0.7);
  border: 1px solid rgba(74, 70, 60, 0.1);
  color: rgba(26, 26, 23, 0.84);
}

.hero-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  align-self: stretch;
}

.hero-card-wrap {
  position: relative;
  width: min(100%, 500px);
  transform: perspective(1500px) rotateY(-9deg) rotateX(2deg) rotateZ(-3deg);
  transform-origin: center;
}

.report-iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-report);
  background: transparent;
}

.hero-card {
  position: relative;
  height: 460px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(176, 134, 60, 0.28);
  background: rgba(246, 243, 236, 0.84);
  box-shadow: var(--shadow-frame);
  backdrop-filter: blur(8px);
}

.hero-card .report-iframe {
  width: 760px;
  height: 1160px;
  transform: scale(0.47);
  transform-origin: top center;
  margin-left: calc((100% - 760px) / 2);
}

.section {
  padding: 72px 0;
}

.section-card,
.feature-card,
.dashboard-panel,
.phone-frame,
.quote-card,
.mock-card,
.cta-band {
  border: 1px solid rgba(74, 70, 60, 0.12);
  background: rgba(246, 243, 236, 0.84);
  box-shadow: var(--shadow-soft);
}

.artifact-grid {
  grid-template-columns: minmax(320px, 380px) minmax(0, 0.86fr);
  align-items: center;
  justify-content: center;
  column-gap: 32px;
}

.artifact-panel,
.dashboard-panel,
.quote-card,
.feature-card,
.mock-card {
  border-radius: var(--radius-md);
  padding: 22px;
}

.artifact-viewer {
  justify-self: center;
  width: min(100%, 380px);
  height: min(88svh, 900px);
  display: block;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid rgba(10, 10, 10, 0.92);
  background: linear-gradient(180deg, #141414, #090909);
  box-shadow:
    0 60px 120px rgba(26, 26, 23, 0.34),
    0 30px 42px rgba(26, 26, 23, 0.22),
    0 10px 24px rgba(176, 134, 60, 0.14);
  transform: translateY(-22px) rotate(-4deg);
}

.artifact-phone-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px 12px 12px;
  gap: 12px;
  background: linear-gradient(180deg, #111111, #070707);
}

.artifact-viewer::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -28px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26, 26, 23, 0.38) 0%, rgba(26, 26, 23, 0.16) 38%, transparent 72%);
  filter: blur(14px);
  z-index: -1;
}

.phone-camera {
  flex: 0 0 auto;
  height: 24px;
  width: 120px;
  margin: 2px auto 0;
  border-radius: 999px;
  background: rgba(246, 243, 236, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
}

.phone-camera-lens {
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: rgba(246, 243, 236, 0.32);
}

.phone-camera-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(246, 243, 236, 0.34);
}

.artifact-viewer .report-tabs {
  flex: 0 0 auto;
}

.artifact-report {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  border-radius: 18px;
  overflow: auto;
  background: rgba(246, 243, 236, 0.92);
  box-shadow: 0 0 0 1px rgba(246, 243, 236, 0.04);
}

.artifact-notes {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.artifact-callout {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(239, 235, 224, 0.8);
}

.artifact-callout h3,
.feature-card h3,
.mock-card h3,
.quote-card h3,
.dashboard-panel h3 {
  margin: 0;
  font-size: 18px;
}

.artifact-callout p,
.feature-card p,
.mock-card p,
.quote-card p,
.dashboard-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.story-grid,
.dashboard-grid,
.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-grid {
  align-items: center;
  grid-template-columns: minmax(0, 540px) minmax(0, 420px);
  justify-content: center;
  column-gap: 56px;
}

.story-grid > .section-copy {
  max-width: 540px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--pitch);
  color: var(--paper);
  font-weight: 700;
}

.step h3 {
  margin: 0;
  font-size: 18px;
}

.step p {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.phone-frame {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
  height: min(88svh, 900px);
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(10, 10, 10, 0.92);
  background: linear-gradient(180deg, #141414, #090909);
  box-shadow:
    0 60px 120px rgba(26, 26, 23, 0.34),
    0 30px 42px rgba(26, 26, 23, 0.22),
    0 10px 24px rgba(176, 134, 60, 0.14);
  transform: translateY(-22px) rotate(-4deg);
}

.story-grid .section-copy h2 {
  max-width: 34ch;
  font-size: clamp(26px, 2.6vw, 38px);
  margin-bottom: 32px;
}

.consent-note {
  margin: 20px 0 0;
  padding-left: 14px;
  border-left: 2px solid rgba(176, 134, 60, 0.55);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.dashboard-grid .section-copy h2 {
  max-width: 18ch;
  font-size: clamp(30px, 3.2vw, 44px);
}

.phone-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px 12px 12px;
  gap: 12px;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: linear-gradient(180deg, #111111, #070707);
}

.phone-camera {
  flex: 0 0 auto;
  width: 120px;
  height: 24px;
  margin: 2px auto 0;
  border-radius: 999px;
  background: rgba(246, 243, 236, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
}

.phone-camera--light {
  background: rgba(246, 243, 236, 0.12);
}

.phone-camera-lens {
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: rgba(246, 243, 236, 0.32);
}

.phone-camera-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(246, 243, 236, 0.34);
}

.capture-screen,
.chat-screen,
.dashboard-screen {
  padding: 14px;
}

.capture-screen {
  display: grid;
  gap: 12px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(246, 243, 236, 0.96);
}

.phone-bar,
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.camera-area {
  position: relative;
  min-height: 200px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(26, 26, 23, 0.12), rgba(26, 26, 23, 0.04)),
    linear-gradient(90deg, rgba(31, 58, 46, 0.14), rgba(239, 235, 224, 0.2));
}

.camera-area::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(176, 134, 60, 0.7);
  border-radius: 18px;
}

.quality-grid,
.tab-row,
.roster-list,
.summary-strips {
  display: grid;
  gap: 10px;
}

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

.check-card,
.roster-item,
.summary-strip,
.chat-bubble,
.status-card {
  border-radius: var(--radius-sm);
  background: rgba(239, 235, 224, 0.84);
  border: 1px solid rgba(74, 70, 60, 0.1);
}

.check-card,
.summary-strip,
.status-card {
  padding: 12px;
}

.check-card strong,
.summary-strip strong,
.status-card strong {
  display: block;
  font-size: 13px;
}

.check-card span,
.summary-strip span,
.status-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.status-pill {
  color: var(--paper);
  background: var(--success);
}

.status-pill.info {
  background: var(--info);
}

.status-pill.error {
  background: var(--error);
}

.chat-screen {
  background:
    linear-gradient(180deg, rgba(31, 58, 46, 0.05), rgba(246, 243, 236, 0.9)),
    var(--paper);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--pitch);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.chat-thread {
  display: grid;
  gap: 12px;
}

.chat-bubble {
  padding: 14px;
}

.chat-bubble.parent {
  margin-left: auto;
  width: 86%;
  background: rgba(46, 91, 107, 0.12);
}

.chat-bubble.coach {
  width: 92%;
}

.share-preview {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(31, 58, 46, 0.08);
}

.share-preview .summary-image {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-report);
  overflow: hidden;
  border: 1px solid rgba(176, 134, 60, 0.2);
}

.share-preview .summary-iframe {
  width: 760px;
  height: 1160px;
  transform: scale(0.36);
  transform-origin: top left;
  margin-left: 0;
  border: 0;
}

.dashboard-grid {
  align-items: center;
}

.dashboard-panel {
  display: grid;
  gap: 12px;
}

.tab-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tab {
  min-height: 36px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(239, 235, 224, 0.86);
  border: 1px solid rgba(74, 70, 60, 0.1);
}

.report-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-tabs .tab {
  cursor: pointer;
  appearance: none;
  border: 1px solid rgba(74, 70, 60, 0.1);
  background: rgba(239, 235, 224, 0.86);
  font: inherit;
  line-height: 1.35;
  text-align: center;
  padding: 0 6px;
  font-size: 10px;
}

.artifact-viewer .report-tabs .tab.active {
  background: var(--pitch);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(246, 243, 236, 0.08);
}

.artifact-viewer .report-tabs .tab {
  min-height: 30px;
  min-width: 0;
  white-space: nowrap;
}

.tab.active {
  background: var(--pitch);
  color: var(--paper);
}

.roster-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roster-item {
  padding: 12px;
}

.roster-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--pitch);
  color: var(--paper);
  font-weight: 700;
}

.roster-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.quote-card {
  position: relative;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 46px;
  height: 2px;
  background: var(--brass);
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.bullet {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.bullet-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--pitch);
}

.cta-band {
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.footer {
  padding: 0 0 42px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(74, 70, 60, 0.12);
  color: var(--muted);
  font-size: 14px;
}

.report-page {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(239, 235, 224, 0.52), rgba(246, 243, 236, 1)),
    var(--paper);
}

.report-sheet {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(239, 235, 224, 0.28), rgba(246, 243, 236, 1)),
    var(--paper);
  border-radius: var(--radius-report);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(74, 70, 60, 0.12);
}

.report-sheet::before,
.report-sheet::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(176, 134, 60, 0.42);
  pointer-events: none;
}

.report-sheet::after {
  inset: 20px;
  border-color: rgba(74, 70, 60, 0.12);
}

.report-header,
.report-summary,
.compare-grid,
.phase-strip,
.report-callouts,
.report-footer {
  position: relative;
  z-index: 1;
}

.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 20px;
}

.report-meta {
  margin: 8px 0 0;
  color: var(--pitch);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seal-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seal-lockup img {
  width: 72px;
  height: 72px;
}

.report-title {
  margin: 6px 0 0;
  font-family: "Fraunces", serif;
  font-size: 25px;
  line-height: 1.05;
}

.report-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.powered-by {
  text-align: right;
}

.powered-by span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.report-summary {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 8px;
  padding: 0 12px;
}

.summary-hero,
.summary-verdict,
.compare-card,
.phase-card,
.bilingual-card {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(74, 70, 60, 0.1);
}

.summary-hero {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(31, 58, 46, 0.06), rgba(246, 243, 236, 0.9)),
    rgba(239, 235, 224, 0.8);
}

.summary-verdict {
  padding: 18px;
  background: rgba(31, 58, 46, 0.96);
  color: var(--paper);
}

.summary-verdict p,
.summary-verdict li {
  color: rgba(246, 243, 236, 0.88);
}

.summary-kicker {
  margin: 0;
  color: var(--pitch);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.summary-hero h2,
.summary-verdict h2 {
  margin: 10px 0 0;
  font-family: "Fraunces", serif;
  font-size: 34px;
  line-height: 0.98;
}

.summary-hero p,
.summary-verdict p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.summary-strips {
  margin-top: 18px;
}

.summary-strip {
  background: rgba(246, 243, 236, 0.94);
}

.summary-strip em {
  display: block;
  margin-top: 4px;
  color: var(--pitch);
  font-style: normal;
  font-family: "Mukta", "Tiro Devanagari Hindi", sans-serif;
}

.summary-verdict ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding: 0 12px;
}

.compare-card {
  padding: 18px;
  background: rgba(246, 243, 236, 0.88);
}

.compare-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.compare-top h3 {
  margin: 0;
  font-size: 15px;
}

.skeleton-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at top, rgba(176, 134, 60, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(31, 58, 46, 0.1), rgba(239, 235, 224, 0.92));
}

.skeleton-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(176, 134, 60, 0.62);
  border-radius: 14px;
}

.skeleton-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phase-card .mini-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.phase-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding: 0 12px;
}

.phase-card {
  padding: 12px;
  background: rgba(239, 235, 224, 0.76);
}

.phase-card .phase-label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pitch);
  font-weight: 700;
}

.phase-card .mini-frame {
  height: 104px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(31, 58, 46, 0.08), rgba(239, 235, 224, 0.9)),
    var(--paper);
  overflow: hidden;
  position: relative;
}

.phase-card .mini-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phase-card p {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.phase-card em {
  display: block;
  margin-top: 4px;
  color: var(--pitch);
  font-style: normal;
  font-family: "Mukta", "Tiro Devanagari Hindi", sans-serif;
}

.report-callouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding: 0 12px;
}

.bilingual-card {
  padding: 18px;
  background: rgba(246, 243, 236, 0.88);
}

.bilingual-card h3 {
  margin: 0;
  font-size: 15px;
}

.bilingual-card p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.devanagari {
  display: block;
  margin-top: 6px;
  color: var(--pitch);
  font-family: "Mukta", "Tiro Devanagari Hindi", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: 12px;
}

.report-footer .tiny-pill {
  background: rgba(239, 235, 224, 0.9);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero > .container {
    width: min(calc(100% - 72px), 1200px);
  }

  .hero-grid,
  .artifact-grid,
  .story-grid,
  .dashboard-grid,
  .trust-grid,
  .cta-band,
  .quote-grid,
  .report-summary,
  .compare-grid,
  .phase-strip,
  .report-callouts,
  .roster-list {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-card-wrap {
    transform: none;
  }

  .hero-card {
    height: 420px;
  }

  .hero-card .report-iframe {
    transform: scale(0.42);
  }

  .artifact-report {
    height: 980px;
  }

  .cta-band {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 24px), 1360px);
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .topbar {
    margin-bottom: 28px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-copy p,
  .section-copy p,
  .cta-copy p,
  .body-copy {
    font-size: 16px;
  }

  .hero-card {
    height: 360px;
    padding: 10px;
  }

  .hero-card .report-iframe {
    transform: scale(0.38);
    transform-origin: top left;
    margin-left: 0;
  }

  .artifact-report {
    height: 760px;
  }

  .camera-area {
    min-height: 280px;
  }

  .quality-grid,
  .tab-row {
    grid-template-columns: 1fr;
  }

  .report-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 2px;
  }

  .artifact-grid {
    gap: 12px;
  }

  .artifact-viewer {
    width: 100%;
    height: calc(100svh - 96px);
    border-radius: 28px;
  }

  .artifact-report {
    height: 100%;
  }

  .artifact-notes {
    display: none;
  }

  .footer-bar,
  .report-header,
  .report-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .report-sheet {
    padding: 18px 14px;
  }

  .report-sheet::before {
    inset: 8px;
  }

  .report-sheet::after {
    inset: 14px;
  }

  .report-title {
    font-size: 22px;
  }

  .summary-hero h2,
  .summary-verdict h2 {
    font-size: 28px;
  }

  .quote-grid {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button-primary,
  .button-secondary,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
