/* BUILD components.css : header, buttons, chips, phone, rail, moments, proof, band, footer */

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--page);
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--normal) var(--ease),
    background var(--normal) var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(6px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--fast) var(--ease);
}

.main-nav a:hover {
  color: var(--rust);
}

.main-nav a.is-active {
  border-bottom-color: var(--rust);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 22px;
  border-radius: var(--radius-cta);
  border: 1px solid transparent;
  transition: background var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    color var(--fast) var(--ease);
  white-space: nowrap;
}

.btn .arrow {
  display: inline-flex;
  transition: transform var(--fast) var(--ease);
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rust-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--surface-2);
}

.btn-on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--fast) var(--ease);
}

.text-link:hover {
  color: var(--rust);
}

.text-link .arrow {
  transition: transform var(--fast) var(--ease);
}

.cta-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rust);
}

.cta-text:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Audience chips ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: var(--border);
  background: var(--surface);
  border-radius: 4px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

.chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--ink);
}

/* ---------- Rule headings ---------- */
.rule-heading {
  display: flex;
  align-items: center;
  gap: 28px;
}

.rule-heading::before,
.rule-heading::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--line);
}

.rule-heading.rule-left::before,
.rule-heading.rule-left::after {
  display: none;
}

.rule-heading h2 {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ---------- Two paths cards ---------- */
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  transition: border-color var(--fast) var(--ease);
}

.path-card:hover {
  border-color: var(--line-strong);
}

.path-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: var(--border);
  border-radius: 8px;
}

.path-icon img {
  width: 34px;
  height: 34px;
}

.path-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.path-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 420px;
}

/* ---------- Stage rail ---------- */
.stage-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stage-item {
  appearance: none;
  background: transparent;
  border-left: 0;
  border-right: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px 20px 18px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: background var(--fast) var(--ease);
}

.stage-item:first-child {
  padding-left: 0;
}

.stage-item + .stage-item {
  border-left: 1px solid var(--line);
}

.stage-item:hover {
  background: var(--surface-2);
}

.stage-item.is-active {
  border-top-color: var(--rust);
  border-bottom-color: var(--rust);
}

.stage-disc {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stage-disc img {
  width: 46px;
  height: 46px;
}

.stage-item.is-active .stage-disc {
  background: var(--rust);
  border-color: var(--rust);
}

.stage-item.is-active .stage-disc img {
  filter: invert(1);
}

.stage-copy h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stage-copy p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 170px;
}

.stage-arrow {
  position: absolute;
  right: 10px;
  top: 42px;
  color: var(--ink);
}

/* ---------- Moments ---------- */
.moments-row {
  display: grid;
  grid-template-columns: 240px repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.moments-lead {
  padding: 26px 24px 26px 0;
}

.moments-lead h2 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.moment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
  border-left: 1px solid var(--line);
}

.moment-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.moment-icon img {
  width: 50px;
  height: 50px;
}

.moment-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.moment-copy span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ---------- Proof ---------- */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
}

.proof-quote {
  padding: 30px 30px 26px;
  display: flex;
  gap: 16px;
}

.proof-quote + .proof-quote {
  border-left: 1px solid var(--line);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.8;
  color: var(--rust);
  opacity: 0.85;
  flex-shrink: 0;
}

.proof-quote blockquote p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 12px;
}

.proof-quote cite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--rust);
}

.proof-quote cite::before {
  content: "";
  width: 14px;
  border-top: 1.5px solid var(--rust);
  margin-top: 2px;
}

.proof-quote cite {
  flex-wrap: wrap;
  align-items: baseline;
}

.cite-role {
  display: block;
  width: 100%;
  padding-left: 22px;
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--dark-band);
  color: var(--white);
  border-radius: var(--radius-band);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.band-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.band-mark img {
  width: 30px;
  height: 30px;
}

.cta-band h2 {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 430px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
}

.footer-logo img {
  height: 38px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--fast) var(--ease);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.footer-org {
  margin-top: 3px;
  font-size: 12px;
}

