/* Samro Studios — Quote Builder. Direction A: Paper & Ink (warm light theme). */
:root {
  --bg: #F5F3EE;          /* warm bone */
  --ink: #17181C;         /* primary text */
  --grey: #54565C;        /* secondary */
  --muted: #83858B;       /* tertiary */
  --line: #E3E0D8;        /* hairline */
  --line-strong: #CFCBBF; /* hover hairline */
  --gold: #A07E33;        /* accent */
  --green: #1F7A4D;       /* positive / savings (matches the accept-button green) */
  --card: #FCFBF7;        /* selection cards */
  --card-hover: #FBFAF4;
  --paper: #F5F3EE;
  --sans: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r: 12px;              /* controls / cards */
  --r-lg: 14px;           /* panels */

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Top bar ── */
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.wordmark { text-decoration: none; letter-spacing: 0.16em; font-size: 16px; font-weight: 700; color: var(--ink); }
.wm-sites { font-weight: 400; color: var(--gold); margin-left: 6px; }

.topbar-label {
  font-size: 13px;
  color: var(--grey);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 15px;
  font-weight: 500;
}

/* ── Language toggle ── */
.lang-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--card);
}

.lang-toggle button {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 6px 13px;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.lang-toggle button:hover { color: var(--ink); }

.lang-toggle button.active {
  color: var(--bg);
  background: var(--ink);
}

/* ── Layout ── */
/* Single column now. The live-total sidebar and its mobile drawer are gone:
   during the questionnaire there is deliberately no money on screen. */
.layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 72px) 100px;
}

.wizard-col { min-width: 0; }

/* Questions stay in a comfortable reading column; only the reveal goes wide. */
.progress,
.wizard-nav,
.step:not(.step--reveal) { max-width: 820px; margin-left: auto; margin-right: auto; }

/* ── Progress ── */
.progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.progress-track {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 100%;
  background: var(--ink);
  border-radius: 999px;
  transform: scaleX(0.125);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}

.progress-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Steps (wizard screens) ── */
.steps { position: relative; }

.step { display: none; }
.step.is-active { display: block; }

@keyframes stepInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step.enter-right { animation: stepInRight 0.35s var(--ease) both; }
.step.enter-left  { animation: stepInLeft 0.35s var(--ease) both; }

.step-head { margin-bottom: 28px; }

.step-title {
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
#step-type .step-title { font-size: clamp(34px, 4.6vw, 54px); }

.step-title .accent { color: var(--gold); }

.step-note { color: var(--grey); font-size: 16px; line-height: 1.6; max-width: 52ch; }

/* ── Choice cards ── */
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.choice {
  position: relative;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  padding-right: 46px;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.choice:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.choice:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.choice strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 5px; letter-spacing: -0.01em; }
.choice span { display: block; font-size: 13.5px; color: var(--grey); line-height: 1.5; }

/* ── Shared card bullet list ──
   Compact black-disc bullets that replace a card's one-line blurb. Tight,
   left-aligned, ~13px; markers use the ink color, text stays secondary grey.
   Keeps cards in a row visually even (grid rows already stretch to match). */
.choice .card-bullets {
  list-style: disc;
  margin: 5px 0 0;
  padding-left: 1.15em;
}
.choice .card-bullets li {
  display: list-item;
  font-size: 13px;
  line-height: 1.4;
  color: var(--grey);
  letter-spacing: -0.005em;
}
.choice .card-bullets li::marker {
  color: var(--ink);
  font-size: 0.85em;
}
.choice .card-bullets li + li { margin-top: 3px; }

/* Accent highlight inside a card's descriptive line (timeline, care support).
   Overrides the block title-strong style: inline, gold, no title spacing.
   nowrap keeps the highlighted durations ("3 to 4 weeks") on one line. */
.choice span strong {
  display: inline;
  color: var(--gold);
  font-weight: 700;
  font-size: inherit;
  margin: 0;
  letter-spacing: normal;
  white-space: nowrap;
}

.choice.selected {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: var(--card-hover);
}

/* gold check on selected */
.choice::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  opacity: 0.55;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.choice.selected::after {
  opacity: 1;
  border-color: var(--gold);
  background: var(--gold);
  /* white checkmark drawn with a background image */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FCFBF7' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
}

.choice:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.choice:disabled::after { display: none; }

/* Gated cards: contextually unavailable (landing catalog/store, care floor). */
.choice.gated { opacity: 0.4; cursor: default; }
.choice.gated:hover { transform: none; border-color: var(--line); box-shadow: none; }
.choice.gated::after { display: none; }

.choice-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  background: rgba(160, 126, 51, 0.10);
  border: 1px solid rgba(160, 126, 51, 0.28);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

then this calm
   line with a money-green "Special offer" tag inline to the left of the tagline.
   The <p> lives inside a .choice button,
whose generic `.choice span/strong { display:block }` rules would stack each fragment on its own line; re-inline
   the tag here (later rule wins the tie). */
.care-promo {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
}

.contact { margin-top: 4px; }
.contact-h { font-size: 18px; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.01em; }

.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 620px;
}

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

