:root {
  --navy-950: #04101f;
  --navy-900: #07182d;
  --navy-850: #0a2039;
  --navy-800: #102b48;
  --ink: #102238;
  --ink-soft: #31465b;
  --muted: #67788a;
  --teal: #347fa0;
  --teal-dark: #1e607f;
  --teal-pale: #dceef3;
  --green: #b9e64b;
  --green-strong: #9ecb31;
  --green-pale: #edf7d7;
  --paper: #f6f7f3;
  --soft: #edf2ef;
  --white: #ffffff;
  --line: #d9e1e5;
  --line-dark: rgba(255,255,255,.12);
  --shadow-sm: 0 12px 36px rgba(7, 24, 45, .08);
  --shadow-lg: 0 30px 90px rgba(7, 24, 45, .18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--green); color: var(--navy-950); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, .footer-title {
  margin-top: 0;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -.035em;
}
h1 {
  margin-bottom: 26px;
  max-width: 820px;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: .96;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  line-height: 1.04;
}
h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}
p { margin-top: 0; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--green); }

.section { padding: 112px 0; }
.section-paper { background: var(--paper); }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-navy { background: var(--navy-900); color: var(--white); }
.section-heading { margin-bottom: 56px; }
.section-heading.narrow { max-width: 860px; }
.section-heading.centred { max-width: 860px; margin-inline: auto; text-align: center; }
.section-heading > p:last-child { max-width: 760px; color: var(--muted); font-size: 1.12rem; }
.section-navy .section-heading > p:last-child { color: #c2d0dc; }
.section-heading.centred > p:last-child { margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16,34,56,.08);
  background: rgba(247,248,244,.92);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(7,24,45,.07); background: rgba(255,255,255,.96); }
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 0; }
.brand-logo { width: auto; object-fit: contain; }
.brand-logo-full { height: 54px; max-width: 315px; }
.brand-logo-icon { display: none; width: 52px; height: 52px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--teal);
  transition: right .2s ease;
}
.main-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy-900); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(52,127,160,.35);
  outline-offset: 3px;
}
.button-primary { background: var(--green); color: var(--navy-950); box-shadow: 0 12px 30px rgba(158,203,49,.2); }
.button-primary:hover { background: #c7ee65; box-shadow: 0 15px 34px rgba(158,203,49,.28); }
.button-dark { background: var(--navy-900); color: var(--white); }
.button-dark:hover { background: var(--navy-800); }
.button-small { min-height: 43px; padding-inline: 18px; font-size: .86rem; background: var(--navy-900); color: var(--white); }
.button-full { width: 100%; }
.text-link { color: var(--ink); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 83% 16%, rgba(185,230,75,.22), transparent 25%),
    radial-gradient(circle at 70% 82%, rgba(52,127,160,.11), transparent 27%),
    linear-gradient(180deg, #fcfdf9 0%, var(--paper) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -280px;
  bottom: -320px;
  border: 1px solid rgba(52,127,160,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(52,127,160,.035), 0 0 0 120px rgba(52,127,160,.025);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 70px; }
.hero-lead { max-width: 760px; margin-bottom: 32px; color: var(--ink-soft); font-size: 1.22rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; }
.hero-proof li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.74); color: var(--ink-soft); font-size: .82rem; font-weight: 700; }
.hero-proof li::before { content: "✓"; margin-right: 7px; color: var(--teal-dark); font-weight: 900; }

