/* ============================================================
   Applicaa — Hero embed stylesheet
   Extracted from prototypes/new-landing/styles.css (hero scope only).
   Assumes "Proxima Nova" and "Inter" are already loaded by the
   host page (Webflow site-wide fonts). Falls back to the system
   stack otherwise.
   ============================================================ */

/* ============================================================
   Design tokens
   ============================================================ */
:root {
  /* Primary scale (Dark Blue / brand signature) */
  --primary-100: #D4DFF9;
  --primary-200: #ABBFF4;
  --primary-300: #7B94DE;
  --primary-400: #546CBD;
  --primary-500: #263C91;
  --primary-600: #1B2D7C;
  --primary-700: #132168;
  --primary-800: #0C1654;
  --primary-900: #070E45;
  --primary-950: #050B3B;

  /* Secondary scale (Orange-Red / brand accent) */
  --secondary-100: #FEEBDB;
  --secondary-200: #FDD2B8;
  --secondary-300: #F9B293;
  --secondary-400: #F39376;
  --secondary-500: #EC634B;
  --secondary-600: #CA4136;
  --secondary-700: #A92526;
  --secondary-800: #881721;
  --secondary-900: #710E1E;
  --secondary-950: #610B00;

  /* Brand ink (aliased to primary scale) */
  --ink-deep:   var(--primary-700);
  --ink-navy:   var(--primary-500);
  --ink-royal:  var(--primary-400);
  --ink-soft:   #4B556B;
  --ink-mute:   #7B8499;
  --ink-cta:    var(--primary-900);

  /* Brand warm */
  --accent-coral:  var(--secondary-500);
  --accent-orange: var(--secondary-600);
  --accent-amber:  var(--secondary-400);

  /* Surface */
  --paper:        #FFFFFF;
  --page-bg:      #EEF2F8;
  --page-bg-soft: #F4F8FD;
  --rule:         #DCE0EE;
  --card:         #FFFFFF;

  /* Status / semantic */
  --info-blue:      #3478F7;

  /* Type families */
  --font-display: "Proxima Nova","Inter","Segoe UI",system-ui,sans-serif;
  --font-body:    "Inter","Segoe UI",system-ui,-apple-system,sans-serif;

  /* Type scale */
  --t-h1:       32px;  --lh-h1:      38px;
  --t-h2:       22px;  --lh-h2:      28px;
  --t-h3:       18px;  --lh-h3:      24px;
  --t-body:     14px;  --lh-body:    22px;

  /* Radius */
  --r-pill:   999px;
  --r-card:   16px;
  --r-card-l: 24px;
  --r-input:  8px;

  /* Elevation */
  --shadow-card: 0 8px 24px rgba(15, 26, 79, 0.08);
}

/* ============================================================
   Base reset / element styles
   ============================================================ */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--ink-soft);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); margin: 0; }
h1 { font-size: var(--t-h1); line-height: var(--lh-h1); font-weight: 700;
     color: var(--ink-navy); letter-spacing: -0.01em; }
