/*
Theme Name: SmartTax Project Layer
Template: generatepress
Description: M1 prototype. All visual tokens are provisional (TBD-04).
Version: 0.3.1
Text Domain: smarttax
*/

/* PROVISIONAL M1 DESIGN TOKENS — not approved final SmartTax identity.
   Breakpoints: 48rem (tablet), 70rem (expanded navigation).
   System fonts only: no remote requests or licensed font files. */
:root {
  --st-ink: #183d35;
  --st-text: #30383b;
  --st-muted: #526167;
  --st-paper: #faf9f5;
  --st-white: #ffffff;
  --st-surface: #f0f3f4;
  --st-mineral: #e3ebee;
  --st-line: #c8d3d7;
  --st-accent: #cce4e6;
  --st-petrol: #285b65;
  --st-accent-ink: #244c55;
  --st-dark-muted: #cfdddf;
  --st-focus: #285b65;
  --st-font: "Segoe UI", Arial, sans-serif;
  --st-display: "Segoe UI", Arial, sans-serif;
  --st-text-xs: 0.7rem;
  --st-text-sm: 0.82rem;
  --st-text-base: 1rem;
  --st-text-lg: 1.12rem;
  --st-text-xl: 1.38rem;
  --st-h1: clamp(2.75rem, 4.2vw, 4rem);
  --st-h2: clamp(2rem, 3.2vw, 3rem);
  --st-h3: clamp(1.3rem, 1.8vw, 1.7rem);
  --st-space-1: 0.25rem;
  --st-space-2: 0.5rem;
  --st-space-3: 0.75rem;
  --st-space-4: 1rem;
  --st-space-5: 1.25rem;
  --st-space-6: 1.5rem;
  --st-space-8: 2rem;
  --st-space-10: 2.5rem;
  --st-space-12: 3rem;
  --st-space-16: 4rem;
  --st-space-20: 5rem;
  --st-space-24: 6rem;
  --st-section-space: clamp(3.5rem, 6.5vw, 6.5rem);
  --st-gutter: clamp(1.25rem, 4vw, 4rem);
  --st-width: 80rem;
  --st-radius: 0.3rem;
  --st-radius-card: 0.25rem;
  --st-radius-pill: 99rem;
  --st-shadow: 0 12px 28px rgb(24 61 53 / 8%);
  --st-price-size: 3rem;
  --st-card-space: 1.5rem;
  --st-mobile-section-space: 2.5rem;
  --st-shadow-menu: 0 8px 24px rgb(24 61 53 / 12%);
  --st-transition: 160ms ease;
  --st-backdrop: rgb(24 61 53 / 55%);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 1rem; }
