/* ==========================================================================
   Annex — page-specific components
   Sections are grouped by the page that owns them; several are shared by
   two or more pages (noted inline).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Home: hero revenue-engine panel
   -------------------------------------------------------------------------- */
.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 18px;
  border-bottom: 1px solid var(--line);
}
.dash-title { font-weight: 900; color: var(--black); }
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 10px;
  background: #ecfdf3;
  color: #027a48;
  font-weight: 900;
  font-size: 12px;
}
.status::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: #12b76a; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  min-height: 128px;
  position: relative;
  overflow: hidden;
}
.metric::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 74px;
  height: 74px;
  background: rgba(240, 194, 86, .16);
  border-radius: 999px;
}
.metric small { display: block; color: var(--muted); font-weight: 800; font-size: 12px; }
.metric strong {
  display: block;
  color: var(--black);
  margin-top: 10px;
  font-size: 30px;
  letter-spacing: -.04em;
  font-family: Outfit, Inter, sans-serif;
}
.metric span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
.system-flow-strip { margin-top: 14px; background: var(--black); color: #fff; border-radius: 22px; padding: 18px; }
.system-flow-strip .flow-title { color: #fff; font-weight: 900; font-size: 14px; margin-bottom: 14px; }
.system-flow-strip .flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.system-flow-strip .flow div {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #f5f5f5;
}

/* --------------------------------------------------------------------------
   Home + Start Here + Method: path cards
   -------------------------------------------------------------------------- */
.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: .22s ease;
  display: flex;
  flex-direction: column;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(24, 18, 8, .1);
  border-color: rgba(173, 123, 61, .45);
}
.path-card h3 { font-size: 22px; letter-spacing: -.04em; }
.path-card > p { margin-top: 12px; color: var(--muted); font-size: 14px; }
.path-card .check-list { margin: 16px 0 22px; font-size: 13px; font-weight: 700; gap: 8px; }
.card-link { margin-top: auto; font-weight: 900; color: var(--black); display: flex; align-items: center; gap: 8px; }
.path-card:hover .card-link { color: var(--gold); }

/* --------------------------------------------------------------------------
   Home: ecosystem cards
   -------------------------------------------------------------------------- */
.eco-card {
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.eco-card h3 { font-size: 23px; margin-bottom: 8px; }
.eco-card p { color: var(--muted); font-size: 14px; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.eco-tags span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #475467;
}

/* --------------------------------------------------------------------------
   Home: dark tool cards (free assessments)
   -------------------------------------------------------------------------- */
.tool-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 20px;
  padding: 20px;
  min-height: 160px;
  transition: .22s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 194, 86, .48);
  background: rgba(255, 255, 255, .09);
}
.tool-card h3 { font-size: 21px; margin-bottom: 10px; }
.tool-card p { color: #cbd5e1; font-size: 14px; }
.tool-card a { margin-top: 16px; display: inline-flex; color: var(--gold-2); font-weight: 900; font-size: 13px; }

/* Home: service cards + industry strip */
.service-card .mini { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card .mini span {
  padding: 7px 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #475467;
}
.industry-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-strip span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 900;
  color: #344054;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

/* --------------------------------------------------------------------------
   Google Ads: hero dashboard with floating cards
   -------------------------------------------------------------------------- */
.ads-dashboard { position: relative; min-height: 570px; }
.screen {
  position: absolute;
  inset: 42px 0 0 auto;
  width: min(100%, 520px);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(231, 229, 220, .95);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.screen-top {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: #fcfcfd;
}
.dots { display: flex; gap: 7px; }
.dots span { width: 10px; height: 10px; border-radius: 999px; background: #d1d5db; }
.screen-title { font-size: 13px; font-weight: 900; color: #333; }
.screen-body { padding: 24px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.metric-card { border: 1px solid var(--line); border-radius: 20px; padding: 16px; background: #fff; }
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.metric-card strong { font-size: 22px; letter-spacing: -.04em; font-family: Outfit, Inter, sans-serif; }
.chart {
  height: 210px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(to right, rgba(0, 0, 0, .035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, .035) 1px, transparent 1px),
    linear-gradient(180deg, #fff, #fafafa);
  background-size: 48px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.activity { display: grid; gap: 10px; }
.activity-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  background: #fff;
}
.activity-line span:last-child { color: var(--gold); font-weight: 900; }
.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(231, 229, 220, .92);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .13);
  backdrop-filter: blur(18px);
  animation: float 5s ease-in-out infinite;
}
.floating-card.a { left: 0; top: 0; width: 210px; }
.floating-card.b { right: 2px; bottom: 36px; width: 230px; animation-delay: -1.8s; }
.floating-card.c { left: 24px; bottom: 74px; width: 190px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.floating-card small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 7px;
}
.floating-card strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.05em;
  line-height: 1;
  font-family: Outfit, Inter, sans-serif;
}
.floating-card p { margin: 8px 0 0; color: #555; font-size: 12px; font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .floating-card { animation: none; } }

/* Google Ads: problem panel + leak cards */
.black-panel {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.black-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--gold);
  border-radius: 999px;
  filter: blur(70px);
  opacity: .28;
  right: -80px;
  bottom: -80px;
}
.black-panel h3 { position: relative; z-index: 1; margin: 0 0 18px; font-size: 32px; line-height: 1.05; color: #fff; }
.black-panel p { position: relative; z-index: 1; color: #d1d5db; line-height: 1.7; font-size: 17px; }
.problem-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.leak-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.leak-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
}
.leak-card strong { display: block; font-size: 18px; margin-bottom: 8px; }
.leak-card p { color: var(--muted); line-height: 1.55; font-size: 14px; }

/* Google Ads: big-number step cards */
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  min-height: 250px;
  overflow: hidden;
}
.step-grid { counter-reset: bigstep; }
.step-grid .step-card::before {
  counter-increment: bigstep;
  content: "0" counter(bigstep);
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  color: #f0ede4;
  font-family: Outfit, Inter, sans-serif;
}
.step-card h3 { position: relative; margin: 64px 0 14px; font-size: 27px; }
.step-card p { position: relative; color: var(--muted); line-height: 1.7; }

/* Google Ads: packages + comparison */
.package-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  padding: 34px;
  background: #fff;
  box-shadow: 0 16px 52px rgba(0, 0, 0, .06);
}
.package-card.highlight { background: #080808; color: #fff; border-color: #080808; }
.package-card h3 { font-size: 30px; }
.package-card.highlight h3 { color: #fff; }
.package-card .label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(173, 123, 61, .14);
  color: var(--gold);
}
.package-card.highlight .label { color: #111; background: var(--gold-2); }
.package-card p { margin-top: 12px; color: var(--muted); line-height: 1.65; }
.package-card.highlight p { color: #d1d5db; }
.compare-card { border: 1px solid var(--line); border-radius: 24px; padding: 34px; background: #fff; }
.compare-card.annex { border-color: #111; box-shadow: var(--shadow); }
.compare-card h3 { margin-bottom: 20px; font-size: 28px; }
.compare-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.compare-card li { color: #4b5563; font-weight: 700; }
.compare-card li::before { content: "— "; color: #c8c2b4; }
.compare-card.annex li { color: #111; }
.compare-card.annex li::before { content: "✓ "; color: var(--gold); font-weight: 900; }

/* --------------------------------------------------------------------------
   Co-branded pages (Fire & Ice, Execaros): shared bits
   -------------------------------------------------------------------------- */
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(17, 24, 39, .06);
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 20px;
  color: #2e3440;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.partner-pill b { color: var(--gold); }

.mini-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; max-width: 680px; }
.mini-step {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
}
.mini-step strong { display: block; color: var(--black); font-size: 14px; margin-bottom: 5px; }
.mini-step span { display: block; color: var(--muted); font-size: 12px; font-weight: 650; line-height: 1.4; }

/* Fire & Ice: dark hero dashboard */
.fi-dashboard {
  position: relative;
  background: #0b0b0c;
  color: #fff;
  border-radius: 26px;
  padding: 26px;
  overflow: hidden;
}
.fi-dashboard::before {
  content: "";
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(circle at 20% 20%, rgba(241, 90, 36, .36), transparent 24%),
    radial-gradient(circle at 90% 30%, rgba(102, 45, 145, .34), transparent 27%);
  filter: blur(8px);
  opacity: .85;
}
.fi-dashboard > * { position: relative; z-index: 1; }
.mini-logo {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 70px;
  margin-bottom: 12px;
}
.mini-logo img { max-height: 40px; width: auto; max-width: 42%; object-fit: contain; }
.lockup-plus { font-weight: 800; color: var(--muted); font-size: 18px; }
.fi-title {
  font-family: Outfit, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 14px 0 16px;
  color: #fff;
  font-weight: 800;
}
.fi-title span { color: var(--gold-2); }
.fi-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.fi-metric {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 16px;
}
.fi-metric strong {
  display: block;
  font-size: 26px;
  color: var(--gold-2);
  letter-spacing: -.04em;
  font-family: Outfit, Inter, sans-serif;
}
.fi-metric small { color: #cdd3dc; font-weight: 700; }

/* Fire & Ice: problem + solution cards */
.problem-card { min-height: 208px; }
.icon-round {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--fire-soft);
  color: var(--fire);
  font-size: 25px;
  font-weight: 900;
}
.icon-round svg { width: 24px; height: 24px; }
.problem-card:nth-child(even) .icon-round { background: var(--ice-soft); color: var(--ice); }
.problem-card h3 { font-size: 19px; margin-bottom: 10px; }
.problem-card p { font-size: 14px; }

.solution-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.solution-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.solution-card {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  border-radius: 22px;
  padding: 34px;
}
.solution-card.fire { border-color: rgba(241, 90, 36, .65); }
.solution-card.ice { border-color: rgba(102, 45, 145, .75); }
.solution-card .bigicon { margin-bottom: 18px; }
.solution-card .bigicon svg { width: 40px; height: 40px; }
.solution-card.fire .bigicon { color: var(--fire); }
.solution-card.ice .bigicon { color: #a97ad1; }
.plus-center {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #fff;
  color: #070707;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 900;
  margin: -74px auto 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .35);
}

/* Fire & Ice: guide cards */
.guide-card { position: relative; overflow: hidden; padding: 32px 28px; }
.guide-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.guide-card.gold-top::before { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.guide-card.fire-top::before { background: linear-gradient(90deg, var(--fire), #ff8a3d); }
.guide-card.ice-top::before { background: linear-gradient(90deg, var(--ice), #9b5bd6); }
.guide-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 10px;
}
.guide-card.gold-top .guide-label { color: var(--gold); }
.guide-card.fire-top .guide-label { color: var(--fire); }
.guide-card.ice-top .guide-label { color: var(--ice); }
.guide-card.fire-top .check-list li::before { color: var(--fire); }
.guide-card.ice-top .check-list li::before { color: var(--ice); }

/* Fire & Ice: outcome strip */
.outcome-item { text-align: center; padding: 12px; }
.outcome-item .glyph { color: var(--gold); display: flex; justify-content: center; }
.outcome-item .glyph svg { width: 26px; height: 26px; }
.outcome-item strong { display: block; margin: 10px 0 5px; color: #111827; }
.outcome-item span { color: #6b7280; font-size: 13px; }

/* Dark contact/form band (Fire & Ice + shared) */
.form-band { background: #080808; color: #fff; padding: 84px 0; position: relative; overflow: hidden; }
.form-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(241, 90, 36, .14), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(102, 45, 145, .2), transparent 36%);
  pointer-events: none;
}
.form-band.gold-band::before {
  background:
    radial-gradient(circle at 8% 0%, rgba(240, 194, 86, .16), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(173, 123, 61, .2), transparent 36%);
}
.form-band .wrap { position: relative; z-index: 1; }
.form-band h2 { color: #fff; font-size: clamp(32px, 4.4vw, 54px); }
.form-band .form-grid-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.form-band p { color: #d0d5dd; }

/* --------------------------------------------------------------------------
   Execaros: navy hero panel + system boxes + deliverables
   -------------------------------------------------------------------------- */
.exec-panel {
  position: relative;
  background: var(--navy);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  color: #fff;
}
.exec-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(240, 194, 86, .28), transparent 66%);
}
.exec-panel-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  padding-bottom: 18px;
  margin-bottom: 6px;
}
.exec-panel-top img {
  height: 52px;
  max-width: 225px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 7px;
}
.badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 10px;
  border-radius: 999px;
}
.panel-card {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 22px;
  padding: 22px;
  margin-top: 16px;
}
.panel-card h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.panel-card p { color: #d7dae4; font-size: 14px; }
.meter { height: 10px; background: rgba(255, 255, 255, .1); border-radius: 99px; overflow: hidden; margin: 16px 0; }
.meter span {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--gold-2), var(--exec-gold));
  border-radius: 99px;
}

.navy-band { background: linear-gradient(135deg, var(--navy) 0%, #10131b 100%); }
.navy-band::before { background: radial-gradient(circle at 80% 10%, rgba(240, 194, 86, .14), transparent 30%); }
.system-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; }
.system-box {
  border: 1px solid rgba(240, 194, 86, .35);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  background: rgba(255, 255, 255, .055);
}
.system-box.alt { border-color: rgba(255, 255, 255, .23); }
.system-symbol { color: var(--gold-2); margin-bottom: 8px; display: flex; justify-content: center; }
.system-symbol svg { width: 30px; height: 30px; }
.system-box h3 { font-size: 22px; margin-bottom: 8px; }
.system-box p { font-size: 14px; }
.connector {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.deliverable { padding: 22px; border-radius: 20px; background: var(--soft); border: 1px solid var(--line); }
.deliverable strong { display: block; margin-bottom: 7px; color: var(--black); }
.deliverable span { color: var(--muted); font-size: 14px; }

.card.navy-card { background: linear-gradient(135deg, var(--navy), #111827); color: #fff; border-color: var(--navy); }
.card.navy-card h3 { color: #fff; }
.card.gold-edge { border-top: 5px solid var(--exec-gold); }

/* --------------------------------------------------------------------------
   Scorecard
   -------------------------------------------------------------------------- */
.score-preview {
  background: var(--black);
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  min-width: 220px;
  text-align: center;
}
.score-preview strong { font-size: 32px; color: var(--gold-2); font-family: Outfit, Inter, sans-serif; }
.score-preview span { display: block; color: #d6d2ca; font-size: 13px; }
.intro-pull { margin-top: -42px; position: relative; z-index: 3; }
.intro-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.intro-box h2 { font-size: 26px; margin-bottom: 8px; }
.intro-box p { color: var(--muted); }

.scorecard-col { max-width: 920px; margin: 0 auto; }
.check-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-bottom: 22px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
}
.check-section-head {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.check-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: Outfit, Inter, sans-serif;
  font-weight: 800;
  flex: 0 0 auto;
}
.check-section-head h2 { font-size: 23px; }
.check-section-head .sub { color: var(--muted); font-size: 14px; }
.items { display: grid; gap: 11px; }
.item label { display: flex; gap: 12px; cursor: pointer; color: #25221f; font-size: 15px; }
.item input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #cac4ba;
  border-radius: 6px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #fff;
}
.item input:checked { background: var(--gold); border-color: var(--gold); }
.item input:checked::before { content: "✓"; color: #fff; font-size: 15px; font-weight: 900; }
.item:hover label { color: var(--black); }

.summary {
  background: var(--black);
  color: #fff;
  border-radius: 26px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: var(--shadow);
}
.summary h2 { color: #fff; }
.summary .total {
  font-family: Outfit, Inter, sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
  margin: 12px 0;
}
.summary table { width: 100%; border-collapse: collapse; margin-top: 20px; overflow: hidden; border-radius: 14px; background: #171717; }
.summary th, .summary td { padding: 12px 14px; border-bottom: 1px solid #303030; text-align: left; }
.summary th { color: var(--gold-2); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.legend-card {
  border: 1px solid #333;
  border-top: 4px solid #777;
  border-radius: 14px;
  padding: 16px;
  background: #151515;
  opacity: .45;
  transform: scale(.97);
  transition: .25s;
}
.legend-card.active { opacity: 1; transform: scale(1.02); box-shadow: 0 0 0 1px rgba(240, 194, 86, .25); }
.legend-card.critical { border-top-color: #ef4444; }
.legend-card.moderate { border-top-color: #f59e0b; }
.legend-card.good { border-top-color: #22c55e; }
.legend-card strong { display: block; color: #fff; }
.legend-card span { color: #c9c4ba; font-size: 13px; }

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.active { display: flex; }
.modal-card {
  background: #fff;
  border-radius: 22px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-head {
  background: var(--black);
  color: #fff;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-head h3 { color: #fff; margin: 0; font-size: 20px; }
.modal-close { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; line-height: 1; }
.modal-body { padding: 24px; }

/* --------------------------------------------------------------------------
   Start Here: live-score panel, route cards
   -------------------------------------------------------------------------- */
.score-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.chip {
  font-size: 12px;
  color: #815b10;
  background: #fff4d6;
  border: 1px solid #f3d98d;
  padding: 6px 10px;
  border-radius: 99px;
  font-weight: 900;
}
.barrow { margin: 18px 0; }
.barrow label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 800; margin-bottom: 8px; }
.bar { height: 10px; background: #eeece4; border-radius: 99px; overflow: hidden; }
.bar .fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.quick-tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.quick-tags div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  color: #555;
  text-align: center;
}

.step-list { display: grid; gap: 14px; margin-top: 26px; }
.step-item { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
.step-item .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}
.step-item strong { display: block; color: var(--black); }
.step-item span { color: var(--muted); font-size: 14px; }

.route-card {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 22px;
  padding: 20px;
  min-height: 170px;
}
.route-card .glyph { color: var(--gold-2); }
.route-card .glyph svg { width: 22px; height: 22px; }
.route-card b { display: block; font-size: 16px; margin: 12px 0 8px; color: #fff; }
.route-card span { font-size: 13px; color: #aaa; }
.route-card a { display: block; color: var(--gold-2); font-size: 13px; font-weight: 900; margin-top: 14px; }

/* Recommendation result (assessment form) */
.reco {
  display: none;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  color: #3d3524;
}
.reco.active { display: block; }
.reco a { font-weight: 900; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Growth Operating System (The Method)
   -------------------------------------------------------------------------- */
.os-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; font-weight: 900; }
.flow-rows { display: grid; gap: 10px; }
.flow-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}
.flow-name { font-weight: 900; }
.flow-detail { font-size: 13px; color: #697386; }
.flow-arrow { display: flex; justify-content: center; color: var(--gold); font-weight: 900; margin: -3px 0; }

.wheel {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #111, var(--gold), var(--gold-2), #111);
  padding: 2px;
  box-shadow: 0 20px 50px rgba(8, 9, 11, .1);
}
.wheel-inner {
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px;
}
/* Subtle rotating dashed orbit provides the "flywheel" motion —
   labels stay static and upright so they never cross the center text */
.wheel::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 2px dashed rgba(173, 123, 61, .38);
  border-radius: 50%;
  animation: spin 45s linear infinite;
  pointer-events: none;
}
.wheel-center { font-size: 24px; font-weight: 800; letter-spacing: -.03em; font-family: Outfit, Inter, sans-serif; }
/* Container orbits the labels around the ring; each label counter-rotates
   at the same speed so its text stays upright the whole way around */
.wheel-tags { position: absolute; inset: 0; animation: spin 60s linear infinite; }
.wheel-tags span {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  animation: spin-counter 60s linear infinite;
}
@keyframes spin-counter {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}
/* Six stations around the clock face */
.wheel-tags span:nth-child(1) { top: 0;    left: 50%; }
.wheel-tags span:nth-child(2) { top: 25%;  left: 94%; }
.wheel-tags span:nth-child(3) { top: 75%;  left: 94%; }
.wheel-tags span:nth-child(4) { top: 100%; left: 50%; }
.wheel-tags span:nth-child(5) { top: 75%;  left: 6%; }
.wheel-tags span:nth-child(6) { top: 25%;  left: 6%; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .wheel::after, .wheel-tags, .wheel-tags span { animation: none; }
}
.flywheel-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.fly-item { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.fly-item strong { display: block; margin-bottom: 4px; }
.fly-item span { color: var(--muted); font-size: 14px; }

.stage-card { border: 1px solid #252b36; background: #11141b; border-radius: 22px; padding: 22px; }
.stage-card .num-label { color: var(--gold-2); font-weight: 900; font-size: 13px; letter-spacing: .12em; }
.stage-card h3 { font-size: 21px; margin: 10px 0; color: #fff; }
.stage-card p { color: #aeb6c4; font-size: 14px; }

.eco-logo-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(180deg, #fff, #fbfbfc);
  box-shadow: 0 12px 34px rgba(17, 24, 39, .05);
}
.eco-logo-card img { max-height: 38px; width: auto; max-width: 170px; margin-bottom: 20px; }
.eco-logo-card h3 { font-size: 24px; margin-bottom: 10px; }
.eco-logo-card p { color: var(--muted); font-size: 15px; }
.eco-logo-card a { display: inline-block; margin-top: 14px; font-weight: 900; color: var(--gold); }

.constraint-dash {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  max-width: 930px;
  margin: 0 auto;
}
.bar-row { display: grid; grid-template-columns: 130px 1fr 45px; gap: 16px; align-items: center; margin: 18px 0; font-weight: 800; }
.bar-row .bar { height: 14px; background: #eef0f4; }
.bar-row .score { color: #6b7280; font-size: 14px; text-align: right; }

.method-card {
  border-radius: 22px;
  padding: 28px;
  background: #0b0c10;
  color: #fff;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.method-card::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(240, 194, 86, .18);
}
.method-card .big {
  font-size: 54px;
  font-weight: 900;
  color: rgba(240, 194, 86, .35);
  line-height: 1;
  font-family: Outfit, Inter, sans-serif;
}
.method-card h3 { color: #fff; font-size: 25px; margin-top: 8px; }
.method-card ul { list-style: none; margin: 18px 0 0; padding: 0; color: #cfd5df; font-size: 14px; }
.method-card li { margin: 8px 0; }

/* --------------------------------------------------------------------------
   Responsive for page components
   -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .ads-dashboard { min-height: 620px; }
  .screen { left: 0; right: 0; margin: 0 auto; }
  .problem-split, .solution-grid, .flywheel-wrap, .form-band .form-grid-band { grid-template-columns: 1fr; }
  .solution-cards { grid-template-columns: 1fr; }
  .plus-center { margin: 16px auto 0; }
}

@media (max-width: 680px) {
  .metric-grid, .metric-row, .leak-grid, .mini-steps, .fi-metrics,
  .system-row, .quick-tags, .legend { grid-template-columns: 1fr; }
  .system-flow-strip .flow { grid-template-columns: 1fr 1fr; }
  .connector { margin: 0 auto; }
  .ads-dashboard { min-height: 590px; }
  .screen { top: 80px; }
  .floating-card { display: none; }
  .intro-box { grid-template-columns: 1fr; }
  .score-preview { text-align: left; }
  .bar-row { grid-template-columns: 1fr; gap: 8px; }
  .bar-row .score { text-align: left; }
  .black-panel, .package-card, .compare-card, .exec-panel { padding: 26px; }
  .wheel-tags { display: none; }
  .wheel-center { font-size: 24px; }
  .exec-panel-top { flex-direction: column; align-items: flex-start; }
}