h2 { font-size: var(--t-h2); line-height: var(--lh-h2); font-weight: 700; color: #000; }
h3 { font-size: var(--t-h3); line-height: var(--lh-h3); font-weight: 600; color: #000; }

p { font-family: var(--font-body); font-size: var(--t-body);
    line-height: var(--lh-body); color: var(--ink-soft); margin: 0 0 12px; }

strong { font-weight: 600; }

em.italic-emph, .italic-emph {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  color: inherit;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; }

/* ============================================================
   Layout primitive
   ============================================================ */
.wrap { max-width: 1224px; margin: 0 auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; padding: 11px 18px; border-radius: 8px;
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:active { transform: scale(0.985); }
.btn-coral { background: var(--secondary-500); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 4px 12px rgba(202,65,54,0.18); }
.btn-coral:hover { background: var(--secondary-600); }
.btn-royal { color: var(--ink-deep); border-color: var(--rule); background: #fff; }
.btn-royal:hover { background: var(--page-bg-soft); border-color: var(--ink-mute); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(2px); }

/* ============================================================
   Sector chips — sits at the top of the hero, dark bg
   ============================================================ */
.hero-sector-bar {
  display: flex; align-items: center; gap: 4px; flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-weight: 600;
}
.hero-sector-bar::-webkit-scrollbar { display: none; }
.hero-sector-bar .label {
  font-family: var(--font-display); font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-right: 6px;
  white-space: nowrap;
}
.sector-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: rgba(255,255,255,0.78);
  border: 1px solid transparent;
  padding: 5px 10px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
  text-decoration: none; white-space: nowrap;
}
.sector-chip:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
}
.sector-chip[aria-current="true"] {
  background: #fff; color: var(--ink-deep);
  border-color: #fff;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-700) 55%, var(--primary-600) 100%);
  padding: 48px 40px;
  color: #fff;
}
@media (max-width: 720px) { .hero { padding: 48px 20px 56px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 56px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.92);
  padding: 0;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 16px;
}
.hero-eyebrow .pulse {
  display: inline-flex;
  width: 6px; height: 6px;
  background: #2BAE5E; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(93,208,143,0.6);
  animation: pulseGreen 2.2s infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93,208,143,0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(93,208,143,0); }
}

.hero-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 0.4em;
}
.hero-h1 .accent { color: var(--secondary-500); }
.hero-sub {
  font-family: var(--font-body); font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 0 30px;
}
.hero-sub strong { color: var(--secondary-500); font-weight: 700; }

.hero-emma-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2253FF 0%, #347EF6 100%);
  color: #fff;
  padding: 3px 12px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  margin: 0 0;
  box-shadow:
    0 10px 24px rgba(38, 60, 145, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  letter-spacing: 0.005em;
  width: fit-content;
}
.hero-emma-chip .spark { font-size: 14px; line-height: 1; }
.hero-emma-chip strong { font-weight: 800; letter-spacing: 0.01em; }

.hero-emma-chip-wrap {
  margin-top: 8px;
  text-align: right;
}

/* ============================================================
   Audit input + typeahead dropdown
   ============================================================ */
.audit-input {
  display: flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 7px 7px 7px 16px;
  box-shadow: 0 12px 32px rgba(15,26,79,0.07), 0 1px 2px rgba(15,26,79,0.04);
  max-width: 540px;
  transition: box-shadow .15s, border-color .15s;
  position: relative;
}
.audit-input:focus-within {
  border-color: var(--secondary-500);
  box-shadow: 0 12px 32px rgba(202,65,54,0.12), 0 0 0 4px rgba(236,99,75,0.10);
}
.audit-input-wrap {
  position: relative; flex: 1; display: flex; overflow: hidden;
}
.audit-input-wrap input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 15px; color: var(--ink-deep);
  padding: 10px 4px; min-width: 0;
}
.audit-input-wrap input::placeholder { color: transparent; }
.rotating-placeholder {
  position: absolute; left: 4px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--ink-mute);
  font-family: var(--font-body); font-size: 15px;
  transition: opacity 250ms ease;
  white-space: nowrap;
}
.rotating-placeholder.fading { opacity: 0; }
.audit-input .btn { padding: 10px 18px; border-radius: 8px; }

.hero-extra-links {
  margin-top: 14px;
  display: flex;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}
