:root {
  --cream: #fbf7f4;
  --paper: #fffdfb;
  --paper-strong: #ffffff;
  --plum: #512444;
  --plum-2: #6b355b;
  --coral: #e78979;
  --coral-soft: #f7d8d1;
  --sage: #dfeadf;
  --sage-ink: #315b47;
  --lilac: #eee7f2;
  --charcoal: #2e2930;
  --muted: #756d75;
  --line: #e7dedf;
  --line-strong: #d7cacd;
  --shadow: 0 20px 50px rgba(76, 38, 63, 0.09);
  --shadow-soft: 0 8px 24px rgba(76, 38, 63, 0.07);
  --radius: 24px;
  --radius-small: 14px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { margin: 0; color: var(--charcoal); background: var(--cream); font-family: var(--sans); line-height: 1.5; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { cursor: pointer; }

.page-shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 12px max(20px, calc((100vw - 1180px) / 2)); background: color-mix(in srgb, var(--cream) 90%, transparent); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(81, 36, 68, .07); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; color: var(--plum); letter-spacing: -0.03em; font-size: 20px; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px 12px 12px 4px; color: white; background: var(--plum); font-family: var(--serif); font-style: italic; box-shadow: var(--shadow-soft); }
.header-actions { display: flex; gap: 10px; align-items: center; }

.button { border: 1px solid var(--plum); background: var(--plum); color: white; min-height: 46px; padding: 10px 18px; border-radius: 999px; font-weight: 750; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(81,36,68,.16); }
.button:focus-visible, .text-button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(231,137,121,.42); outline-offset: 2px; }
.button-small { min-height: 38px; padding: 7px 14px; font-size: 14px; }
.button-outline { color: var(--plum); background: transparent; }
.button-quiet { color: var(--plum); background: var(--lilac); border-color: transparent; }
.text-button { border: 0; background: transparent; color: var(--plum); font-weight: 750; padding: 8px; }
.icon-button { border: 1px solid var(--line); background: var(--paper); width: 40px; height: 40px; border-radius: 50%; font-size: 25px; color: var(--plum); }