.hero-dashboard {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  pointer-events: none;
}
.dashboard-header, .dashboard-metric, .workflow-list, .dashboard-payment { position: relative; z-index: 1; }
.dashboard-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.dashboard-header h2 { margin: 0; font-size: 1.55rem; line-height: 1.15; }
.dashboard-label { margin: 0 0 5px; color: #b8c7d3; font-size: .75rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #d4dee6; font-size: .75rem; font-weight: 700; }
.status-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(185,230,75,.12); }
.dashboard-metric { display: flex; align-items: flex-end; gap: 18px; padding: 25px; border-radius: 20px; background: var(--green); color: var(--navy-950); }
.metric-number { font-family: "Manrope", sans-serif; font-size: 4.6rem; font-weight: 800; line-height: .8; }
.metric-copy { max-width: 230px; font-weight: 700; line-height: 1.3; }
.workflow-list { display: grid; gap: 9px; margin-top: 16px; }
.workflow-list div { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.035); }
.workflow-list span { color: var(--green); font-size: .74rem; font-weight: 800; }
.workflow-list p { margin: 0; color: #d5dfe6; font-size: .91rem; }
.dashboard-payment { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin-top: 16px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.06); text-align: center; }
.dashboard-payment p { margin: 0; color: #cfdae3; font-size: .81rem; }
.dashboard-payment strong { display: block; color: var(--white); font-size: 1.05rem; }
.dashboard-payment > span { color: var(--green); font-weight: 800; }

.confidence-strip { border-block: 1px solid var(--line); background: var(--white); }
.confidence-grid { min-height: 102px; display: grid; grid-template-columns: repeat(4, 1fr); }
.confidence-grid > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; padding: 20px 22px; border-right: 1px solid var(--line); }
.confidence-grid > div:first-child { border-left: 1px solid var(--line); }
.confidence-grid span { color: var(--teal); font-size: .75rem; font-weight: 800; }
.confidence-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.confidence-grid strong { color: var(--ink); font-size: .9rem; }

.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.section-intro { color: var(--ink-soft); font-size: 1.09rem; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 62px; }
.problem-card { min-height: 278px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 40px rgba(7,24,45,.045); }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 14px; background: var(--navy-900); color: var(--green); font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 800; }
.problem-card p { margin-bottom: 0; color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { min-height: 250px; padding: 28px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--navy-850); }
.process-number { display: inline-block; margin-bottom: 46px; color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.process-grid p { color: #b9c7d2; margin-bottom: 0; }

.control-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 70px; align-items: center; }
.control-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.check-list, .plain-list { display: grid; gap: 13px; padding: 0; margin: 27px 0 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding-left: 33px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--green); font-size: .72rem; font-weight: 900; }
.plain-list li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--teal-dark); font-weight: 900; }
.compact { gap: 11px; }

