:root {
  --brand-navy: #0D1B2A;
  --brand-teal: #17B2A6;
  --brand-teal-ink: #08746D;
  --brand-sky: #30BDF6;
  --brand-coral: #FF7A59;
  --brand-soft-gray: #F1F3F6;
  --brand-surface: #FFFFFF;
  --brand-border: #D7DEE7;
  --brand-muted: #596979;
  --navy-hover: #162D43;
  --surface-blue: #F5FAFC;
  --radius: 5px;
  --radius-card: 12px;
  --shadow-soft: 0 18px 50px rgba(13, 27, 42, .08);
  --shadow-product: 0 30px 70px rgba(13, 27, 42, .18);
  color: var(--brand-navy);
  background: var(--brand-surface);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body { min-height: 100vh; margin: 0; background: var(--brand-surface); color: var(--brand-navy); line-height: 1.6; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: "Outfit", "Inter", ui-sans-serif, system-ui, sans-serif; line-height: 1.1; letter-spacing: -.035em; }
p { margin: 0; }
ul, ol { margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: .65rem .9rem; border-radius: var(--radius); background: var(--brand-navy); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-soft { background: var(--brand-soft-gray); }
.eyebrow { margin-bottom: .75rem; color: var(--brand-teal-ink); font-size: .75rem; font-weight: 800; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.section-heading { max-width: 690px; margin-bottom: clamp(2.6rem, 5vw, 4.5rem); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 1rem; font-size: clamp(2.15rem, 4.5vw, 3.6rem); }
.section-heading > p:last-child { color: var(--brand-muted); font-size: 1.08rem; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: .68rem 1.05rem; border: 1px solid var(--brand-navy); border-radius: var(--radius); color: var(--brand-navy); font-size: .9rem; font-weight: 750; line-height: 1; text-decoration: none; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--brand-navy); color: white; }
.button-primary:hover { border-color: var(--navy-hover); background: var(--navy-hover); }
.button-secondary { background: white; }
.button-secondary:hover { background: var(--brand-soft-gray); }
.button-light { border-color: white; background: white; color: var(--brand-navy); }
.button-light:hover { background: var(--brand-soft-gray); }
.button-large { min-height: 52px; padding: .85rem 1.35rem; font-size: 1rem; }
.button-full { width: 100%; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--brand-navy); outline-offset: 3px; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid transparent; background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px); }
.site-header.is-scrolled { border-bottom-color: var(--brand-border); box-shadow: 0 5px 25px rgba(13, 27, 42, .04); }
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 2rem; }
.brand-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-link img { display: block; width: 132px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 1.55rem; }
.primary-nav > a:not(.button) { color: #33485a; font-size: .9rem; font-weight: 680; text-decoration: none; }
.primary-nav > a:not(.button):hover { color: var(--brand-teal-ink); }
.nav-sign-in { margin-left: .4rem; }
.nav-cta { min-height: 40px; padding: .6rem .9rem; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--brand-border); border-radius: var(--radius); background: white; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 1px; background: var(--brand-navy); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; overflow: hidden; padding-top: clamp(4rem, 8vw, 7rem); background: linear-gradient(180deg, #fff 0%, #fff 72%, var(--brand-soft-gray) 72%, var(--brand-soft-gray) 100%); }
.hero::before { position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; border: 1px solid rgba(23, 178, 166, .12); border-radius: 50%; content: ""; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(560px, 1.16fr); align-items: center; gap: clamp(2.5rem, 5vw, 5rem); }
.hero-copy { position: relative; z-index: 1; padding-bottom: 5rem; }
.hero h1 { max-width: 700px; margin-bottom: 1.4rem; font-size: clamp(3.2rem, 6.5vw, 5.7rem); }
.hero-lead { max-width: 640px; margin-bottom: 2rem; color: #405365; font-size: clamp(1.12rem, 2vw, 1.32rem); line-height: 1.65; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .55rem 1.5rem; padding: 0; margin-top: 2rem; color: var(--brand-muted); font-size: .84rem; font-weight: 700; list-style: none; }
.hero-proof li::before { margin-right: .5rem; color: var(--brand-teal); content: "✓"; }
.hero-audience { max-width: 560px; margin-top: 1.1rem; color: var(--brand-muted); font-size: .82rem; line-height: 1.55; }
.product-frame { overflow: hidden; border: 1px solid #b7c4d1; border-radius: 11px; background: white; box-shadow: var(--shadow-product); }
.hero-product { position: relative; z-index: 2; width: 790px; transform: perspective(1500px) rotateY(-2deg); transform-origin: left center; }
.product-browser-bar { display: flex; height: 37px; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid var(--brand-border); background: #f7f9fa; }
.product-browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #cad2da; }
.product-browser-bar > span:first-child { background: var(--brand-coral); }
.product-browser-bar > span:nth-child(2) { background: #f1c45a; }
.product-browser-bar > span:nth-child(3) { background: var(--brand-teal); }
.product-browser-bar strong { margin-left: auto; color: #84909b; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.product-shell { display: grid; grid-template-columns: 54px 1fr; min-height: 450px; background: #f5f7f8; }
.product-sidebar { display: flex; align-items: center; flex-direction: column; gap: 20px; padding: 14px 10px; border-right: 1px solid var(--brand-border); background: white; }
.product-sidebar img { margin-bottom: 10px; }
.product-sidebar span { width: 21px; height: 5px; border-radius: 4px; background: #dbe1e7; }
.product-sidebar span.active { background: var(--brand-teal); }
.product-content { padding: 25px 26px 32px; }
.mock-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 18px; }
.mock-heading small, .mock-panel small, .mini-screen small { display: block; color: var(--brand-teal); font-size: 7px; font-weight: 850; letter-spacing: .12em; }
.mock-heading h2 { margin-top: 3px; font-size: 25px; }
.mock-heading > span { color: #71808e; font-size: 9px; }
.attention-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.attention-grid article { display: grid; padding: 14px; border: 1px solid var(--brand-border); border-radius: 7px; background: white; }
.attention-grid small { color: #71808e; font-size: 6px; font-weight: 800; letter-spacing: .08em; }
.attention-grid strong { margin: 3px 0 0; font: 800 24px/1.15 "Outfit", sans-serif; }
.attention-grid span { color: #71808e; font-size: 7px; }
.mock-work-grid { display: grid; grid-template-columns: 1.42fr .8fr; gap: 10px; margin-top: 10px; }
.mock-panel { padding: 15px; border: 1px solid var(--brand-border); border-radius: 7px; background: white; }
.mock-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.mock-panel-heading h3 { margin-top: 2px; font-size: 12px; }
.mock-panel-heading b { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: var(--brand-soft-gray); font-size: 7px; }
.task-row { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 8px; padding: 11px 0; border-top: 1px solid #e9edf1; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-dot.coral { background: var(--brand-coral); }.status-dot.sky { background: var(--brand-sky); }.status-dot.teal { background: var(--brand-teal); }
.task-row strong, .task-row span { display: block; }
.task-row strong { font-size: 8px; }
.task-row span { color: #71808e; font-size: 6px; }
.task-row em { padding: 3px 5px; border-radius: 8px; background: var(--brand-soft-gray); color: #647585; font-size: 6px; font-style: normal; }
.budget-panel dl { margin: 0; }
.budget-panel dl div { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-top: 1px solid #e9edf1; }
.budget-panel dt { color: #71808e; font-size: 7px; }.budget-panel dd { margin: 0; font-size: 9px; font-weight: 800; }
.budget-track { height: 5px; margin: 14px 0 6px; overflow: hidden; border-radius: 10px; background: #e7ebef; }
.budget-track span { display: block; width: 52%; height: 100%; border-radius: inherit; background: var(--brand-teal); }
.budget-panel p { color: #71808e; font-size: 7px; }.budget-panel p strong { color: var(--brand-navy); }

.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--brand-border); border-radius: var(--radius-card); background: var(--brand-border); }
.outcome-grid article { min-height: 270px; padding: 2rem; background: white; }
.number-icon { display: grid; width: 38px; height: 38px; margin-bottom: 2.5rem; place-items: center; border-radius: 50%; background: #E9F8F7; color: #087d75; font-size: .72rem; font-weight: 850; }
.outcome-grid h3 { margin-bottom: .85rem; font-size: 1.25rem; }
.outcome-grid p { color: var(--brand-muted); font-size: .92rem; }

.use-case-section { border-bottom: 1px solid var(--brand-border); }
.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.use-case-grid article { min-height: 180px; padding: 1.6rem; border: 1px solid var(--brand-border); border-radius: var(--radius-card); background: white; box-shadow: 0 8px 24px rgba(13, 27, 42, .04); }
.use-case-grid h3 { margin-bottom: .8rem; font-size: 1.2rem; }
.use-case-grid p { color: var(--brand-muted); font-size: .88rem; }

.feature-section { overflow: hidden; }
.feature-row { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); padding: clamp(3.5rem, 7vw, 6.5rem) 0; border-top: 1px solid var(--brand-border); }
.feature-row-reverse { grid-template-columns: minmax(520px, 1.2fr) minmax(0, .8fr); }
.feature-row-reverse .feature-copy { order: 2; }
.feature-copy h3 { margin-bottom: 1.2rem; font-size: clamp(2rem, 3.8vw, 3.25rem); }
.feature-copy > p:not(.eyebrow):not(.trust-note) { margin-bottom: 1.5rem; color: var(--brand-muted); font-size: 1.03rem; }
.tick-list { display: grid; gap: .75rem; padding: 0; list-style: none; }
.tick-list li { position: relative; padding-left: 1.5rem; color: #33495a; font-size: .9rem; }
.tick-list li::before { position: absolute; left: 0; color: var(--brand-teal); font-weight: 900; content: "✓"; }
.trust-note { margin-top: 1.4rem; padding: 1rem 1.1rem; border-left: 3px solid var(--brand-teal); background: #F0FAF9; color: #375864; font-size: .86rem; }
.mini-screen { min-width: 0; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--brand-border); border-radius: var(--radius-card); background: #f8fafb; box-shadow: var(--shadow-soft); font-size: .75rem; }
.screen-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.screen-top h4 { margin-top: .3rem; font-size: 1.35rem; }
.pill { display: inline-flex; align-items: center; padding: .3rem .55rem; border-radius: 20px; background: #E7EDF5; color: #385371; font-size: .62rem; font-weight: 800; white-space: nowrap; }
.teal-pill { background: #DCF5F1; color: #08746d; }.pill.warning { background: #FFF0E9; color: #9B442D; }
.project-summary, .finance-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-bottom: 1rem; }
.project-summary div, .finance-cards div { padding: .9rem; border: 1px solid var(--brand-border); border-radius: 6px; background: white; }
.project-summary small, .finance-cards small { color: var(--brand-muted); letter-spacing: 0; }
.project-summary strong, .finance-cards strong { display: block; margin-top: .3rem; font-size: .8rem; }
.stage { padding: .9rem; border-top: 1px solid var(--brand-border); background: white; }
.stage > div:first-child { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: .65rem; }
.stage b { color: var(--brand-teal); }.stage span { color: var(--brand-muted); font-size: .65rem; }
.stage-progress { height: 4px; margin: .7rem 0 0 2.6rem; border-radius: 4px; background: var(--brand-soft-gray); }
.stage-progress::after { display: block; width: 100%; height: 100%; border-radius: inherit; background: var(--brand-teal); content: ""; }
.stage-progress.partial::after { width: 58%; }.active-stage { border-left: 3px solid var(--brand-sky); }
.planner-grid { display: grid; grid-template-columns: 70px repeat(5, 1fr); gap: 4px; align-items: stretch; }
.planner-grid > * { min-height: 30px; padding: 7px 5px; border-radius: 4px; font-size: .58rem; }
.planner-grid > b { color: var(--brand-muted); text-align: center; }
.planner-grid > strong { display: flex; align-items: center; }
.plan-block { display: flex; align-items: center; justify-content: center; grid-column: span 2; background: var(--brand-teal); color: #072f34; font-weight: 800; text-align: center; }
.plan-block.navy { background: var(--brand-navy); color: white; }.plan-block.sky { background: var(--brand-sky); }.plan-block.soft { background: #DFE6EC; color: #3c5061; }
.planner-grid .blocked { display: flex; align-items: center; justify-content: center; background: #FFF0EC; color: #9b3e28; font-weight: 800; }
.screen-top button { padding: .35rem .55rem; border: 1px solid var(--brand-navy); border-radius: 4px; background: white; color: var(--brand-navy); font-size: .6rem; font-weight: 800; }
.table-head, .table-row { display: grid; grid-template-columns: 1.7fr .7fr .7fr .5fr; align-items: center; gap: .7rem; }
.table-head { padding: .5rem .8rem; color: var(--brand-muted); font-size: .55rem; font-weight: 800; text-transform: uppercase; }
.table-row { padding: .8rem; border-top: 1px solid var(--brand-border); background: white; }
.table-row strong, .table-row small { display: block; }.table-row small { margin-top: .15rem; color: var(--brand-muted); font-size: .56rem; letter-spacing: 0; }.table-row > b { text-align: right; }
.finance-cards { grid-template-columns: repeat(4, 1fr); }
.finance-cards strong { font-size: .95rem; }
.xero-status { display: flex; align-items: center; gap: .35rem; color: #49606f; font-size: .64rem; font-weight: 750; }.xero-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-teal); }
.cost-row { display: grid; grid-template-columns: 1.3fr .8fr auto; align-items: center; gap: 1rem; padding: .9rem; border-top: 1px solid var(--brand-border); background: white; }
.cost-row strong, .cost-row small { display: block; }.cost-row small { color: var(--brand-muted); font-size: .56rem; letter-spacing: 0; }.cost-row > span { color: var(--brand-muted); }.cost-row > b { color: #08746d; font-size: .62rem; }.cost-row > b.attention { color: #a24830; }

.section-navy { background: var(--brand-navy); color: white; }
.section-navy .eyebrow { color: #6AD9D0; }.section-navy .section-heading { margin-bottom: 3rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; list-style: none; }
.steps li { position: relative; display: flex; gap: 1rem; padding: 0 1.5rem; border-left: 1px solid rgba(255,255,255,.18); }
.steps li:first-child { padding-left: 0; border: 0; }
.steps li > span { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(106,217,208,.6); border-radius: 50%; color: #6AD9D0; font-size: .7rem; font-weight: 800; }
.steps h3 { margin-bottom: .7rem; font-size: 1.05rem; letter-spacing: -.015em; }.steps p { color: #B9C6D1; font-size: .82rem; }
.supporting-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 8vw, 7rem); align-items: center; }
.supporting-grid h2 { max-width: 600px; margin-bottom: 1.4rem; font-size: clamp(2.2rem, 4.5vw, 3.7rem); }.supporting-grid > div > p:not(.eyebrow) { margin-top: 1rem; color: var(--brand-muted); }
.supporting-grid aside { padding: 2rem; border: 1px solid var(--brand-border); border-radius: var(--radius-card); background: var(--brand-soft-gray); }.supporting-grid aside h3 { margin-bottom: 1.5rem; font-size: 1.25rem; }
.final-cta { padding-top: 0; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-card); background: var(--brand-teal); }
.cta-card h2 { margin-bottom: .8rem; font-size: clamp(2rem, 4vw, 3.2rem); }.cta-card p:not(.eyebrow) { max-width: 570px; color: #123c45; }.cta-card .eyebrow { color: var(--brand-navy); }.cta-card .button-row { align-items: flex-start; flex-direction: column; flex: 0 0 auto; }
.text-link-light { color: #123c45; font-size: .82rem; font-weight: 750; text-decoration: none; }

.page-hero { padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem); background: var(--surface-blue); text-align: center; }
.page-hero .container { max-width: 790px; }.page-hero h1 { margin-bottom: 1.2rem; font-size: clamp(3rem, 6.5vw, 5rem); }.page-hero p:not(.eyebrow) { color: var(--brand-muted); font-size: 1.15rem; }
.pricing-status { display: inline-flex; margin: 1.4rem auto 0; padding: .4rem .75rem; border: 1px solid #9ADCD6; border-radius: 20px; background: white; color: #08746d; font-size: .72rem; font-weight: 800; }
.pricing-grid { display: grid; max-width: 900px; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 0 auto; }
.pricing-card { position: relative; display: flex; padding: 2rem; border: 1px solid var(--brand-border); border-radius: var(--radius-card); background: white; flex-direction: column; box-shadow: var(--shadow-soft); }
.pricing-card-featured { border: 2px solid var(--brand-teal); }.plan-badge { position: absolute; top: 1rem; right: 1rem; padding: .3rem .55rem; border-radius: 15px; background: #E2F7F4; color: #08746d; font-size: .65rem; font-weight: 800; }
.pricing-card h2 { margin-bottom: .6rem; font-size: 2rem; }.pricing-card > p:not(.eyebrow):not(.price) { min-height: 3.2rem; color: var(--brand-muted); font-size: .9rem; }.price { margin: 1.5rem 0; font: 800 clamp(2.6rem, 5vw, 3.7rem)/1 "Outfit", sans-serif; }.price > span { margin-right: .15rem; font-size: 1.2rem; }.price small { color: var(--brand-muted); font: 600 .78rem "Inter", sans-serif; }.pricing-card .check-list { margin-bottom: 2rem; }.pricing-card .button { margin-top: auto; }
.pricing-note { max-width: 760px; margin: 1.5rem auto 0; color: var(--brand-muted); font-size: .8rem; text-align: center; }.addon-card { max-width: 900px; margin: 2rem auto 0; padding: 1.5rem; border: 1px solid var(--brand-border); border-radius: var(--radius-card); background: var(--brand-soft-gray); }.addon-card h2 { margin-bottom: .5rem; font-size: 1.25rem; }.addon-card p { color: var(--brand-muted); }
.check-list { display: grid; gap: .75rem; padding: 0; list-style: none; }.check-list li { position: relative; padding-left: 1.5rem; color: #33495a; font-size: .86rem; }.check-list li::before { position: absolute; left: 0; color: var(--brand-teal); content: "✓"; font-weight: 900; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(2rem, 7vw, 6rem); }
.contact-card, .content-card { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--brand-border); border-radius: var(--radius-card); background: white; box-shadow: var(--shadow-soft); }.contact-card h2, .content-card h2 { margin-bottom: 1rem; font-size: 1.75rem; }.contact-card > p, .content-card > p { color: var(--brand-muted); }.contact-email { display: inline-block; margin: 1.5rem 0; color: var(--brand-navy); font: 800 clamp(1.25rem, 3vw, 1.8rem) "Outfit", sans-serif; }.contact-list { display: grid; gap: 1.2rem; padding: 0; list-style: none; }.contact-list li { padding-left: 1rem; border-left: 3px solid var(--brand-teal); }.contact-list strong, .contact-list span { display: block; }.contact-list span { margin-top: .25rem; color: var(--brand-muted); font-size: .86rem; }
.legal { max-width: 820px; }.legal-notice { margin-bottom: 2.5rem; padding: 1rem 1.2rem; border-left: 3px solid var(--brand-coral); background: #FFF5F1; color: #6b4135; font-size: .9rem; }.legal h2 { margin: 2.5rem 0 .8rem; font-size: 1.5rem; }.legal p, .legal li { color: #405365; }.legal ul { display: grid; gap: .5rem; }.legal .updated { margin-top: 3rem; color: var(--brand-muted); font-size: .8rem; }
.not-found-action { margin-top: 2rem; }

.site-footer { padding: 4.5rem 0 2rem; border-top: 1px solid var(--brand-border); background: #f8fafb; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }.footer-brand p { max-width: 390px; margin-top: 1.2rem; color: var(--brand-muted); font-size: .88rem; }.footer-grid h2 { margin-bottom: 1rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }.footer-grid > div:not(.footer-brand) { display: flex; align-items: flex-start; flex-direction: column; gap: .65rem; }.footer-grid > div:not(.footer-brand) a { color: #4a5e6f; font-size: .84rem; text-decoration: none; }.footer-grid a:hover { color: var(--brand-teal); }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; margin-top: 3rem; border-top: 1px solid var(--brand-border); color: var(--brand-muted); font-size: .72rem; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }.hero-copy { min-width: 0; max-width: 760px; padding-bottom: 0; }.hero-product { width: 100%; transform: none; }.hero { background: linear-gradient(180deg, #fff 0%, #fff 48%, var(--brand-soft-gray) 48%, var(--brand-soft-gray) 100%); }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }.use-case-grid { grid-template-columns: repeat(2, 1fr); }.feature-row, .feature-row-reverse { grid-template-columns: 1fr; gap: 2.5rem; }.feature-row-reverse .feature-copy { order: 0; }.feature-copy { max-width: 680px; }.steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }.steps li:nth-child(3) { padding-left: 0; border-left: 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }.primary-nav { position: fixed; top: 76px; right: 0; left: 0; display: none; min-height: calc(100vh - 76px); align-items: stretch; padding: 1.5rem 1.25rem; border-top: 1px solid var(--brand-border); background: white; flex-direction: column; }.primary-nav.is-open { display: flex; }.primary-nav > a:not(.button) { padding: .7rem 0; font-size: 1.05rem; }.nav-sign-in { margin-left: 0; }.nav-cta { min-height: 48px; margin-top: .5rem; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .product-shell { grid-template-columns: 42px 1fr; }.product-sidebar { padding-inline: 6px; }.product-content { padding: 18px; }.mock-work-grid { grid-template-columns: 1fr; }.budget-panel { display: none; }
  .supporting-grid, .content-grid { grid-template-columns: 1fr; }.cta-card { align-items: flex-start; flex-direction: column; }.pricing-grid { grid-template-columns: 1fr; }.pricing-card > p:not(.eyebrow):not(.price) { min-height: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 1.5rem, 1160px); }.section { padding: 4.25rem 0; }.header-inner { min-height: 68px; }.primary-nav { top: 68px; min-height: calc(100vh - 68px); }
  .hero { padding-top: 3.5rem; }.hero h1 { font-size: clamp(2.85rem, 16vw, 4.3rem); }.hero-lead { font-size: 1.05rem; }.hero .button-row .button { width: 100%; }.hero-proof { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .hero-product { width: 100%; transform: none; }.product-shell { min-height: 380px; }.product-content { padding: 14px 10px 20px; }.attention-grid { gap: 5px; }.attention-grid article { padding: 10px 7px; }.mock-heading > span { display: none; }
  .outcome-grid, .use-case-grid { grid-template-columns: 1fr; }.outcome-grid article, .use-case-grid article { min-height: 0; }.number-icon { margin-bottom: 1.5rem; }
  .mini-screen { padding: 1rem; overflow-x: auto; }.planner-screen, .items-screen, .finance-screen { min-width: 530px; }.feature-row { padding: 3.5rem 0; overflow: hidden; }.feature-copy h3 { font-size: 2.2rem; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }.steps li, .steps li:nth-child(3) { padding: 0; border: 0; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }.footer-brand { grid-column: span 2; }.footer-bottom { align-items: flex-start; flex-direction: column; }
  .table-head, .table-row { grid-template-columns: 1.7fr .7fr .7fr .5fr; }.page-hero h1 { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }.button, .nav-toggle span { transition: none; }
}