.field label {
  display: block;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 7px;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23, 24, 28, 0.06);
}

/* ── Region select (place of supply) ── */
.region-block { margin-top: 4px; margin-bottom: 22px; }
.region-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.region-select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 15px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8C90' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.region-select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23, 24, 28, 0.06);
}
.region-note { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ── CanExport target-market language select (revealed under the lang step) ── */
.lang-other-block { max-width: 620px; margin: 14px 0 4px; }
.lang-other-block[hidden] { display: none; }
.lang-other-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}

/* ── Submit ── */
.submit-btn {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
  background: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 17px 40px;
  margin-top: 26px;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
}

.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(23, 24, 28, 0.18); }
.submit-btn:disabled { opacity: 0.55; cursor: wait; transform: none; box-shadow: none; }

.submit-status { margin-top: 14px; font-size: 14px; color: var(--grey); min-height: 20px; line-height: 1.5; }
.submit-status.ok { color: #2E7D4F; }
.submit-status.err { color: #B4432E; }

/* ── Wizard nav ── */
.wizard-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.nav-btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  padding: 13px 30px;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.nav-btn--ghost:hover { border-color: var(--line-strong); }
.nav-btn--ghost:disabled { opacity: 0; pointer-events: none; }

.nav-btn--primary {
  margin-left: auto;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
}
.nav-btn--primary:hover:not(:disabled) { transform: translateY(-1px); }
.nav-btn--primary:disabled {
  background: var(--card);
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}
.nav-btn--primary[hidden] { display: none; }

/* ── Summary panel (desktop) ── */
.summary { position: relative; }
.summary-lines li.discount span { color: var(--gold); }
.summary-lines li.empty { color: var(--muted); border-bottom: none; }

@keyframes lineIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Quiet tax lines under the build total { margin-top: 2px; margin-bottom: 4px; }

/* Booking-bonus (free months) line — gold { margin-top: 2px; }

/* ── Mobile quote drawer ── */
.drawer { display: none; }

/* ── Responsive ── */
@media (max-width: 1023px) {
  .layout { grid-template-columns: 1fr; padding-bottom: 120px; }
  .summary { display: none; }
  .drawer { display: block; }

}

@media (max-width: 560px) {
  .client-grid { grid-template-columns: 1fr; }
  .choices { grid-template-columns: 1fr; }
  .wizard-nav { gap: 10px; }
  .nav-btn { padding: 13px 22px; }
  .topbar-label { display: none; }

}

[hidden] { display: none !important; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
  .progress-fill,
.choice,
.nav-btn,
.submit-btn { transition: none !important; }
  .step.enter-right,
.step.enter-left { animation: none !important; }

}

/* ════════════════════════════════════════════════════════════════
   Grant variants (unlisted /grants/ pages) — badge, banner,
   eligibility card, and the "Apply the grant" reveal panel.
   ════════════════════════════════════════════════════════════════ */

/* Program badge in the top bar */
.grant-badge {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  background: rgba(160, 126, 51, 0.10);
  border: 1px solid rgba(160, 126, 51, 0.30);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
@media (max-width: 560px) { .grant-badge { display: none; } 
}

/* Status banner (amber, full-width, top of page) */
.grant-banner {
  background: #FBF3DE;
  color: #6B531A;
  border-bottom: 1px solid #E7D7A8;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 13px clamp(20px, 5vw, 72px);
  text-align: center;
}

/* Eligibility card on step 1 */
.grant-elig {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 20px 52px 20px 22px;
  margin-bottom: 26px;
  max-width: 640px;
}
.grant-elig-title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.grant-elig-list { list-style: none; display: grid; gap: 8px; margin-bottom: 14px; }
.grant-elig-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}
.grant-elig-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FCFBF7' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.grant-elig-note { font-size: 13px; color: var(--grey); line-height: 1.55; }
.grant-elig-note strong {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.grant-elig-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.grant-elig-x:hover { color: var(--ink); border-color: var(--line-strong); }
.grant-elig-x:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Apply-the-grant block on the final step */
.grant-block { margin-bottom: 28px; max-width: 620px; }

.grant-apply-btn {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: #3A2E0C;
  background: linear-gradient(180deg, #DBB550, #BE9333);
  border: 1px solid #A9821F;
  border-radius: 999px;
  padding: 16px 36px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(160, 126, 51, 0.28);
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}
.grant-apply-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(160, 126, 51, 0.36); }
.grant-apply-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.grant-apply-btn[hidden] { display: none; }

.grant-panel {
  margin-top: 2px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  opacity: 0;
  transform: translateY(8px);
}
.grant-panel.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.grant-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.grant-row span { color: var(--grey); font-size: 14px; line-height: 1.4; }
.grant-sub { color: var(--muted); font-size: 12px; font-style: normal; }
.grant-row strong { font-variant-numeric: tabular-nums lining-nums; white-space: nowrap; }

.grant-row--gross strong {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}
.grant-strike.struck::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  animation: grantStrike 0.45s var(--ease) 0.1s forwards;
}
@keyframes grantStrike { to { transform: scaleX(1); } }

.grant-row--reimburse strong { font-size: 18px; font-weight: 700; color: var(--gold); }

.grant-row--net {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: 14px;
}
.grant-row--net span { font-size: 15px; font-weight: 600; color: var(--ink); }
.grant-row--net strong { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }

.grant-honesty { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-top: 2px; }

@media (prefers-reduced-motion: reduce) {
  .grant-apply-btn { transition: none !important; }
  .grant-panel { transition: none !important; opacity: 1; transform: none; }
  .grant-strike.struck::after { animation: none !important; transform: scaleX(1); }

}

/* ══ Reveal screen ══
   Value on the left, one number on the right. The client has answered five
   questions without seeing a dollar sign; this is the first and only place
   money appears, and it appears once. */

.step--reveal { max-width: none; }
.reveal-head { max-width: 820px; }

.reveal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ── Left: the value stack ── */
.value-stack { display: grid; gap: 26px; }

.vs-group {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.vs-group:first-child { border-top: none; padding-top: 0; }

.vs-h {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}

.vs-bullets { list-style: none; display: grid; gap: 7px; }

.vs-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grey);
}

/* Hairline check, drawn rather than typed, so it stays crisp at any size. */
.vs-bullets li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  width: 10px;
  height: 5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* ── Right: the investment card ── */
.reveal-invest { position: sticky; top: 28px; }

.invest-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
}