.report-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.report-top { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding: 28px 30px 22px; border-bottom: 1px solid var(--line); background: var(--white); }
.report-top h3 { margin: 0; font-size: 1.55rem; }
.report-kicker { margin: 0 0 4px; color: var(--teal-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.report-badge { padding: 8px 11px; border-radius: 999px; background: var(--green-pale); color: #557713; font-size: .73rem; font-weight: 800; }
.report-table-wrap { overflow-x: auto; padding: 22px; }
.report-table { width: 100%; min-width: 520px; border-collapse: collapse; background: var(--white); border-radius: 14px; overflow: hidden; }
.report-table th, .report-table td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; font-size: .82rem; }
.report-table th { background: #eef2f3; color: var(--muted); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; }
.report-table tbody tr:last-child td { border-bottom: 0; }
.outcome { display: inline-block; padding: 5px 8px; border-radius: 999px; font-size: .69rem; font-weight: 800; }
.outcome.live { background: #e4f4cf; color: #4e7115; }
.outcome.later { background: #e2eef7; color: #285f83; }
.outcome.closed { background: #edf0f2; color: #637180; }
.outcome.waiting { background: #fff0ce; color: #8a6110; }
.report-note { padding: 0 30px 24px; margin: 0; color: var(--muted); font-size: .76rem; }

.offer-grid { display: grid; grid-template-columns: .84fr 1.22fr .94fr; gap: 22px; align-items: stretch; }
.offer-card { position: relative; min-height: 100%; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.offer-primary { background: var(--green); border-color: var(--green-strong); box-shadow: 0 26px 70px rgba(7,24,45,.14); }
.offer-monthly { background: #e5eeee; }
.offer-number { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--navy-900); color: var(--green); font-size: .74rem; font-weight: 800; }
.offer-label { margin: 0 0 9px; color: var(--teal-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.offer-card h3 { font-size: 1.65rem; }
.offer-card > p:not(.offer-label):not(.monthly-price):not(.offer-note) { color: var(--ink-soft); }
.offer-ribbon { position: absolute; top: 20px; right: 20px; padding: 8px 11px; border-radius: 999px; background: var(--navy-900); color: var(--white); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-block { display: flex; align-items: center; gap: 18px; margin: 26px 0 28px; }
.price { font-family: "Manrope", sans-serif; font-size: clamp(4rem, 6vw, 5.8rem); font-weight: 800; line-height: .8; }
.price-copy { max-width: 190px; font-size: .86rem; line-height: 1.45; }
.offer-primary .button { margin-top: 28px; }
.offer-free .text-link { margin-top: auto; padding-top: 26px; }
.monthly-price { margin: 12px 0 4px; font-size: 1.08rem; }
.offer-note { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(16,34,56,.13); color: var(--muted); font-size: .84rem; }
.fee-principle { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; margin-top: 28px; padding: 26px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.fee-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--navy-900); color: var(--green); font-size: 1.1rem; font-weight: 900; }
.fee-principle h3 { margin-bottom: 5px; }
.fee-principle p { margin: 0; color: var(--muted); }

.fit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.fit-grid .section-intro { max-width: 560px; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 11px; }
.sector-tags span { padding: 13px 17px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-weight: 700; }
.fit-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 58px; }
.fit-checks article { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.fit-title { font-family: "Manrope", sans-serif; font-size: 1.2rem; font-weight: 800; }

.founder-section { padding: 90px 0; background: var(--navy-900); color: var(--white); }
.founder-card { display: grid; grid-template-columns: 150px 1fr; gap: 48px; align-items: start; max-width: 1000px; }
.founder-mark { width: 150px; height: 150px; display: grid; place-items: center; border-radius: 34px; background: var(--green); color: var(--navy-950); font-family: "Manrope", sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -.05em; box-shadow: 0 18px 55px rgba(185,230,75,.16); }
.founder-card h2 { max-width: 800px; }
.founder-card > div:last-child > p:not(.eyebrow):not(.founder-signoff) { max-width: 850px; color: #c3d0da; font-size: 1.08rem; }
.founder-signoff { margin-top: 28px; font-family: "Manrope", sans-serif; font-weight: 800; line-height: 1.45; }
.founder-signoff span { color: var(--green); font-family: "DM Sans", sans-serif; font-size: .88rem; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: start; }
.faq-heading { position: sticky; top: 112px; }
.faq-heading > p:last-child { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
details { padding: 0 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
summary { position: relative; padding: 22px 40px 22px 0; list-style: none; cursor: pointer; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 17px; color: var(--teal-dark); font-size: 1.45rem; font-weight: 600; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 0 22px; color: var(--muted); }

.contact-section { background: var(--navy-950); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: #c0ccd6; font-size: 1.08rem; }
.contact-points { display: grid; gap: 12px; margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.11); }
.contact-points p { display: grid; grid-template-columns: 80px 1fr; gap: 12px; margin: 0; color: #d2dce4; font-size: .9rem; }
.contact-points span { color: #8195a7; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-points a { color: var(--green); }
.contact-assurance { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; margin-top: 26px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.04); }
.contact-assurance span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--navy-950); font-weight: 900; }
.contact-assurance p { margin: 2px 0 0; color: #b8c6d1; font-size: .83rem; }
.contact-form { padding: 36px; border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.form-heading { margin-bottom: 22px; }
.form-heading h3 { margin: 0; font-size: 1.75rem; }
.form-kicker { margin: 0 0 5px; color: var(--teal-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; margin-bottom: 18px; font-size: .88rem; font-weight: 800; }
.optional { color: var(--muted); font-size: .74rem; font-weight: 500; }
input, textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfa; color: var(--ink); outline: none; }
input:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(52,127,160,.1); }
textarea { resize: vertical; }
.consent-row { grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin-top: 2px; color: var(--muted); font-size: .78rem; font-weight: 500; line-height: 1.45; }
.consent-row input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--teal-dark); }
.consent-row a { color: var(--teal-dark); font-weight: 700; }
.form-note, .form-status { margin: 10px 0 0; color: var(--muted); font-size: .75rem; }
.form-status { color: var(--teal-dark); font-weight: 700; }

.site-footer { padding: 54px 0; background: #020b15; color: #aebbc6; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .55fr .65fr 1.25fr; gap: 46px; align-items: start; }
.footer-logo-wrap { display: inline-flex; padding: 9px 12px; border-radius: 14px; background: var(--white); }
.footer-logo { width: min(100%, 280px); height: auto; }
.footer-brand > p { margin: 14px 0 0; font-size: .84rem; }
.footer-domain { color: var(--green); font-weight: 700; }
.footer-links { display: grid; gap: 10px; }
.footer-title { margin: 4px 0 4px; color: var(--white); font-size: .86rem; }
.footer-links a { color: #d7e0e7; font-size: .83rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.footer-legal { font-size: .78rem; }
.footer-legal p { margin: 0 0 11px; }
.compact-footer { padding: 30px 0; }
.simple-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-size: .8rem; }
.simple-footer p { margin: 0; }
.simple-footer nav { display: flex; gap: 18px; }
.simple-footer a { color: var(--white); text-decoration: none; }

.legal-main { min-height: 70vh; background: var(--paper); }
.legal-hero { padding-top: 94px; }
.legal-container { max-width: 940px; }
.legal-container h1 { max-width: 900px; font-size: clamp(3rem, 7vw, 5.6rem); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 38px; }
.legal-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.legal-card h2 { font-size: 1.45rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card dl { margin: 0; }
.legal-card dl div { display: grid; grid-template-columns: 125px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.legal-card dl div:last-child { border-bottom: 0; }
.legal-card dt { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.legal-card dd { margin: 0; }
.legal-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.prose-page { max-width: 900px; }
.page-updated { color: var(--muted); }
.prose-card { padding: 40px; }
.prose-card h2 { margin-top: 34px; }
.prose-card h2:first-child { margin-top: 0; }
.prose-card p { color: var(--ink-soft); }

@media (max-width: 1080px) {
  .hero-grid, .split-heading, .control-grid, .fit-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .problem-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-primary { order: -1; }
  .confidence-grid { grid-template-columns: repeat(2, 1fr); }
  .confidence-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .confidence-grid > div { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .faq-heading { position: static; }
}

@media (max-width: 820px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .main-nav .button { width: 100%; }
  .menu-toggle { display: block; }
  .brand-logo-full { display: none; }
  .brand-logo-icon { display: block; }
  .fit-checks, .legal-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 100px 1fr; gap: 30px; }
  .founder-mark { width: 100px; height: 100px; border-radius: 26px; font-size: 1.4rem; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .hero { padding: 66px 0 62px; }
  h1 { font-size: clamp(3rem, 15vw, 4.45rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-dashboard { padding: 22px; border-radius: 26px; }
  .dashboard-header { flex-direction: column; }
  .dashboard-metric { align-items: flex-start; flex-direction: column; }
  .metric-number { font-size: 4rem; }
  .dashboard-payment { grid-template-columns: 1fr; }
  .dashboard-payment > span { transform: rotate(90deg); }
  .confidence-grid, .problem-grid, .process-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .confidence-grid > div, .confidence-grid > div:nth-child(odd), .confidence-grid > div:first-child { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .problem-card { min-height: auto; }
  .card-icon { margin-bottom: 30px; }
  .offer-card, .contact-form, .legal-card, .prose-card { padding: 26px; }
  .offer-ribbon { position: static; display: inline-flex; align-self: flex-start; margin-bottom: 18px; }
  .price-block { align-items: flex-start; flex-direction: column; }
  .fee-principle { grid-template-columns: 1fr; }
  .fit-checks { gap: 16px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-mark { width: 90px; height: 90px; }
  .contact-points p { grid-template-columns: 1fr; gap: 3px; }
  .footer-grid { gap: 34px; }
  .simple-footer { align-items: flex-start; flex-direction: column; }
  .legal-card dl div { grid-template-columns: 1fr; gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
