/* Base */

:root {
  --bg: #05070b;
  --bg-panel: #0b1017;
  --bg-panel-soft: #0f151f;
  --bg-header: #05070bfa;
  --border-subtle: #1b2534;
  --accent: #39d98a;
  --accent-soft: rgba(57, 217, 138, 0.15);
  --accent-strong: #1fc474;
  --redaction: #05070b;
  --text-main: #edf2ff;
  --text-muted: #a0aec0;
  --text-softer: #6b7280;
  --danger: #f97373;
  --focus: #fbbf24;
  --shell-width: 1040px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 22px 55px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #07101b, #020409 58%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Page shell */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 0 1.3rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, var(--bg-header), transparent);
  backdrop-filter: blur(22px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--shell-width);
  margin: 0 auto;
}

/* Brand */

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
   color: inherit;
  text-decoration: none;
}

.brand-mark {
   width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-softer);
}

/* Navigation */

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-softer);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.15s ease-out, border-color 0.15s ease-out, background 0.15s ease-out;
}

.site-nav a:hover {
  color: var(--accent);
  border-color: rgba(57, 217, 138, 0.4);
  background: rgba(15, 23, 42, 0.92);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: rgba(57, 217, 138, 0.4);
  background: rgba(15, 23, 42, 0.96);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* Hero */

.hero {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-kicker {
  margin: 0;
  font-size: 1rem;
  color: var(--accent);
}

.hero-body {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 38rem;
}

/* Services grid – pill tiles with accent glow on one side */

.services-grid {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.services-grid li {
  position: relative;
  padding: 0.45rem 1.1rem 0.5rem 1.15rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at left center,
    rgba(57, 217, 138, 0.18),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(15, 23, 42, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
  font-size: 0.86rem;
  color: var(--text-main);
  overflow: hidden;
}

.services-grid li::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 2px rgba(57, 217, 138, 0.4),
    0 0 16px rgba(57, 217, 138, 0.65);
}

/* Hero CTA */

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

/* Hero aside file */

.hero-aside {
  display: flex;
  align-items: stretch;
}

/* Stylized classified file card */

.hero-file {
  position: relative;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 55%, #000 100%);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  overflow: hidden;
}

/* subtle red “laser” lines to eat the negative space */
.hero-file::before,
.hero-file::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(248, 113, 113, 0.8),
    transparent
  );
  opacity: 0.7;
  pointer-events: none;
}

.hero-file::before {
  top: 26%;
}

.hero-file::after {
  top: 42%;
  opacity: 0.5;
}

.hero-file > * {
  position: relative;
  z-index: 1;
}

.hero-file-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-redaction-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

/* Cherry-red bars: solid red on the left, fading to dark cherry */

.hero-redaction-bars span {
  display: block;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #ef4444 0%,
    #dc2626 22%,
    #b91c1c 55%,
    #450a0a 100%
  );
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 22px rgba(248, 113, 113, 0.55);
}

.hero-redaction-bars span:nth-child(2) {
  width: 85%;
}

.hero-redaction-bars span:nth-child(3) {
  width: 70%;
}

.hero-file-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Panels */

.section {
  padding: 1rem 0 3rem;
}

.section + .section {
  padding-top: 0.5rem;
}

.panel {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(57, 217, 138, 0.16), #020617 55%);
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.7rem 1.8rem;
}

/* Sample-report / community variants */

body.page-report {
  background: radial-gradient(circle at top, #020617, #02030a 55%, #000 100%);
}

/* Intro panel on sample-report page with snow owl artwork */

.panel-report-intro {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(57, 217, 138, 0.2), #020617 60%);
}

.panel-report-intro::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -26%;
  width: 320px;
  height: 320px;
  background-image: url("assets/commit-confidential-icon-snow.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.34;
  filter: grayscale(0.1);
  transform: rotate(-4deg);
  pointer-events: none;
}

/* Make the sample report document panel feel like a heavier dossier */

.panel.sample-report {
  background: radial-gradient(circle at top left, #020617, #020617 45%, #02040b 100%);
  border: 1px solid rgba(30, 64, 175, 0.55);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.9);
}

/* Community panel variant */

.panel-community {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.16), #020617 60%);
}