/* ---------- Phone mockup ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
}

.phone-rings::before,
.phone-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.55;
}

.phone-rings::after {
  inset: 58px;
  opacity: 0.4;
}

.phone {
  position: relative;
  width: 292px;
  background: #101010;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.18);
}

.phone-screen {
  background: var(--white);
  border-radius: 34px;
  overflow: hidden;
  padding: 14px 14px 18px;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
  padding: 2px 8px 8px;
}

.phone-status .dots {
  letter-spacing: 2px;
}

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 8px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.phone-head .p-title {
  font-size: 13px;
  font-weight: 700;
}

.phone-head svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
}

.phone-badge {
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
}

.phone-badge span {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--rust);
  padding: 4px 10px;
  border-radius: 2px;
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 2px 2px;
}

.msg {
  max-width: 86%;
}

.msg-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 3px;
}

.msg-time {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--muted);
  margin-top: 3px;
}

.msg.user {
  align-self: flex-end;
  text-align: right;
}

.msg.user .bubble {
  background: #ECECEA;
  color: var(--ink);
  border-radius: 12px 12px 3px 12px;
  text-align: left;
}

.msg.coach {
  align-self: flex-start;
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 8px;
}

.msg.coach .msg-label {
  grid-column: 2;
}

.coach-avatar {
  grid-row: 2;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.coach-avatar img {
  width: 16px;
  height: 16px;
}

.msg.coach .bubble {
  grid-row: 2;
  grid-column: 2;
  background: var(--surface);
  color: var(--ink);
  border-radius: 12px 12px 12px 3px;
}

.msg.coach .msg-time {
  grid-column: 2;
}

.bubble {
  font-size: 12px;
  line-height: 1.45;
  padding: 9px 12px;
}

/* ---------- Hero annotation column ---------- */
.hero-annot {
  position: absolute;
  top: 90px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-align: right;
}

.hero-annot .annot-arrow {
  color: var(--rust);
  font-size: 11px;
}

.hero-annot .annot-strong {
  color: var(--ink-soft);
}

.annot-cross {
  margin-top: 84px;
  opacity: 0.7;
}

.annot-coord {
  writing-mode: vertical-rl;
  margin-top: 12px;
  letter-spacing: 0.22em;
}


/* ---------- Stage sheet modal ---------- */
.stage-modal-backdrop[hidden] {
  display: none;
}

.stage-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 20, 20, 0.44);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.stage-modal-backdrop.is-open {
  opacity: 1;
}

.stage-sheet {
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border: var(--border);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -18px 44px rgba(20, 20, 20, 0.22);
  transform: translateY(100%);
  transition: transform 320ms var(--ease);
  max-height: 82vh;
  overflow-y: auto;
}

.stage-modal-backdrop.is-open .stage-sheet {
  transform: translateY(0);
}

.stage-sheet-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 14px;
  border-top: 3px solid var(--rust);
  border-bottom: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
  position: sticky;
  top: 0;
  background: var(--surface);
}

.stage-sheet-letter {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--rust);
  line-height: 1;
}

.stage-sheet-title {
  font-size: 19px;
  font-weight: 700;
  flex: 1;
}

.stage-sheet-close {
  appearance: none;
  background: transparent;
  border: var(--border);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.stage-sheet-close:hover {
  background: var(--surface-2);
}

.stage-sheet-body {
  padding: 18px 24px 26px;
}

.stage-sheet-question {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stage-sheet-explanation {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}

.stage-sheet-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.stage-sheet-list {
  list-style: none;
  margin-bottom: 16px;
}

.stage-sheet-list li {
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 18px;
  margin-bottom: 6px;
}

.stage-sheet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  border-top: 2px solid var(--rust);
}

.stage-sheet-goal {
  font-size: 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .stage-modal-backdrop,
  .stage-sheet {
    transition: none;
  }
}

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: var(--border);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--page);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.12);
  padding: 10px 20px 20px;
}