.hero { display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: center; padding-block: 76px 70px; }
.hero-copy h1 { font-family: var(--serif); color: var(--plum); font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; margin: 18px 0 24px; max-width: 760px; }
.hero-copy h1 em { color: var(--coral); font-weight: 500; }
.hero-sub { font-size: clamp(18px, 2vw, 22px); max-width: 660px; color: #655d65; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--plum); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.eyebrow.compact { font-size: 11px; }
.status-dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px var(--coral-soft); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; color: var(--muted); font-size: 13px; font-weight: 650; }
.trust-row span::before { content: '✓'; color: var(--sage-ink); margin-right: 7px; }
.hero-card { position: relative; overflow: hidden; background: linear-gradient(145deg, #fff, #f6edf2); border: 1px solid rgba(81,36,68,.08); border-radius: 34px; padding: 28px; min-height: 360px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-card-top { position: relative; z-index: 2; display: flex; justify-content: space-between; color: var(--muted); font-weight: 700; }
.mini-pill { background: var(--sage); color: var(--sage-ink); border-radius: 999px; padding: 5px 10px; font-size: 12px; }
.hero-card-amount { position: relative; z-index: 2; font-family: var(--serif); color: var(--plum); font-size: 76px; font-weight: 700; letter-spacing: -.06em; margin-top: 54px; }
.hero-card-label { position: relative; z-index: 2; font-size: 16px; color: var(--muted); }
.hero-card-flow { position: relative; z-index: 2; margin-top: 44px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; background: rgba(255,255,255,.72); border: 1px solid rgba(81,36,68,.08); padding: 15px; border-radius: 18px; }
.hero-card-flow div:not(.flow-arrow) { display: flex; flex-direction: column; gap: 3px; }
.hero-card-flow span { font-size: 11px; color: var(--muted); }
.hero-card-flow strong { color: var(--plum); font-size: 16px; }
.flow-arrow { color: var(--coral); }
.decorative-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 150px; height: 150px; background: var(--coral-soft); right: -35px; top: 58px; }
.orb-two { width: 100px; height: 100px; background: var(--sage); left: -28px; bottom: 20px; }

.calculator-shell { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 28px; align-items: start; padding-bottom: 84px; }
.input-column { display: grid; gap: 20px; }
.form-card, .results-panel, .comparison-section, .explain-section, .share-banner { border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.form-card { padding: 28px; }
.section-heading, .results-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 8px; }
.section-heading > div, .results-header > div { display: flex; align-items: center; gap: 12px; }
h2 { font-family: var(--serif); color: var(--plum); letter-spacing: -.035em; line-height: 1.08; margin: 0; font-size: clamp(29px, 3vw, 42px); }
.section-heading h2 { font-size: 28px; }
.step-number { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--lilac); color: var(--plum); font-weight: 850; }
.section-kicker { color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.section-intro { color: var(--muted); margin: 0 0 24px; }
.name-row, .field-grid { display: grid; gap: 14px; }
.name-row, .field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.name-row { margin-bottom: 16px; }
label { display: grid; gap: 7px; font-size: 13px; color: #5d555d; font-weight: 700; }
input[type="text"], input[type="number"], select { width: 100%; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 13px; background: white; padding: 11px 13px; color: var(--charcoal); }
.money-input { display: flex; align-items: center; gap: 2px; min-height: 52px; background: white; border: 1px solid var(--line-strong); border-radius: 13px; padding-left: 14px; }
.money-input:focus-within { outline: 3px solid rgba(231,137,121,.25); border-color: var(--coral); }
.money-input > span { color: var(--plum); font-weight: 850; }
.money-input input { border: 0; outline: 0; min-height: 48px; font-size: 17px; font-weight: 750; padding: 8px 12px 8px 4px; }
.workday-control { margin-top: 22px; background: linear-gradient(135deg, #faf6fb, #fff); border: 1px solid var(--lilac); border-radius: 18px; padding: 18px; }
.label-row { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.label-row label { display: block; }
.label-row strong { color: var(--plum); }
input[type="range"] { width: 100%; accent-color: var(--plum); }
.range-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; }
.helper { color: var(--muted); font-size: 12px; margin: 10px 0 0; }
.advanced-details { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.advanced-details summary { color: var(--plum); font-weight: 800; cursor: pointer; }
.details-body { margin-top: 16px; }

.children-stack { display: grid; gap: 14px; }
.child-card { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 18px; }
.child-card-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.child-card-title { display: flex; align-items: center; gap: 10px; }
.child-avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px 12px 12px 4px; background: var(--coral-soft); color: var(--plum); font-family: var(--serif); font-weight: 800; }
.child-name { border: 0 !important; min-height: 36px !important; padding: 4px 6px !important; font-weight: 850; color: var(--plum) !important; max-width: 180px; }
.remove-child { border: 0; background: transparent; color: #9b6470; font-size: 13px; font-weight: 750; }
.child-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.child-grid .wide { grid-column: 1 / -1; }
.inline-check { display: flex; align-items: center; gap: 9px; min-height: 48px; border: 1px solid var(--line); border-radius: 13px; padding: 11px 13px; background: #fffafa; }
.inline-check input { accent-color: var(--plum); }
.inline-check span { font-size: 13px; }
.derived-hourly { color: var(--muted); font-size: 11px; margin-top: -2px; }

.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.choice-card { position: relative; display: block; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card span { display: flex; flex-direction: column; gap: 3px; border: 1px solid var(--line-strong); border-radius: 16px; padding: 16px; background: white; }
.choice-card input:checked + span { border-color: var(--plum); box-shadow: 0 0 0 2px rgba(81,36,68,.09); background: #fbf7fb; }
.choice-card strong { color: var(--plum); font-size: 18px; }
.choice-card small { color: var(--muted); }
.toggle-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); margin-top: 20px; padding-top: 18px; }
.toggle-line p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.switch { display: inline-block; position: relative; }
.switch input { position: absolute; opacity: 0; }
.switch span { width: 48px; height: 28px; display: block; background: #cfc5ca; border-radius: 999px; position: relative; transition: .2s; }
.switch span::after { content: ''; width: 22px; height: 22px; position: absolute; left: 3px; top: 3px; background: white; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.18); transition: .2s; }
.switch input:checked + span { background: var(--plum); }
.switch input:checked + span::after { transform: translateX(20px); }

.results-column { position: sticky; top: 92px; }
.results-panel { overflow: hidden; padding: 25px; }
.results-header h2 { font-size: 24px; }
.results-header > div { display: block; }
.rate-badge { background: var(--sage); color: var(--sage-ink); padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 850; white-space: nowrap; }
.primary-result { text-align: center; padding: 28px 10px 24px; }
.decision-result { margin: 18px 0 4px; padding: 15px; border-radius: 14px; background: var(--sage); color: var(--sage-ink); font-weight: 800; line-height: 1.45; }
.primary-amount { display: block; font-family: var(--serif); color: var(--plum); font-size: 64px; line-height: 1; letter-spacing: -.05em; font-weight: 750; }
.primary-caption { display: block; color: var(--muted); margin-top: 8px; }
.cash-note { display: inline-block; margin-top: 10px; color: #8a5362; background: #fff0ec; border-radius: 999px; padding: 5px 9px; font-size: 11px; }
.result-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 16px; padding: 13px; background: #fff; }
.result-flow > div:not(.minus):not(.equals) { display: flex; flex-direction: column; gap: 2px; }
.result-flow span { font-size: 10px; color: var(--muted); }
.result-flow strong { color: var(--plum); font-size: 15px; }
.result-flow .accent { background: var(--coral-soft); margin: -6px; padding: 8px; border-radius: 11px; }
.minus, .equals { color: var(--muted); }
.period-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; background: #f1ebef; border-radius: 12px; padding: 4px; margin: 18px 0; }
.period-tab { border: 0; border-radius: 9px; padding: 8px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; }
.period-tab.active { background: white; color: var(--plum); box-shadow: 0 2px 9px rgba(81,36,68,.09); }
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metrics-grid > div { border: 1px solid var(--line); border-radius: 14px; padding: 12px; min-height: 86px; display: flex; flex-direction: column; justify-content: space-between; }
.metrics-grid span { color: var(--muted); font-size: 11px; }
.metrics-grid strong { color: var(--plum); font-size: 17px; }
.child-results { margin-top: 16px; display: grid; gap: 8px; }
.child-result-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 12px; border-radius: 13px; background: #faf7f9; }
.child-result-row strong { color: var(--plum); }
.child-result-row small { color: var(--muted); display: block; }
.result-actions { display: grid; gap: 8px; margin-top: 18px; }
.privacy-note { text-align: center; color: var(--muted); font-size: 11px; margin: 12px 0 0; }

.comparison-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; padding: 42px; margin-bottom: 24px; }
.comparison-statement { font-family: var(--serif); color: var(--plum); font-size: clamp(25px, 3vw, 38px); line-height: 1.17; margin: 20px 0 26px; }
.comparison-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.comparison-stats > div { background: #faf6f8; border-radius: 14px; padding: 14px; }
.comparison-stats span { color: var(--muted); display: block; font-size: 11px; min-height: 34px; }
.comparison-stats strong { color: var(--plum); font-size: 17px; }
.comparison-chart { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.chart-row { display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 10px; }
.chart-label { color: var(--muted); font-size: 12px; font-weight: 750; }
.chart-track { height: 42px; border-radius: 12px; background: #f0eaee; overflow: hidden; }
.chart-bar { height: 100%; border-radius: 12px; background: linear-gradient(90deg, var(--coral), var(--plum-2)); min-width: 4px; display: flex; align-items: center; padding-left: 12px; color: white; font-size: 11px; font-weight: 800; transition: width .25s ease; }
.chart-row.current .chart-track { box-shadow: 0 0 0 3px var(--sage); }
.chart-value { color: var(--plum); font-weight: 850; font-size: 13px; }

.explain-section { padding: 42px; margin-bottom: 24px; }
.formula-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.formula-cards article { border: 1px solid var(--line); border-radius: 18px; padding: 20px; background: #fff; }
.formula-cards article > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--lilac); color: var(--plum); font-weight: 850; }
.formula-cards h3 { color: var(--plum); margin: 15px 0 7px; }
.formula-cards p { margin: 0; color: var(--muted); font-size: 13px; }
.share-banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px 42px; margin-bottom: 50px; background: linear-gradient(135deg, #fff, var(--lilac)); }
.share-banner h2 { font-size: 32px; margin-top: 8px; }
.share-banner p { margin: 8px 0 0; color: var(--muted); }
.site-footer { display: flex; justify-content: space-between; gap: 30px; padding-block: 36px 110px; border-top: 1px solid var(--line); }
.footer-brand { margin-bottom: 12px; }
.site-footer p { max-width: 520px; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: flex-start; font-size: 12px; color: var(--plum); }
.footer-links a { padding: 8px; font-weight: 700; }

.mobile-summary { display: none; }
.modal { width: min(680px, calc(100% - 24px)); max-height: 88vh; border: 0; border-radius: 24px; padding: 0; box-shadow: 0 30px 90px rgba(50,20,40,.3); color: var(--charcoal); }
.modal::backdrop { background: rgba(39,25,35,.45); backdrop-filter: blur(3px); }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); background: var(--cream); }
.modal-head h2 { font-size: 28px; margin-top: 6px; }
.modal-body { padding: 24px; overflow: auto; }
.prose h3 { color: var(--plum); margin-top: 25px; }
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--muted); }
.source-list { display: grid; gap: 8px; margin-top: 24px; }
.source-list a { border: 1px solid var(--line); border-radius: 12px; padding: 12px; color: var(--plum); font-weight: 750; text-decoration: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 52px; }
  .hero-card { max-width: 640px; transform: none; }
  .calculator-shell { grid-template-columns: 1fr; }
  .results-column { position: static; }
  .results-panel { display: none; }
  .comparison-section { grid-template-columns: 1fr; }
  .mobile-summary { position: fixed; z-index: 50; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 10px; background: rgba(255,253,251,.94); border: 1px solid var(--line); border-radius: 18px; padding: 10px 12px; box-shadow: 0 18px 50px rgba(61,31,51,.22); backdrop-filter: blur(16px); }
  .mobile-summary div { display: flex; flex-direction: column; }
  .mobile-summary span { color: var(--muted); font-size: 10px; }
  .mobile-summary strong { color: var(--plum); font-size: 15px; }
  .site-footer { padding-bottom: 130px; }
}

@media (max-width: 680px) {
  .page-shell { width: min(100% - 22px, 1180px); }
  .site-header { min-height: 62px; padding-inline: 12px; }
  .header-actions .text-button { display: none; }
  .brand { font-size: 18px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { padding-block: 38px 46px; }
  .hero-copy h1 { font-size: 48px; }
  .hero-sub { font-size: 17px; }
  .hero-card { padding: 22px; min-height: 320px; }
  .hero-card-amount { font-size: 62px; margin-top: 42px; }
  .hero-card-flow { grid-template-columns: 1fr auto 1fr; }
  .hero-card-flow > :nth-child(4), .hero-card-flow > :nth-child(5) { display: none !important; }
  .form-card { padding: 20px 16px; border-radius: 20px; }
  .name-row, .field-grid.two, .child-grid, .choice-grid { grid-template-columns: 1fr; }
  .child-grid .wide { grid-column: auto; }
  .section-heading { align-items: flex-start; }
  .section-heading h2 { font-size: 25px; }
  .comparison-section, .explain-section { padding: 26px 18px; }
  .comparison-stats { grid-template-columns: 1fr; }
  .comparison-stats span { min-height: auto; }
  .formula-cards { grid-template-columns: 1fr; }
  .share-banner { align-items: flex-start; flex-direction: column; padding: 28px 20px; }
  .site-footer { flex-direction: column; }
  .footer-links { flex-direction: column; }
  .mobile-summary { grid-template-columns: 1fr 1fr; }
  .mobile-summary .button { grid-column: 1 / -1; min-height: 40px; }
  .modal-head, .modal-body { padding: 18px; }
}

@media print {
  body { background: white; }
  .site-header, .hero, .input-column, .comparison-section, .explain-section, .share-banner, .site-footer, .mobile-summary, .result-actions { display: none !important; }
  .calculator-shell { display: block; width: 100%; padding: 0; }
  .results-panel { display: block !important; box-shadow: none; border: 0; max-width: 760px; margin: 0 auto; }
  .results-column { position: static; }
  .results-panel::before { content: 'ParentMath · Childcare Maths 2026–27 estimate'; display: block; font-family: Georgia, serif; color: #512444; font-size: 30px; font-weight: bold; margin-bottom: 20px; }
  @page { margin: 14mm; }
}

/* ParentMath platform pages */
.platform-page { background: var(--cream); }
.platform-page a { text-decoration: none; }
.platform-page .text-button { display: inline-flex; align-items: center; }
.platform-hero { min-height: 650px; padding-block: 76px 70px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: center; }
.platform-hero h1, .content-main > h1 { font-family: var(--serif); color: var(--plum); font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; margin: 18px 0 24px; }
.platform-hero h1 em { color: var(--coral); font-weight: 500; }
.platform-estimate-card { min-height: 380px; transform: rotate(1.5deg); }
.platform-estimate-card .hero-card-amount { margin-top: 58px; }
.product-card p, .profile-promise p, .trust-grid p { color: var(--muted); }
.text-link, .product-card a { color: var(--plum); font-weight: 850; }
.platform-section { padding-block: 72px; }
.section-lead { max-width: 780px; margin-bottom: 32px; }
.section-lead h2 { margin-top: 13px; font-size: clamp(38px, 5vw, 58px); }
.product-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 22px; align-items: start; }
.product-card { position: relative; overflow: hidden; min-height: 245px; padding: 32px; border-radius: 30px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.product-card::after { content: ''; position: absolute; width: 120px; height: 120px; right: -52px; bottom: -58px; border-radius: 50%; background: var(--lilac); opacity: .65; pointer-events: none; }
.product-card.featured { background: linear-gradient(145deg, #fff, #f8eff4); transform: rotate(-.45deg); }
.product-card.featured::after { background: var(--coral-soft); }
.product-card:nth-child(2) { margin-top: 34px; transform: rotate(.35deg); }
.product-card.muted { min-height: 210px; background: rgba(255,255,255,.62); }
.product-card:nth-child(4) { margin-top: 34px; }
.product-card h2, .product-card h3 { font-family: var(--serif); color: var(--plum); font-size: 31px; margin: 22px 0 10px; }
.status-chip { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--lilac); color: var(--plum); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.status-chip.live { background: var(--sage); color: var(--sage-ink); }
.profile-promise { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.profile-promise h2, .trust-panel h2 { margin: 15px 0; font-size: clamp(38px, 5vw, 55px); }
.steps-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.steps-list li { display: flex; align-items: center; gap: 15px; padding: 19px; border: 1px solid var(--line); border-radius: 22px 22px 22px 8px; background: white; box-shadow: var(--shadow-soft); font-weight: 750; }
.steps-list li:nth-child(2) { margin-left: 24px; }
.steps-list strong { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--coral-soft); color: var(--plum); }
.trust-panel { position: relative; overflow: hidden; padding: 48px; border-radius: 38px 38px 38px 14px; background: linear-gradient(145deg, var(--plum), #673356); color: white; box-shadow: var(--shadow); }
.trust-panel::after { content: ''; position: absolute; width: 230px; height: 230px; right: -85px; top: -105px; border-radius: 50%; background: rgba(247,216,209,.13); }
.trust-panel h2, .trust-panel .eyebrow, .trust-panel .text-link { color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 25px 0; }
.trust-grid p { color: #eee4eb; }
.trust-grid strong { color: white; display: block; margin-bottom: 5px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-card { min-height: 180px; padding: 24px; background: linear-gradient(145deg, #fff, #fdf9fb); border: 1px solid var(--line); border-radius: 26px 26px 26px 9px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 15px; transition: transform .18s ease, box-shadow .18s ease; }
.guide-card:hover { transform: translateY(-3px) rotate(-.25deg); box-shadow: var(--shadow); }
.guide-card span { color: var(--coral); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.guide-card strong { color: var(--plum); font-family: var(--serif); font-size: 23px; }
.content-main { padding-block: 80px 100px; }
.content-main > h1 { max-width: 940px; font-size: clamp(48px, 6vw, 76px); }
.content-main .product-grid { margin-top: 45px; }
.prose-page { max-width: 850px; }
.prose-page .lede { font-size: 21px; }
.prose-page h2 { margin-top: 48px; font-size: 34px; }
.prose-page p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.prose-page article { padding-top: 20px; }
.plan-card { margin-top: 40px; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--lilac); }
.plan-card h2 { margin: 12px 0; }

@media (max-width: 820px) {
  .platform-hero, .profile-promise { grid-template-columns: 1fr; gap: 34px; }
  .platform-hero { padding-block: 55px; }
  .product-grid, .trust-grid, .guide-grid { grid-template-columns: 1fr; }
  .product-card, .product-card.featured, .product-card:nth-child(2), .product-card:nth-child(4) { margin-top: 0; transform: none; }
  .steps-list li:nth-child(2) { margin-left: 0; }
  .platform-section { padding-block: 45px; }
  .trust-panel { padding: 28px 20px; }
}