.panel-community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(57, 217, 138, 0.08), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.8;
  pointer-events: none;
}

.panel-community::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -6%;
  width: 440px;
  height: 300px;
  background-image: url("assets/commit-confidential-icon-snow.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 62% 70%;
  opacity: 0.55;
  filter: saturate(1.05) drop-shadow(0 14px 30px rgba(0, 0, 0, 0.65));
  transform: rotate(-2deg);
  pointer-events: none;
}

/* Callout */

.callout {
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(57, 217, 138, 0.09), transparent 55%);
  pointer-events: none;
}

.callout-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.callout-body {
  margin: 0;
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--accent-strong);
}

.callout-body p {
  margin: 0.15rem 0;
}

/* Field briefing terminal effect */

.welcome-terminal {
  position: relative;
  min-height: 4.5rem; /* prevents layout jump while typing */
}

.terminal-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blinkCursor 1s steps(1, start) infinite;
}

@keyframes blinkCursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Method */

.section-body {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* Brief / conversion panel */

.panel-brief {
  position: relative;
  overflow: hidden;
}

.panel-brief::after {
  content: "";
  position: absolute;
  inset: 16% -12% auto auto;
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, rgba(57, 217, 138, 0.24), transparent 60%);
  transform: skewX(-8deg);
  opacity: 0.5;
  pointer-events: none;
}

.panel-brief-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.brief-tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--text-softer);
  background: rgba(11, 16, 23, 0.9);
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 1.25rem 0 1.5rem;
}

.brief-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(57, 217, 138, 0.08), rgba(5, 7, 11, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-subtle);
}

.brief-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brief-item p {
  margin: 0;
  color: var(--text-softer);
  font-size: 0.92rem;
}

.brief-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}


/* Mission / Offer */

.panel-mission {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.section-intro {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.mission-column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mission-subtitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.mission-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: var(--text-muted);
    flex: 1;
}

.mission-list li {
  margin-bottom: 0.55rem;
}

.mission-price {
  margin: 0;
  font-size: 0.98rem;
}

.mission-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-softer);
}

.mission-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

/* Pricing grid overrides */

.mission-grid-pricing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.75rem;
}

.pricing-tier {
  position: relative;
  height: 100%;
    padding: 1.4rem 1.45rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(150deg, rgba(57, 217, 138, 0.08), rgba(11, 16, 23, 0.95));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}

.pricing-tier::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -18%;
  width: 220px;
  height: 120px;
  background: linear-gradient(120deg, rgba(248, 113, 113, 0.32), transparent 60%);
  filter: blur(1px);
  transform: rotate(-4deg);
  opacity: 0.7;
  pointer-events: none;
}

.pricing-tier::after {
  content: "";
  position: absolute;
  inset: auto -16% -14% auto;
  width: 240px;
  height: 150px;
  background: linear-gradient(135deg, rgba(57, 217, 138, 0.2), transparent 70%);
  transform: rotate(-6deg);
  opacity: 0.55;
  pointer-events: none;
}

.pricing-tier-primary {
  border-color: rgba(57, 217, 138, 0.85);
  box-shadow: 0 18px 45px rgba(22, 163, 74, 0.35);
}


/* Responsive behavior for pricing tiers */
@media (max-width: 1024px) {
  .mission-grid-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .mission-grid-pricing {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .brief-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease-out, border-color 0.15s ease-out,
    transform 0.08s ease-out, box-shadow 0.15s ease-out, color 0.15s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #02120a;
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(22, 163, 74, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.45);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.99);
  border-color: rgba(148, 163, 184, 0.9);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-softer);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--accent);
}

.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* Ethics */

.section-ethics .panel-ethics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ethics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.ethics-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.ethic-mark {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(57, 217, 138, 0.4);
}

/* Submit */

.panel-submit .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.panel-submit .section-footnote {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: var(--text-softer);
}

/* Sections: Most wanted */

.panel-tackboard {
  position: relative;
  overflow: hidden;
}

.panel-tackboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.14) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.28;
  pointer-events: none;
}

.panel-tackboard > * {
  position: relative;
}