@media (max-width: 719px) {
  .mobile-menu:not([hidden]) {
    display: block;
  }
}

.mobile-menu a {
  display: block;
  padding: 13px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a.is-active {
  color: var(--rust);
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  border-bottom: none;
}

/* ---------- Trust points ---------- */
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.trust-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.trust-point svg {
  width: 15px;
  height: 15px;
  stroke: var(--rust);
  flex-shrink: 0;
}

/* ---------- Numbered steps ---------- */
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 34px;
  height: 34px;
}

.step-copy h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.step-copy h3 .step-num {
  color: var(--rust);
  margin-right: 6px;
}

.step-copy p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 230px;
}

/* ---------- Audience cards ---------- */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 18px;
}

.audience-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 8px;
  border: var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
}

.audience-icon img {
  width: 26px;
  height: 26px;
}

.audience-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.audience-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---------- Why different cards ---------- */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
}

.why-card .why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  border-radius: 8px;
  background: var(--surface-2);
}

.why-card .why-icon img {
  width: 30px;
  height: 30px;
}

.why-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---------- Featured quote (Grant) ---------- */
.featured-quote {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 34px 38px;
}

.featured-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

.featured-intro {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.featured-pull {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.featured-support {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}

.featured-attr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rust);
}

.featured-attr::before {
  content: "";
  width: 14px;
  border-top: 1.5px solid var(--rust);
}

/* ---------- Before / after cards ---------- */
.change-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.change-card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 18px;
}

.change-before {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.change-before span,
.change-after strong {
  display: block;
}

.change-arrow {
  color: var(--rust);
  margin: 4px 0;
}

.change-after strong {
  font-size: 14px;
  margin-bottom: 3px;
}

.change-after p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---------- Activate cards ---------- */
.activate-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.activate-card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 26px 28px;
}

.activate-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.activate-card > p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
  margin-bottom: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.check-list svg {
  width: 15px;
  height: 15px;
  stroke: var(--rust);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Module cards (teams) ---------- */
.module-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.module-card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
}

.module-card .module-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-2);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.module-card .module-icon img {
  width: 26px;
  height: 26px;
}

.module-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 5px;
}

.module-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Teams hero panel ---------- */
.team-panel {
  background: var(--dark-band);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-panel-screen {
  background: var(--white);
  border-radius: 8px;
  padding: 26px 20px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.team-panel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.team-panel-stage .tp-disc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-panel-stage.tp-active .tp-disc {
  background: var(--rust);
}

.team-panel-stage.tp-active .tp-disc img {
  filter: invert(1);
}

.team-panel-stage .tp-disc img {
  width: 26px;
  height: 26px;
}

.team-panel-stage span {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink);
}

.team-panel-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}

.team-panel-note .tp-exec {
  color: #E8A87C;
}

/* ---------- Manager reinforcement row ---------- */
.manager-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.manager-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 18px;
}

.manager-item .manager-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.manager-item .manager-icon img {
  width: 28px;
  height: 28px;
}

.manager-item h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.manager-item p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Availability note ---------- */
.availability-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: var(--border);
  background: var(--surface-2);
  border-radius: var(--radius-card);
  padding: 16px 18px;
}

.availability-note img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.availability-note strong {
  display: block;
  font-size: 13.5px;
  margin-bottom: 3px;
}

.availability-note p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Moments variant without lead column ---------- */
.moments-row.moments-four {
  grid-template-columns: repeat(4, 1fr);
}

.moments-row.moments-four .moment-item:first-child {
  border-left: none;
  padding-left: 0;
}

/* ---------- Band subline ---------- */
.band-sub {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Contact form ---------- */
.contact-card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 32px 34px;
  max-width: 760px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-bottom: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  padding: 11px 12px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--rust);
  outline-offset: 0;
  border-color: transparent;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

.form-status.is-ok {
  color: #2E6B3A;
}

.form-status.is-err {
  color: var(--rust);
}

@media (max-width: 719px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 22px 20px;
  }
}