.hero-extra-links a {
  color: var(--primary-200);
  text-decoration: none;
  transition: color .15s;
}
.hero-extra-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.school-suggest {
  position: absolute;
  top: calc(100% + 6px); left: 0; right: 0;
  margin: 0; padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 26, 79, 0.14), 0 0 0 1px rgba(15, 26, 79, 0.04);
  max-height: 320px; overflow-y: auto;
  z-index: 50;
  animation: school-suggest-in 140ms ease-out;
}
.school-suggest-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-body);
  color: var(--ink-deep);
  cursor: pointer;
  transition: background .12s;
}
.school-suggest-item.is-active,
.school-suggest-item:hover {
  background: var(--primary-100);
}
.school-suggest-body {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
}
.school-suggest-name {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-deep);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.school-suggest-meta {
  font-size: 12.5px; color: var(--ink-mute);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.school-suggest-customer-badge {
  display: inline-flex; align-items: center;
  padding: 1px 7px; border-radius: 999px;
  background: rgba(43, 174, 94, 0.12);
  color: #1E8A48;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.school-suggest-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 600;
  color: var(--secondary-500);
  opacity: 0;
  transition: opacity .15s;
  flex-shrink: 0;
}
.school-suggest-item:hover .school-suggest-cta,
.school-suggest-item.is-active .school-suggest-cta {
  opacity: 1;
}
.school-suggest-empty {
  padding: 12px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}
.audit-input .btn:disabled {
  opacity: 0.55;
  cursor: default;
  box-shadow: none;
}
.audit-input .btn:disabled:hover {
  background: var(--secondary-500);
}
@keyframes school-suggest-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Preview card — outer chrome only. The inner .audit-page is
   wider than this card; the right edge gets clipped (intentional
   "real app peeking off screen" look).
   ============================================================ */
.preview-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
  box-shadow:
    0 30px 60px -20px rgba(15,26,79,0.18),
    0 18px 36px -18px rgba(15,26,79,0.12),
    0 0 0 1px rgba(15,26,79,0.04);
  position: relative;
}

/* Audit-page preview dashboard — every dimension below uses em
   relative to .audit-page's font-size — the single knob.
   Reference baseline is 14px → 100%; current 10.95px ≈ 78%. */
.audit-page {
  font-size: 10.95px;
  width: 51.429em;
  padding: 1.571em 1.714em 1.714em;
  background: #F2F5FB;
  color: var(--ink-deep);
  font-family: var(--font-body);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.4;
}
.audit-page:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 96px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(0deg, #F2F5FB, transparent);
}

@media (max-width: 900px) {
  .audit-page { font-size: 1.9vw; width: 100%; }
}