body { margin: 0; background: var(--st-paper); color: var(--st-text); font: var(--st-text-base)/1.65 var(--st-font); }
body, button, input, select, textarea { font-family: var(--st-font); }
h1, h2, h3, p, figure, ul, ol, dl { margin: 0; }
h1, h2, h3 { font-family: var(--st-display); font-weight: 500; letter-spacing: -0.045em; line-height: 1.12; color: var(--st-ink); }
h1 { font-size: var(--st-h1); }
h2 { font-size: var(--st-h2); }
h3 { font-size: var(--st-h3); letter-spacing: -0.035em; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button { color: inherit; font: inherit; cursor: pointer; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button:disabled { cursor: not-allowed; opacity: 0.65; }
:focus-visible { outline: 3px solid var(--st-focus); outline-offset: 5px; }
img, svg { max-width: 100%; }
.container { width: min(var(--st-width), calc(100% - var(--st-gutter) * 2)); margin-inline: auto; }
.section { padding-block: var(--st-section-space); }
.grid { display: grid; gap: var(--st-space-6); }
.grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eyebrow { font-size: var(--st-text-xs); font-weight: 650; letter-spacing: 0.13em; line-height: 1.6; color: var(--st-muted); margin-bottom: var(--st-space-5); }
.lead { font-size: var(--st-text-lg); line-height: 1.75; color: var(--st-muted); }
.small-rule { display: inline-block; width: 1.9rem; height: 1px; background: currentColor; vertical-align: middle; }
.button { min-height: 3.35rem; display: inline-flex; align-items: center; justify-content: center; gap: var(--st-space-8); padding: var(--st-space-3) var(--st-space-6); border: 1px solid transparent; border-radius: var(--st-radius); font-size: var(--st-text-sm); font-weight: 600; line-height: 1.4; text-decoration: none; transition: background var(--st-transition), transform var(--st-transition); }
.button span { font-size: 1.25rem; }
.button-primary { color: var(--st-white); background: var(--st-ink); }
.button-primary:hover { background: var(--st-text); transform: translateY(-1px); }
.button-light { color: var(--st-accent-ink); background: var(--st-accent); }
.button-light:hover { background: var(--st-white); }
.text-link { min-height: 2.75rem; display: inline-flex; align-items: center; gap: var(--st-space-5); font-size: var(--st-text-sm); font-weight: 600; padding: var(--st-space-2) 0; border: 0; background: transparent; text-decoration: none; text-align: left; }
.text-link:hover { text-decoration: underline; }
.text-link span { font-size: 1.25rem; }
.skip-link { position: absolute; top: -10rem; left: 1rem; z-index: 100; padding: 1rem; background: var(--st-white); }
.skip-link:focus { top: 1rem; }
.site-header { border-bottom: 1px solid var(--st-line); background: var(--st-paper); position: relative; z-index: 20; }
.header-inner { min-height: 6rem; display: flex; align-items: center; justify-content: space-between; gap: var(--st-space-8); }
.wordmark { font-size: 2rem; line-height: 1; font-weight: 650; letter-spacing: -0.07em; text-decoration: none; color: var(--st-ink); display: inline-flex; min-height: 2.75rem; align-items: center; }
.wordmark > span { color: var(--st-muted); }
.main-nav { display: flex; align-items: center; gap: var(--st-space-8); }
.nav-list { display: flex; align-items: center; list-style: none; gap: var(--st-space-5); padding: 0; }
.nav-list > li > a, .nav-list summary { display: flex; align-items: center; gap: 0.35rem; min-height: 2.75rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; white-space: nowrap; }
.nav-list summary { cursor: pointer; list-style: none; }
.nav-list summary::-webkit-details-marker { display: none; }
.nav-list summary::after { content: "⌄"; font-size: 0.8rem; }
.nav-list details[open] > summary::after { content: "⌃"; }
.nav-dropdown { position: relative; }
.submenu { list-style: none; padding: var(--st-space-3); background: var(--st-white); box-shadow: var(--st-shadow-menu); border: 1px solid var(--st-line); border-radius: var(--st-radius); min-width: 15rem; position: absolute; top: calc(100% + 0.25rem); left: 0; }
.submenu a, .submenu button { display: flex; align-items: center; width: 100%; min-height: 2.75rem; padding: var(--st-space-2) var(--st-space-3); font-size: var(--st-text-sm); text-decoration: none; border: 0; background: transparent; text-align: left; }
.submenu a:hover, .submenu button:hover { background: var(--st-surface); }
.header-cta { font-size: 0.7rem; min-height: 2.8rem; gap: var(--st-space-4); padding-inline: var(--st-space-4); }
.menu-toggle { display: none; }
.hero { padding-top: clamp(3rem, 5vw, 5rem); padding-bottom: clamp(3rem, 5vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1.16fr 0.94fr; gap: var(--st-space-16); align-items: center; }
.hero .eyebrow { display: flex; align-items: center; gap: var(--st-space-3); font-size: 0.62rem; letter-spacing: 0.105em; }
.hero h1 { margin-bottom: var(--st-space-6); }
.hero h1 > span { color: var(--st-muted); }
.hero .lead { font-size: var(--st-text-base); max-width: 35rem; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: var(--st-space-2) var(--st-space-3); font-size: 0.78rem; line-height: 1.6; margin-top: var(--st-space-5); font-weight: 600; color: var(--st-petrol); }
.hero-proof .product-marker { white-space: nowrap; }
.hero-proof .proof-separator { color: var(--st-muted); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--st-space-3) var(--st-space-6); margin-top: var(--st-space-8); }
.hero-actions .text-link { font-size: 0.76rem; }
.price-anchor { font-size: var(--st-text-sm); color: var(--st-muted); margin-top: var(--st-space-6); }
.price-anchor strong { font-size: 1.3rem; font-weight: 650; color: var(--st-ink); }
.price-note { max-width: 33rem; font-size: var(--st-text-xs); color: var(--st-muted); line-height: 1.6; margin-top: var(--st-space-2); }
.profile-scene { background: var(--st-mineral); padding: var(--st-space-6) var(--st-space-8) var(--st-space-5); border-radius: var(--st-radius-card); position: relative; min-width: 0; }
.scene-heading { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.56rem; letter-spacing: 0.12em; margin-bottom: var(--st-space-6); color: var(--st-muted); }
.profile-document { background: var(--st-white); padding: var(--st-space-6); box-shadow: var(--st-shadow); width: calc(100% - 1rem); transform: none; border: 1px solid var(--st-line); border-radius: var(--st-radius); }
.document-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--st-space-8); gap: 0.5rem; }
.document-brand { font-weight: 650; font-size: 1rem; letter-spacing: -0.06em; }
.document-tag { font-size: 0.48rem; border: 1px solid var(--st-line); padding: 0.15rem 0.45rem; letter-spacing: 0.1em; }
.document-eyebrow { font-size: 0.52rem; letter-spacing: 0.09em; color: var(--st-muted); margin-bottom: var(--st-space-3); }
.profile-document h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.document-subtitle { font-size: 0.64rem; margin-top: var(--st-space-3); color: var(--st-muted); }
.document-meta { display: flex; justify-content: space-between; font-size: 0.46rem; letter-spacing: 0.06em; color: var(--st-muted); padding-block: var(--st-space-5) var(--st-space-2); border-bottom: 1px solid var(--st-line); gap: 0.5rem; }
.profile-fields > div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--st-surface); padding-block: 0.55rem; font-size: 0.6rem; }
.profile-fields dt { color: var(--st-muted); }
.profile-fields dd { margin: 0; font-weight: 600; text-align: right; }
.profile-area { display: flex; gap: var(--st-space-2); margin-top: var(--st-space-5); padding: var(--st-space-3); background: var(--st-surface); font-size: 0.56rem; }
.profile-area p { line-height: 1.6; margin-top: 0.25rem; color: var(--st-muted); }
.status-mark { width: 0.4rem; height: 0.4rem; border: 1px solid var(--st-ink); border-radius: 50%; flex-shrink: 0; margin-top: 0.3rem; }
.document-bottom { display: flex; justify-content: space-between; gap: 0.5rem; margin-top: var(--st-space-6); font-size: 0.45rem; color: var(--st-muted); letter-spacing: 0.1em; }
.radar-note { position: relative; z-index: 1; display: flex; align-items: center; gap: var(--st-space-4); margin: -0.8rem -0.6rem 0 var(--st-space-10); background: var(--st-ink); color: var(--st-white); padding: var(--st-space-5); box-shadow: var(--st-shadow); border-radius: var(--st-radius); }
.radar-label { display: block; color: var(--st-accent); font-size: 0.52rem; letter-spacing: 0.13em; margin-bottom: 0.3rem; }
.radar-note strong { font-size: var(--st-text-sm); line-height: 1.35; display: block; font-weight: 500; }
.radar-icon { width: 2.8rem; height: 2.8rem; border: 1px solid var(--st-dark-muted); border-radius: 50%; position: relative; flex-shrink: 0; }
.radar-icon::before { content: ""; position: absolute; inset: 0.45rem; border: 1px solid var(--st-dark-muted); border-radius: 50%; }
.radar-icon::after { content: ""; position: absolute; left: 50%; top: 0; height: 50%; width: 1px; background: var(--st-accent); transform-origin: bottom; transform: rotate(45deg); }
.radar-icon i { position: absolute; width: 0.3rem; height: 0.3rem; background: var(--st-accent); border-radius: 50%; right: 0.65rem; top: 0.75rem; }
.profile-scene figcaption { font-size: 0.58rem; text-align: center; color: var(--st-muted); margin-top: var(--st-space-5); line-height: 1.6; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--st-space-12); margin-bottom: var(--st-space-10); }
.section-heading > p { color: var(--st-muted); max-width: 25rem; font-size: 0.94rem; }
.segments-section { border-top: 1px solid var(--st-line); }
.card { background: var(--st-white); border: 1px solid var(--st-line); border-radius: var(--st-radius-card); padding: var(--st-space-8); }
.segment-card { display: flex; flex-direction: column; align-items: flex-start; }
.card-top { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: var(--st-space-10); }
.line-symbol { font-size: 1.8rem; font-weight: 300; line-height: 1; color: var(--st-muted); }
.card-index { font-size: var(--st-text-xs); color: var(--st-muted); }
.segment-card h3 { font-size: 1.45rem; }
.segment-card p { color: var(--st-muted); margin-top: var(--st-space-4); margin-bottom: var(--st-space-6); font-size: 0.94rem; }
.card-link { margin-top: auto; width: 100%; justify-content: space-between; border-top: 1px solid var(--st-line); padding-top: var(--st-space-5); }
.stage-section { background: var(--st-surface); }
.stage-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--st-space-20); }
.stage-card { display: grid; grid-template-columns: 2.5rem 1fr; gap: var(--st-space-4); border-bottom: 1px solid var(--st-line); padding-block: var(--st-space-6); }
.stage-card:first-child { padding-top: 0; }
.stage-card:last-child { border-bottom: 0; padding-bottom: 0; }
.stage-number { font-size: var(--st-text-sm); color: var(--st-muted); padding-top: 0.4rem; }
.stage-card p { margin-top: var(--st-space-3); margin-bottom: var(--st-space-2); color: var(--st-muted); font-size: 0.94rem; }
.process-section { background: var(--st-ink); color: var(--st-white); }
.process-section h2, .process-section h3 { color: var(--st-white); }
.process-section .eyebrow, .process-section .section-heading > p { color: var(--st-dark-muted); }
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0; margin-top: var(--st-space-16); }
.process-grid li { padding-inline: var(--st-space-6); border-left: 1px solid var(--st-muted); }
.process-grid li:first-child { padding-left: 0; border: 0; }
.process-grid li:last-child { padding-right: 0; }
.process-top { display: flex; align-items: center; justify-content: space-between; color: var(--st-accent); margin-bottom: var(--st-space-10); font-size: var(--st-text-sm); }
.process-grid .eyebrow { min-height: 2.5rem; font-size: 0.57rem; margin-bottom: var(--st-space-3); }
.process-grid h3 { font-size: 1.35rem; min-height: 3.3rem; }
.process-grid li > p:last-child { font-size: var(--st-text-sm); color: var(--st-dark-muted); margin-top: var(--st-space-4); }
.process-footnote { display: flex; align-items: baseline; gap: var(--st-space-3); margin-top: var(--st-space-6); padding-left: var(--st-space-4); border-left: 1px solid var(--st-dark-muted); font-size: 0.94rem; color: var(--st-dark-muted); }
.pricing-grid { gap: var(--st-space-6); }
.pricing-card { display: flex; flex-direction: column; padding: var(--st-card-space); background: var(--st-white); border: 1px solid var(--st-line); border-radius: var(--st-radius-card); }
.pricing-card h3 { font-size: 1.8rem; }
.pricing-card .eyebrow { font-size: 0.65rem; margin-bottom: var(--st-space-3); color: var(--st-petrol); }
.price { display: flex; align-items: baseline; gap: var(--st-space-3); margin-top: var(--st-space-3); }
.price strong { font-size: var(--st-price-size); font-weight: 500; line-height: 1.1; letter-spacing: -0.045em; }
.price > span { color: var(--st-muted); font-size: 0.94rem; line-height: 1.4; }
.pricing-term { font-size: 0.94rem; line-height: 1.5; color: var(--st-muted); margin-top: var(--st-space-2); max-width: 29rem; }
.standard-price, .consultation-box { display: flex; flex-direction: column; gap: var(--st-space-1); margin-top: var(--st-space-3); padding-top: var(--st-space-3); border-top: 1px solid var(--st-line); font-size: 0.94rem; line-height: 1.5; }
.standard-price > span { font-size: 0.875rem; color: var(--st-muted); }
.standard-price small { font-size: 0.875rem; font-weight: 400; }
.feature-list { list-style: none; padding: var(--st-space-4) 0 var(--st-space-5); font-size: 1rem; line-height: 1.5; }
.feature-list li { display: flex; align-items: baseline; gap: var(--st-space-2); padding-block: var(--st-space-1); }
.feature-list li::before { content: "✓"; color: var(--st-petrol); font-size: 0.8rem; }
.pricing-card > .button { margin-top: auto; width: 100%; justify-content: space-between; }
.pricing-plus { background: var(--st-surface); }
.pricing-plus .button-light { border-color: var(--st-petrol); }
.pricing-plus .consultation-box { background: transparent; }
.consultation-box strong { font-size: var(--st-text-base); font-weight: 600; }
.consultation-box span { font-size: 0.94rem; color: var(--st-muted); }
.pricing-notes { display: grid; grid-template-columns: 1fr 1fr; gap: var(--st-space-8); margin-top: var(--st-space-6); color: var(--st-muted); font-size: 0.875rem; }
.why-section { background: var(--st-mineral); }
.why-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--st-space-20); }
.why-copy .lead { color: var(--st-ink); margin-bottom: var(--st-space-8); }
.principle { display: flex; gap: var(--st-space-5); padding-block: var(--st-space-5); border-top: 1px solid var(--st-line); font-size: 0.94rem; }
.principle > span { color: var(--st-muted); font-size: var(--st-text-xs); padding-top: var(--st-space-1); }
.experience-layout { display: grid; grid-template-columns: 1.1fr 0.8fr; gap: var(--st-space-20); align-items: center; }
.experience-layout h2 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); line-height: 1.25; }
.experience-layout h2 > span { color: var(--st-muted); }
.experience-list article { display: flex; gap: var(--st-space-4); align-items: flex-start; padding-block: var(--st-space-4); border-bottom: 1px solid var(--st-line); }
.experience-list article:last-child { border: 0; }
.experience-mark { display: grid; place-items: center; min-width: 2.5rem; height: 2.5rem; border: 1px solid var(--st-line); border-radius: var(--st-radius); color: var(--st-petrol); }
.experience-list h3 { font-size: 1.15rem; }
.experience-list p { color: var(--st-muted); font-size: var(--st-text-sm); margin-top: var(--st-space-2); }
.expert-section { border-top: 1px solid var(--st-line); }
.expert-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--st-space-20); align-items: center; }
.expert-placeholder { max-width: 27rem; width: 100%; background: var(--st-surface); border: 1px solid var(--st-line); border-radius: var(--st-radius-card); padding: var(--st-space-6); }
.portrait-frame { max-width: 18rem; margin: auto; aspect-ratio: 4 / 3; display: grid; align-items: center; overflow: hidden; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-frame svg { stroke: var(--st-muted); stroke-width: 1; display: block; }
.portrait-guide { stroke: var(--st-line); }
.expert-placeholder figcaption { text-align: center; font-size: var(--st-text-sm); padding-block: var(--st-space-5) var(--st-space-2); border-top: 1px solid var(--st-line); }
.expert-placeholder figcaption span { color: var(--st-muted); font-size: var(--st-text-xs); }
.expert-copy .lead { margin-block: var(--st-space-6); font-size: var(--st-text-base); }
.expert-copy > p:not(.eyebrow):not(.lead) { color: var(--st-muted); font-size: var(--st-text-sm); }
.expert-copy > a { margin-top: var(--st-space-5); }
.final-section { background: var(--st-ink); color: var(--st-white); }
.final-layout { display: flex; align-items: center; justify-content: space-between; gap: var(--st-space-10); }
.final-section .eyebrow { color: var(--st-accent); }
.final-section h2 { color: var(--st-white); font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
.final-action { flex-shrink: 0; }
.final-section :focus-visible { outline-color: var(--st-accent); }
.final-action p { text-align: center; font-size: var(--st-text-xs); margin-top: var(--st-space-3); color: var(--st-dark-muted); }
.site-footer { padding-block: var(--st-space-10) var(--st-space-6); }
.footer-top { display: flex; align-items: center; gap: var(--st-space-10); padding-bottom: var(--st-space-8); }
.footer-top p { font-size: var(--st-text-sm); color: var(--st-muted); }
.footer-top > .text-link { margin-left: auto; }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--st-space-4); border-top: 1px solid var(--st-line); padding-top: var(--st-space-5); font-size: var(--st-text-xs); color: var(--st-muted); }
.prototype-dialog { width: min(32rem, calc(100% - 2.5rem)); max-height: calc(100dvh - 3rem); border: 1px solid var(--st-line); padding: var(--st-space-8); border-radius: var(--st-radius-card); background: var(--st-paper); color: var(--st-text); box-shadow: var(--st-shadow); }
.prototype-dialog::backdrop { background: var(--st-backdrop); }
.prototype-dialog h2 { font-size: 1.8rem; margin-bottom: var(--st-space-5); }
.prototype-dialog p:not(.eyebrow) { font-size: 0.94rem; }
.destination-label { margin-block: var(--st-space-5); overflow-wrap: anywhere; }
/* Reusable baseline for later pages; no live intake or extra Homepage section. */
.st-field { display: grid; gap: var(--st-space-2); }
.st-field label { font-weight: 600; }
.st-field input, .st-field select, .st-field textarea { min-height: 2.75rem; width: 100%; padding: var(--st-space-3); border: 1px solid var(--st-muted); border-radius: var(--st-radius); background: var(--st-white); font-size: 1rem; color: var(--st-text); }
.st-field [aria-invalid="true"] { border: 2px solid var(--st-focus); }
.st-field .field-message { font-size: var(--st-text-sm); color: var(--st-muted); }
.st-faq { border-bottom: 1px solid var(--st-line); padding-block: var(--st-space-4); }
.st-faq summary { min-height: 2.75rem; cursor: pointer; font-weight: 600; }
.st-faq p { padding-block: var(--st-space-4); }
.st-article-card { display: flex; flex-direction: column; gap: var(--st-space-4); }
@media (max-width: 70rem) {
  .header-inner { min-height: 5rem; flex-wrap: wrap; gap: 0; }
  .wordmark { font-size: 1.8rem; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; min-height: 2.75rem; min-width: 5.5rem; background: transparent; border: 1px solid var(--st-line); border-radius: var(--st-radius); font-size: var(--st-text-sm); }
  .main-nav { width: 100%; flex-direction: column; align-items: stretch; padding-block: var(--st-space-4) var(--st-space-6); gap: var(--st-space-5); }
  .js .main-nav:not(.is-open) { display: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--st-line); }
  .nav-list summary, .nav-list > li > a { font-size: var(--st-text-sm); min-height: 3.1rem; justify-content: space-between; }
  .submenu { position: static; box-shadow: none; border: 0; background: var(--st-surface); margin-bottom: var(--st-space-3); min-width: 0; }
  .header-cta { align-self: stretch; min-height: 3rem; font-size: var(--st-text-sm); }
  .hero-grid { gap: var(--st-space-8); }
  .hero h1 { font-size: clamp(2.5rem, 4.6vw, 3.5rem); }
  .profile-scene { padding-inline: var(--st-space-5); }
  .profile-document { padding: var(--st-space-5); }
  .grid-three { gap: var(--st-space-4); }
  .segment-card { padding: var(--st-space-5); }
  .segment-card h3 { font-size: 1.3rem; }
  .stage-layout, .why-layout, .experience-layout, .expert-layout { gap: var(--st-space-10); }
  .pricing-card { padding: var(--st-card-space); }
  .final-layout { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 48rem) {
  :root { --st-section-space: var(--st-mobile-section-space); --st-card-space: 1.25rem; --st-price-size: 2.75rem; }
  .hero { padding-block: var(--st-space-8); }
  .hero h1 { margin-bottom: var(--st-space-4); }
  .hero .lead { line-height: 1.6; }
  .price-anchor { margin-top: var(--st-space-4); }
  .stage-layout, .why-layout, .experience-layout, .expert-layout { gap: var(--st-space-6); }
  .stage-card { padding-block: var(--st-space-4); }
  .profile-document .document-top { margin-bottom: var(--st-space-4); }
  .profile-document .document-bottom { margin-top: var(--st-space-4); }
  .experience-list p { font-size: 1rem; }
  h1 { font-size: 2.75rem; }
  .hero-grid, .grid-two, .grid-three, .stage-layout, .why-layout, .experience-layout, .expert-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-grid { gap: var(--st-space-6); }
  .hero h1 { font-size: clamp(2.5rem, 7.8vw, 3.5rem); }
  .hero .eyebrow { font-size: 0.56rem; }
  .hero .small-rule { width: 1rem; flex-shrink: 0; }
  .hero-actions { gap: var(--st-space-3); margin-top: var(--st-space-6); }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-proof { font-size: 0.875rem; gap: var(--st-space-1) var(--st-space-3); border-left: 2px solid var(--st-petrol); padding-left: var(--st-space-3); }
  .hero-proof .proof-separator { display: none; }
  .desktop-break { display: none; }
  .profile-scene { max-width: 29rem; width: 100%; margin-inline: auto; padding: var(--st-space-5); }
  .profile-document { padding: var(--st-space-6); }
  .profile-document h2 { font-size: 1.8rem; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: var(--st-space-5); margin-bottom: var(--st-space-8); }
  .section-heading > p { max-width: none; }
  .card-top { margin-bottom: var(--st-space-3); }
  .segment-card { padding: var(--st-space-6); }
  .segment-card h3 { font-size: 1.65rem; }
  .segment-card p { max-width: 25rem; }
  .card-link { padding-top: var(--st-space-4); }
  .stage-card { grid-template-columns: 1.6rem 1fr; gap: var(--st-space-3); }
  .stage-card .text-link { gap: var(--st-space-3); }
  .process-grid { grid-template-columns: minmax(0, 1fr); margin-top: var(--st-space-5); gap: var(--st-space-4); }
  .process-grid li, .process-grid li:first-child, .process-grid li:last-child { padding: 0 0 var(--st-space-4); border: 0; border-bottom: 1px solid var(--st-muted); }
  .process-grid li:last-child { border: 0; padding-bottom: 0; }
  .process-top { margin-bottom: var(--st-space-2); }
  .process-top > span:last-child { transform: rotate(90deg); }
  .process-grid .eyebrow, .process-grid h3 { min-height: 0; }
  .process-grid h3 { font-size: 1.65rem; }
  .process-grid h3 br { display: none; }
  .process-grid h3 br::after { content: " "; }
  .process-footnote { align-items: flex-start; }
  .process-footnote .small-rule { margin-top: 0.65rem; flex-shrink: 0; width: 1rem; }
  .pricing-card { padding: var(--st-card-space); }
  .pricing-card h3 { font-size: 1.75rem; }
  .price strong { font-size: var(--st-price-size); }
  .pricing-notes { grid-template-columns: 1fr; gap: var(--st-space-4); }
  .expert-placeholder { max-width: 18rem; margin-inline: auto; padding: var(--st-space-4); }
  .expert-copy h2 br { display: none; }
  .expert-copy h2 br::after { content: " "; }
  .final-layout br { display: none; }
  .final-action { width: 100%; }
  .final-action > .button { width: 100%; justify-content: space-between; font-size: 0.75rem; gap: 0.75rem; }
  .footer-top { flex-wrap: wrap; gap: var(--st-space-4); }
  .footer-top p { order: 3; width: 100%; }
  .footer-bottom { flex-direction: column; gap: var(--st-space-2); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