.targets-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.92rem;
}

.targets-list li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--text-muted);
}

.target-pin {
  font-size: 1rem;
  line-height: 1;
}

.target-name {
  font-weight: 500;
}

.target-note {
  font-size: 0.9rem;
  color: var(--text-softer);
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 1.8rem 0 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at top, #020617, #000 70%);
}

.site-footer-inner {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-softer);
}

/* Section redaction title bar */

.title-redaction {
  display: inline-flex;
  vertical-align: middle;
  width: 2rem;
  height: 0.7rem;
  margin-right: 0.5rem;
  border-radius: 6px;
  background: linear-gradient(to right, #020617, #111827);
  position: relative;
  overflow: hidden;
}

.title-redaction::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.65), transparent);
  mix-blend-mode: screen;
  opacity: 0.7;
}

/* Title and section spacing */

.section-title span:last-child {
  vertical-align: middle;
}

/* Report and sample report styling */

.sample-report {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.sample-report-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.sample-report-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sample-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-softer);
  margin-right: 0.4rem;
}

.sample-report-score {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.sample-score-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.sample-score-note {
  font-size: 0.78rem;
  color: var(--text-softer);
}

.sample-report-body {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.sample-report-section h2 {
  font-size: 1rem;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.sample-report-section h3 {
  font-size: 0.92rem;
  margin: 1rem 0 0.4rem;
  color: var(--text-main);
}

.sample-report-section p {
  margin: 0 0 0.4rem;
}

.sample-report-section ul {
  margin: 0 0 0.4rem 1.1rem;
  padding: 0;
}

.sample-section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.sample-score-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sample-score-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(57, 217, 138, 0.5);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.8rem;
  color: var(--accent);
}

.sample-score-meaning {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-softer);
}

.sample-report-final {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 1.1rem;
  margin-top: 0.4rem;
}

.sample-report-summary {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 1.5rem;
}

.sample-summary-pillars h3,
.sample-summary-text h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
}

.sample-summary-pillars ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.86rem;
}

.sample-summary-pillars li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.sample-summary-pillars span:last-child {
  color: var(--accent);
  font-weight: 500;
}

.sample-summary-text p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 4.5rem;
  }

  .site-header-inner {
    padding-inline: 1.2rem;
  }

  .site-nav {
    gap: 0.4rem;
  }

  .section {
    padding-inline: 0;
  }

  .panel {
    border-radius: 18px;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    padding-inline: 1rem;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .shell {
    padding-inline: 1rem;
  }

  .panel {
    padding-inline: 1.3rem;
  }

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

  .panel-submit .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 800px) {
  .sample-report-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sample-report-score {
    align-items: flex-start;
    text-align: left;
  }

  .sample-report-summary {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* About page */
.about-hero {
  padding-top: 4.5rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.6rem;
  align-items: center;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.6rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.85rem;
}

.about-highlights li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.8rem 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(57, 217, 138, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.dossier-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.dossier-label {
  position: absolute;
  top: -0.9rem;
  left: 1.4rem;
  background: var(--accent);
  color: #0b1017;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dossier-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0b0b0b;
  border: 1px solid var(--border-subtle);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dossier-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.dossier-flag,
.dossier-note {
  position: absolute;
  background: rgba(5, 7, 11, 0.8);
  color: var(--text-main);
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
  font-weight: 700;
}

.dossier-flag {
  top: 1rem;
  right: 1rem;
}

.dossier-note {
  bottom: 1.2rem;
  left: 1rem;
  background: rgba(57, 217, 138, 0.9);
  color: #04250f;
}

.dossier-caption {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.about-panel {
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.9), rgba(11, 16, 23, 0.75));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.pillar-card {
  background: var(--bg-panel-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-subtle);
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.pillar-card p {
  margin: 0;
  color: var(--text-muted);
}

.about-callout {
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(120deg, rgba(57, 217, 138, 0.1), rgba(57, 217, 138, 0));
}

.about-foot .section-title {
  margin: 0 0 0.35rem;
}

@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .dossier-label {
    position: static;
    display: inline-block;
    margin-bottom: 0.6rem;
  }
}