.audit-header { margin-bottom: 0.543em; position: relative; }
.audit-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75em;
  color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.571em;
}
.audit-school-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.571em;
  letter-spacing: -0.02em; color: var(--ink-deep);
  margin: 0 0 0.182em;
  transition: opacity 250ms ease;
}
.audit-school-name.is-fading { opacity: 0; }
.audit-school-meta {
  font-size: 0.929em;
  color: var(--ink-mute);
  margin-bottom: 0.615em;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: opacity 250ms ease;
}
.audit-school-meta.is-fading { opacity: 0; }
.audit-school-meta .audit-dot { opacity: 0.5; margin: 0 0.462em; }
.audit-school-meta .audit-mis { color: #1F9D55; font-weight: 600; }
.audit-school-meta-muted { opacity: 0.55; letter-spacing: 0.08em; }
.audit-visit {
  display: inline-flex; align-items: center;
  gap: 0.462em;
  font-size: 0.929em;
  color: #347EF6; text-decoration: none;
  display: none;
}
.audit-visit:hover { text-decoration: underline; }

.audit-grid {
  display: grid;
  grid-template-columns: 20em 1fr;
  gap: 1.143em;
  align-items: start;
}

/* LEFT column */
.audit-score-card {
  background: #fff;
  border-radius: 1em;
  padding: 1.286em 1.143em;
  text-align: center;
  box-shadow: 0 0.071em 0 rgba(15,26,79,0.04);
  margin-bottom: 0.714em;
}
.audit-score-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.786em;
  color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.091em;
}
.audit-score-badge {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2.571em;
  width: 1.778em; height: 1.778em;
  border-radius: 0.444em;
  background: linear-gradient(135deg, #E8852B 0%, #C9651A 100%);
  color: #fff; font-family: var(--font-display); font-weight: 800;
  box-shadow: 0 0.167em 0.389em -0.111em rgba(201,101,26,0.4);
  transition: opacity 250ms ease;
}
.audit-score-badge.is-fading { opacity: 0; }
.audit-score-badge.grade-a {
  background: linear-gradient(135deg, #2BAE5E 0%, #1E8A48 100%);
  box-shadow: 0 0.167em 0.389em -0.111em rgba(30,138,72,0.4);
}
.audit-score-badge.grade-b {
  background: linear-gradient(135deg, #4BB573 0%, #358F58 100%);
  box-shadow: 0 0.167em 0.389em -0.111em rgba(53,143,88,0.4);
}
.audit-score-badge.grade-c {
  background: linear-gradient(135deg, #E8852B 0%, #C9651A 100%);
  box-shadow: 0 0.167em 0.389em -0.111em rgba(201,101,26,0.4);
}
.audit-score-badge.grade-d {
  background: linear-gradient(135deg, #DD5F2A 0%, #BC4818 100%);
  box-shadow: 0 0.167em 0.389em -0.111em rgba(188,72,24,0.4);
}
.audit-score-badge.grade-f {
  background: linear-gradient(135deg, #D14040 0%, #A82D2D 100%);
  box-shadow: 0 0.167em 0.389em -0.111em rgba(168,45,45,0.4);
}
.audit-score-title {
  font-size: 1.143em;
  margin-top: 0.625em;
  font-family: var(--font-display); font-weight: 700; color: var(--ink-deep);
  transition: opacity 250ms ease;
}
.audit-score-title.is-fading { opacity: 0; }
.audit-score-desc {
  font-size: 0.857em;
  margin-top: 0.5em;
  color: var(--ink-mute); line-height: 1.4;
}
.audit-grade-scale {
  display: flex; justify-content: center;
  gap: 0.357em;
  margin-top: 0.857em;
  display: none;
}
.audit-grade-scale .g {
  font-size: 0.786em;
  width: 2em; height: 2em;
  border-radius: 0.545em;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff;
}
.audit-grade-scale .g.a { background: #2BAE5E; }
.audit-grade-scale .g.b { background: #4BB573; }
.audit-grade-scale .g.c { background: #E8852B; }
.audit-grade-scale .g.d { background: #DD5F2A; }
.audit-grade-scale .g.f { background: #D14040; }
.audit-grade-scale .g.is-active {
  transform: scale(1.15);
  box-shadow: 0 0.182em 0.545em rgba(0,0,0,0.18);
}

.audit-dim-list { display: flex; flex-direction: column; gap: 0.129em; }
.audit-dim {
  font-size: 0.929em;
  border-radius: 0.769em;
  padding: 0.649em 0.923em;
  background: #fff;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-deep);
  box-shadow: 0 0.077em 0 rgba(15,26,79,0.03);
}
.audit-dim .grade {
  font-size: 0.846em;
  width: 2em; height: 2em;
  border-radius: 0.545em;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff;
  transition: opacity 250ms ease;
}
.audit-dim .grade.is-fading { opacity: 0; }
.audit-dim .grade.a { background: #2BAE5E; }
.audit-dim .grade.b { background: #4BB573; }
.audit-dim .grade.c { background: #E8852B; }
.audit-dim .grade.d { background: #DD5F2A; }
.audit-dim .grade.f { background: #D14040; }

.audit-tracked {
  font-size: 0.821em;
  margin-top: 1.043em;
  color: var(--ink-mute); line-height: 1.5;
  display: none;
}
.audit-tracked strong { color: var(--ink-deep); font-weight: 600; }

/* RIGHT column — Key Findings panels (clipped at column edge) */
.audit-panel {
  background: #fff;
  border-radius: 1em;
  padding: 1em 1.286em;
  margin-bottom: 0.257em;
  box-shadow: 0 0.071em 0 rgba(15,26,79,0.04);
}
.audit-panel:last-child {
  margin-bottom: 0;
}
.audit-panel h4 {
  font-size: 1em;
  margin: 0 0 0.229em;
  gap: 0.571em;
  font-family: var(--font-display); font-weight: 700; color: var(--ink-deep);
  display: flex; align-items: center;
}
.audit-panel p {
  font-size: 0.857em;
  margin: 0 0;
  color: var(--ink-mute); line-height: 1.4;
}

/* ============================================================
   REPORT STRIP — flatter, more elegant
   ============================================================ */
.report-strip {
  padding: 64px 40px 32px;
  background: #fff;
  position: relative;
}
/* When the report banner lives inside the hero, let the hero gradient
   show through and rely on the hero's side padding. */
.hero .report-strip {
  background: transparent;
  padding: 32px 0 0 0;
}
@media (max-width: 720px) {
  .hero .report-strip { padding: 36px 0 0 0; }
}
.report-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px; align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #122d8c 0%, #347EF6 100%);
  border-radius: var(--r-card-l);
  padding: 16px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.report-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary-500), var(--secondary-700));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(202,65,54,0.25);
}
.report-card .label {
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px;
  color: var(--secondary-400); letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.report-card .title {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: #fff; margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.report-card .desc {
  font-family: var(--font-body); font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.66); max-width: 540px;
}
.report-card .btn-coral { background: #fff; color: var(--ink-deep); box-shadow: none; }
.report-card .btn-coral:hover { background: var(--secondary-500); color: #fff; }
@media (max-width: 720px) {
  .report-card { grid-template-columns: 1fr; gap: 12px; padding: 22px 22px; }
  .report-card .icon { display: none; }
}

/* Report-strip modal */
.report-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 26, 79, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: report-modal-fade 180ms ease-out;
}
.report-modal {
  position: relative;
  width: 100%; max-width: 520px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px 28px;
  padding: 0;
  box-shadow: 0 30px 60px -12px rgba(15, 26, 79, 0.35), 0 0 0 1px rgba(15, 26, 79, 0.06);
  animation: report-modal-pop 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.report-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  color: var(--ink-mute); border-radius: 8px;
  transition: background .15s, color .15s;
}
.report-modal-close:hover { background: var(--page-bg); color: var(--ink-deep); }
.report-modal-title {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  line-height: 1.25; letter-spacing: -0.015em;
  color: var(--ink-deep);
  margin: 0 0 6px;
}
.report-modal-sub {
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.report-modal-form { display: flex; flex-direction: column; gap: 14px; }
.report-modal-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .report-modal-name-row { grid-template-columns: 1fr; }
}
.report-modal-required-mark {
  color: #E03A3A;
  margin-left: 2px;
  font-weight: 700;
}
.report-modal-field { display: flex; flex-direction: column; gap: 5px; }
.report-modal-field span {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  color: var(--ink-deep); letter-spacing: 0.005em;
}
.report-modal-field input {
  width: 100%; box-sizing: border-box;
  background: #fff; border: 1px solid var(--rule); border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink-deep);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.report-modal-field input::placeholder { color: var(--ink-mute); }
.report-modal-field input:focus {
  border-color: var(--secondary-500);
  box-shadow: 0 0 0 4px rgba(236, 99, 75, 0.12);
}
.report-modal-submit { margin-top: 8px; justify-content: center; }

/* Success state */
.report-modal-success {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 8px 0 4px;
  animation: report-modal-success-in 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.report-modal-check {
  width: 96px; height: 96px;
  margin: 0 0 18px;
  animation: report-modal-check-pop 420ms cubic-bezier(0.2, 1.6, 0.4, 1);
}
.report-modal-success .report-modal-title { margin: 0 0 8px; }
.report-modal-success .report-modal-sub { margin: 0 0 22px; }
.report-modal-success .report-modal-sub strong { color: var(--ink-deep); font-weight: 700; }
.report-modal-done { min-width: 120px; justify-content: center; }

@keyframes report-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes report-modal-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes report-modal-success-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes report-modal-check-pop {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