.invest-label {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.invest-figure {
  margin-top: 10px;
  font-size: clamp(44px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.invest-today { margin-top: 8px; font-size: 14px; color: var(--grey); }

.invest-tax {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.invest-tax strong { font-weight: 600; color: var(--grey); font-variant-numeric: tabular-nums; }

.invest-rule { height: 1px; background: var(--line); margin: 24px 0; }

.invest-monthly {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.invest-monthly strong {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.invest-monthly span { font-size: 14.5px; color: var(--grey); font-weight: 500; }

.invest-bullets { list-style: none; display: grid; gap: 7px; margin-top: 14px; }
.invest-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--grey);
}
.invest-bullets li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line-strong);
}

.invest-term { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

.invest-why {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.invest-why-h {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.invest-why-p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--grey); }

.invest-sent { margin-top: 18px; font-size: 13.5px; line-height: 1.55; color: var(--green); }
.invest-sent strong { font-weight: 600; overflow-wrap: anywhere; }
.invest-sent--fail { color: var(--grey); }

.invest-foot { margin-top: 14px; font-size: 12px; line-height: 1.5; color: var(--muted); }

@media (max-width: 900px) {
  .reveal-grid { grid-template-columns: 1fr; }
  /* On phones the number leads: seeing the price first, then scrolling through
     what it buys, beats scrolling past everything to find it. */
  .reveal-invest { position: static; order: -1; }

}
