@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0b0d10;
  --ink-soft: #15191f;
  --paper: #f5f3ee;
  --paper-bright: #fbfaf7;
  --muted: #a6a7aa;
  --line-light: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(11, 13, 16, 0.12);
  --green: #b8f24a;
  --green-dark: #8fc72e;
  --blue: #596cff;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --radius: 28px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.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: 8px; left: 8px; z-index: 100; padding: 10px 14px; color: var(--ink); background: var(--green); border-radius: 8px; transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 18px auto 0;
  padding: 7px 8px 7px 18px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(16, 19, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.04em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--paper); }
.brand-mark img { width: 100%; height: 100%; }
.brand-name { font-size: 17px; }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; color: #d7d7d3; font-size: 13px; font-weight: 600; }
.desktop-nav a, .footer-links a { transition: color 500ms var(--ease); }
.desktop-nav a:hover, .footer-links a:hover { color: var(--green); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 8px 9px 8px 20px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform 700ms var(--ease), background-color 700ms var(--ease), color 700ms var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.98); }
.button-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; transition: transform 700ms var(--ease); }
.button:hover .button-icon { transform: translate(2px, -2px) scale(1.06); }
.button-small { padding-left: 18px; }
.button-light { color: var(--ink); background: var(--paper); }
.button-light .button-icon { color: var(--paper); background: var(--ink); }
.button-primary { color: var(--ink); background: var(--green); }
.button-primary .button-icon { background: rgba(11, 13, 16, 0.1); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; margin-left: auto; background: var(--paper); border: 0; border-radius: 50%; position: relative; }
.menu-toggle span:not(.sr-only) { position: absolute; left: 13px; width: 20px; height: 1.5px; background: var(--ink); transition: transform 600ms var(--ease); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:nth-child(2) { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 9; padding: 130px 30px 40px; background: rgba(11, 13, 16, 0.94); backdrop-filter: blur(28px); }
.mobile-menu a { display: block; padding: 18px 0; font-family: var(--serif); font-size: clamp(34px, 10vw, 52px); border-bottom: 1px solid var(--line-light); }

.section-shell { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.hero { min-height: min(900px, calc(100dvh - 20px)); padding: 145px 0 100px; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; position: relative; }
.hero-glow { position: absolute; width: 620px; height: 620px; top: 8%; right: -2%; border-radius: 50%; background: radial-gradient(circle, rgba(184, 242, 74, 0.12), rgba(184, 242, 74, 0) 68%); pointer-events: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 8px 12px; color: #d8d8d5; border: 1px solid var(--line-light); border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 16px rgba(184, 242, 74, 0.8); }
.eyebrow-dark { color: #3f4247; border-color: var(--line-dark); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 690px; margin-bottom: 28px; font-size: clamp(58px, 6.2vw, 94px); line-height: 0.91; letter-spacing: -0.065em; }
h1 em, h2 em { color: var(--green); font-family: var(--serif); font-weight: 400; }
.hero-lede { max-width: 590px; margin-bottom: 34px; color: #aaacb0; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { padding: 12px 0; color: #d8d9d5; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--line-light); }
.text-link span { color: var(--green); margin-left: 6px; }
.proof-strip { list-style: none; padding: 30px 0 0; margin: 36px 0 0; display: flex; gap: 26px; border-top: 1px solid var(--line-light); color: #c5c6c4; font-size: 11px; font-weight: 600; }
.proof-strip span { display: block; margin-bottom: 7px; color: #85898f; font-size: 9px; letter-spacing: 0.15em; }
.hero-proof { margin: 0; padding: 8px; position: relative; background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 32px; box-shadow: 0 50px 100px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.06); transform: rotate(1deg); }
.hero-proof-inner { min-height: 540px; padding: 42px; display: flex; flex-direction: column; color: var(--paper); background: linear-gradient(145deg, #171b21, #0f1216 72%); border-radius: 24px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.08); }
.hero-proof-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.hero-proof-top > span { color: #81858b; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-proof-stars { color: var(--green); font-size: 15px; letter-spacing: 0.14em; text-shadow: 0 0 20px rgba(184, 242, 74, 0.22); }
.hero-proof blockquote { max-width: 600px; margin: auto 0 24px; padding: 0; color: var(--paper); background: transparent; border-radius: 0; font-size: clamp(34px, 3.2vw, 49px); line-height: 1.02; letter-spacing: -0.035em; }
.hero-proof figcaption { display: flex; flex-direction: column; gap: 3px; padding-bottom: 28px; border-bottom: 1px solid var(--line-light); }
.hero-proof figcaption strong { font-size: 13px; }
.hero-proof figcaption span { color: #81858b; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-proof-results { padding-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-proof-results > div { min-height: 104px; padding: 18px; display: flex; align-items: end; justify-content: space-between; gap: 16px; background: rgba(255, 255, 255, 0.045); border-radius: 17px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.06); }
.hero-proof-results strong { color: var(--green); font-size: 35px; line-height: 0.9; letter-spacing: -0.06em; }
.hero-proof-results span { color: #9a9da2; font-size: 9px; line-height: 1.45; text-align: right; text-transform: uppercase; letter-spacing: 0.07em; }

.results-band { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 28px; overflow: hidden; color: var(--ink); background: var(--green); white-space: nowrap; }
.results-band p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; }
.results-band i { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }

.case-study, .process { width: 100%; max-width: none; padding: 150px max(24px, calc((100vw - 1200px) / 2)); color: var(--ink); background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 0.62fr; gap: 90px; align-items: end; margin-bottom: 70px; }
.section-heading h2, .fit h2 { margin-bottom: 0; font-size: clamp(52px, 6vw, 82px); line-height: 0.98; letter-spacing: -0.06em; }
.section-heading > p { margin-bottom: 5px; color: #6e7175; font-size: 15px; line-height: 1.7; }
.section-heading.light > p { color: #9da0a5; }
.case-grid { display: grid; grid-template-columns: 1.13fr 0.87fr; gap: 44px; align-items: start; }
.case-browser { padding: 7px; background: rgba(11, 13, 16, 0.07); border: 1px solid rgba(11, 13, 16, 0.08); border-radius: 30px; }
.case-browser-head { height: 56px; padding: 0 16px; display: flex; align-items: center; color: #686b70; background: #fff; border-radius: 23px 23px 0 0; font-size: 8px; letter-spacing: 0.1em; }
.case-browser-head div { display: flex; gap: 5px; }
.case-browser-head div span { width: 6px; height: 6px; background: #b5b3ae; border-radius: 50%; }
.case-browser-head p { margin: 0 auto; }
.case-browser-scroll { width: 100%; height: auto; aspect-ratio: 1265 / 712; overflow: hidden; position: relative; background: #ddd; border-radius: 0 0 23px 23px; }
.case-browser-scroll img { width: 100%; height: 100%; object-fit: contain; }
.case-notes { display: flex; flex-direction: column; padding: 38px; background: var(--paper-bright); border: 1px solid rgba(11, 13, 16, 0.08); border-radius: 28px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.8); }
.case-meta { display: flex; justify-content: space-between; color: #85878a; font-size: 8px; font-weight: 700; letter-spacing: 0.16em; }
.case-notes h3 { margin: 46px 0 18px; font-size: 35px; line-height: 1.05; letter-spacing: -0.045em; }
.case-notes > p { color: #707378; font-size: 13px; line-height: 1.65; }
.feature-list { list-style: none; padding: 0; margin: 20px 0 28px; border-top: 1px solid var(--line-dark); }
.feature-list li { padding: 14px 0; display: flex; gap: 18px; border-bottom: 1px solid var(--line-dark); font-size: 12px; font-weight: 700; }
.feature-list span { color: #9a9c9f; font-size: 9px; }
blockquote { margin: auto 0 0; padding: 23px; background: var(--ink); color: var(--paper); border-radius: 18px; font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.stars { margin-bottom: 12px; color: var(--green); font-family: var(--sans); font-size: 10px; letter-spacing: 0.1em; }
blockquote cite { display: block; margin-top: 15px; color: #aeb0b2; font-family: var(--sans); font-size: 9px; font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; }
.case-caption { margin: 10px 5px 0 !important; font-size: 8px !important; line-height: 1.45 !important; }
.client-testimonial { margin: 42px 0 0; padding: 8px; display: grid; grid-template-columns: 0.38fr 1.25fr 0.28fr; gap: 8px; color: var(--paper); background: rgba(11, 13, 16, 0.08); border: 1px solid rgba(11, 13, 16, 0.1); border-radius: 30px; }
.client-testimonial > * { margin: 0; padding: 32px; border-radius: 22px; }
.client-testimonial-label { display: flex; flex-direction: column; justify-content: space-between; background: var(--green); color: var(--ink); }
.client-testimonial-label span { font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.client-testimonial-label b { font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 0.95; }
.client-testimonial blockquote { display: flex; align-items: center; background: var(--ink); font-size: clamp(25px, 2.5vw, 37px); line-height: 1.08; }
.client-testimonial figcaption { display: flex; flex-direction: column; justify-content: end; color: var(--ink); background: var(--paper-bright); }
.client-testimonial figcaption strong { font-size: 15px; }
.client-testimonial figcaption span { margin-top: 5px; color: #787b7f; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }

.system { width: 100%; max-width: none; padding: 150px max(24px, calc((100vw - 1200px) / 2)); background: var(--ink); }
.system-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 16px; }
.system-card { min-height: 330px; padding: 36px; display: flex; flex-direction: column; position: relative; overflow: hidden; background: #111419; border: 7px solid rgba(255, 255, 255, 0.025); outline: 1px solid rgba(255, 255, 255, 0.08); border-radius: 28px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.06); }
.system-card-main { grid-row: span 2; min-height: 676px; }
.system-card-wide { grid-column: 1 / -1; min-height: 250px; display: grid; grid-template-columns: 1fr 0.7fr; gap: 70px; align-items: end; }
.card-number { position: absolute; top: 30px; right: 30px; color: #545961; font-size: 9px; letter-spacing: 0.12em; }
.card-kicker { color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.system-card h3 { max-width: 520px; margin: 18px 0 14px; font-size: clamp(28px, 3vw, 44px); line-height: 1.03; letter-spacing: -0.045em; }
.system-card > p, .system-card > div > p { max-width: 520px; margin: 0; color: #92969c; font-size: 13px; line-height: 1.7; }
.mini-ui { flex: 1; min-height: 300px; margin-top: 70px; padding: 12px; background: #1b2027; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 25px; transform: rotate(-2deg) translateY(30px); }
.mini-ui-top { display: flex; gap: 5px; padding: 10px; }
.mini-ui-top span { width: 5px; height: 5px; background: #59606a; border-radius: 50%; }
.mini-ui-hero { height: 210px; padding: 24px; display: flex; align-items: end; justify-content: space-between; background: linear-gradient(140deg, #222a35, #0d1015); border-radius: 17px; }
.mini-ui-hero i { width: 58%; height: 35%; background: linear-gradient(90deg, var(--green), rgba(184, 242, 74, 0.25)); border-radius: 10px; }
.mini-ui-hero b { width: 68px; height: 32px; background: var(--paper); border-radius: 999px; }
.mini-ui-lines { padding: 20px 8px; display: flex; gap: 10px; }
.mini-ui-lines i { flex: 1; height: 46px; background: #252b33; border-radius: 10px; }

.offer { width: 100%; max-width: none; padding: 135px max(24px, calc((100vw - 1200px) / 2)); color: var(--ink); background: var(--green); }
.offer-panel { padding: 8px; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 8px; background: rgba(11, 13, 16, 0.08); border: 1px solid rgba(11, 13, 16, 0.1); border-radius: 34px; }
.offer-copy, .price-card { padding: 56px; border-radius: 26px; }
.offer-copy { background: var(--paper); }
.offer-copy h2 { max-width: 730px; margin-bottom: 25px; font-size: clamp(48px, 5vw, 73px); line-height: 0.98; letter-spacing: -0.06em; }
.offer-copy h2 em { color: var(--ink); }
.offer-copy > p { max-width: 650px; color: #65686c; font-size: 14px; line-height: 1.7; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.offer-tags span { padding: 9px 12px; background: #e9e7e2; border-radius: 999px; font-size: 9px; font-weight: 700; }
.price-card { display: flex; flex-direction: column; justify-content: center; color: var(--paper); background: var(--ink); text-align: center; }
.price-card > span { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: 0.18em; }
.price { margin: 22px 0 2px; font-size: clamp(78px, 8vw, 120px); font-weight: 800; line-height: 0.9; letter-spacing: -0.08em; }
.price sup { font-size: 25px; vertical-align: top; }
.price small { color: #9c9fa4; font-size: 14px; letter-spacing: -0.02em; }
.price-card p { color: #8e9197; font-size: 11px; }
.voucher-line { margin: 25px auto 16px; padding: 12px 20px; color: var(--ink); background: var(--green); border-radius: 999px; font-size: 11px; }
.price-note { max-width: 270px; margin: 0 auto; font-size: 9px !important; line-height: 1.5; }

.fit { padding: 150px 0; }
.fit-copy { max-width: 900px; margin-bottom: 60px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-card { min-height: 420px; padding: 44px; background: #12161b; border: 7px solid rgba(255, 255, 255, 0.025); outline: 1px solid rgba(255, 255, 255, 0.08); border-radius: 30px; }
.fit-card-muted { background: #0e1115; }
.fit-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: var(--green); border-radius: 50%; font-size: 20px; }
.fit-card-muted .fit-icon { color: #888b90; background: #20242a; }
.fit-card h3 { margin: 50px 0 22px; font-size: 30px; letter-spacing: -0.04em; }
.fit-card ul { list-style: none; padding: 0; margin: 0; }
.fit-card li { padding: 13px 0; color: #a9acb1; border-bottom: 1px solid var(--line-light); font-size: 13px; }

.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-list li { min-height: 290px; padding: 36px; background: var(--paper-bright); border: 1px solid var(--line-dark); border-radius: 26px; }
.process-list span { color: #9b9da0; font-size: 10px; letter-spacing: 0.14em; }
.process-list h3 { margin: 90px 0 14px; font-size: 27px; letter-spacing: -0.04em; }
.process-list p { color: #73767a; font-size: 13px; line-height: 1.6; }

.faq { width: 100%; max-width: none; padding: 145px max(24px, calc((100vw - 1200px) / 2)); background: var(--ink-soft); }
.faq-list { display: grid; gap: 10px; }
.faq-item { padding: 7px; background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; }
.faq-item summary { min-height: 82px; padding: 0 22px; display: grid; grid-template-columns: 46px 1fr 38px; gap: 12px; align-items: center; cursor: pointer; list-style: none; background: #111419; border-radius: 17px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.055); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: #60656d; font-size: 9px; letter-spacing: 0.14em; }
.faq-item summary strong { font-size: clamp(17px, 2vw, 23px); letter-spacing: -0.025em; }
.faq-item summary i { width: 34px; height: 34px; position: relative; background: var(--green); border-radius: 50%; }
.faq-item summary i::before, .faq-item summary i::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; content: ""; background: var(--ink); transform: translate(-50%, -50%); transition: transform 650ms var(--ease), opacity 650ms var(--ease); }
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 28px 74px 24px 80px; }
.faq-answer p { max-width: 800px; margin: 0; color: #a6a9ae; font-size: 14px; line-height: 1.75; }

.preview { width: 100%; max-width: none; padding: 130px max(24px, calc((100vw - 1200px) / 2)); background: var(--ink); }
.preview-panel { padding: 8px; display: grid; grid-template-columns: 1fr 0.85fr; gap: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 34px; }
.preview-copy, .preview-form { padding: 55px; border-radius: 26px; }
.preview-copy { display: flex; flex-direction: column; background: #15191f; }
.preview-copy h2 { max-width: 650px; font-size: clamp(46px, 5vw, 70px); line-height: 0.98; letter-spacing: -0.06em; }
.preview-copy p { max-width: 550px; color: #96999e; font-size: 14px; line-height: 1.7; }
.preview-copy > a { margin-top: auto; padding-top: 60px; color: var(--green); font-weight: 700; }
.preview-form { background: var(--paper); }
.preview-form label { display: block; margin-bottom: 18px; }
.preview-form label span { display: block; margin-bottom: 8px; color: #676a6e; font-size: 9px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.preview-form input { width: 100%; height: 54px; padding: 0 16px; color: var(--ink); background: #ebe9e4; border: 1px solid transparent; border-radius: 13px; outline: none; transition: border-color 500ms var(--ease), transform 500ms var(--ease); }
.preview-form input:focus { border-color: var(--green-dark); transform: translateY(-1px); }
.form-field-hint { display: block; margin-top: 7px; color: #85888c; font-size: 9px; line-height: 1.45; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; }
.button-submit { width: 100%; margin-top: 6px; }
.button-submit:disabled { cursor: wait; opacity: 0.72; transform: none; }
.form-note, .form-status { margin: 13px 0 0; color: #777a7e; font-size: 9px; line-height: 1.5; text-align: center; }
.form-status { min-height: 14px; color: #3d6124; }
.form-status.is-error { color: #8f2f2f; }

.site-footer { padding: 70px max(24px, calc((100vw - 1200px) / 2)) 35px; display: grid; grid-template-columns: 1fr auto; gap: 18px 40px; align-items: center; border-top: 1px solid var(--line-light); }
.footer-brand { font-size: 20px; }
.site-footer > p { margin: 0; color: #85888d; font-size: 12px; }
.footer-links { grid-column: 2; grid-row: 1 / span 2; display: flex; gap: 24px; color: #c4c6c8; font-size: 11px; font-weight: 700; }
.site-footer small { grid-column: 1 / -1; margin-top: 35px; color: #8b8e93; font-size: 9px; }

.reveal { opacity: 0; transform: translateY(42px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 120ms; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header > .button { margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 125px; }
  .hero-copy { max-width: 760px; }
  .hero-proof { width: min(720px, 100%); margin: 35px auto 0; }
  .section-heading, .case-grid, .offer-panel, .preview-panel { grid-template-columns: 1fr; }
  .section-heading { gap: 28px; }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .system-card-main { grid-column: 1 / -1; grid-row: auto; min-height: 600px; }
  .system-card-wide { grid-template-columns: 1fr; gap: 20px; }
  .client-testimonial { grid-template-columns: 0.35fr 1fr; }
  .client-testimonial figcaption { grid-column: 1 / -1; min-height: 110px; }
}

@media (max-width: 700px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 64px; margin-top: 10px; padding-left: 13px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 15px; }
  .site-header > .button { display: none; }
  .menu-toggle { display: block; }
  .section-shell { width: calc(100% - 32px); }
  .hero { min-height: auto; padding: 110px 0 90px; gap: 48px; }
  h1 { font-size: clamp(52px, 16vw, 69px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .text-link { width: max-content; }
  .proof-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-proof { transform: none; }
  .hero-proof-inner { min-height: auto; padding: 30px 24px; }
  .hero-proof blockquote { margin: 70px 0 24px; font-size: clamp(32px, 10vw, 43px); }
  .hero-proof-results { grid-template-columns: 1fr; }
  .results-band { justify-content: flex-start; padding: 0 20px; }
  .case-study, .system, .offer, .process, .faq, .preview { padding: 100px 16px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .fit h2 { font-size: clamp(46px, 14vw, 62px); }
  .case-browser-head p { display: none; }
  .case-notes, .offer-copy, .price-card, .preview-copy, .preview-form { padding: 32px 24px; }
  .client-testimonial { grid-template-columns: 1fr; }
  .client-testimonial > * { padding: 26px 22px; }
  .client-testimonial-label { min-height: 120px; }
  .client-testimonial figcaption { grid-column: auto; min-height: 90px; }
  .system-grid, .fit-grid, .process-list { grid-template-columns: 1fr; }
  .system-card-main { min-height: 570px; }
  .system-card-wide { grid-column: auto; }
  .fit { padding: 100px 0; }
  .fit-card { min-height: 380px; padding: 32px 26px; }
  .offer-copy h2, .preview-copy h2 { font-size: 48px; }
  .offer-tags { align-items: flex-start; flex-direction: column; }
  .preview-copy > a { padding-top: 30px; }
  .faq-item summary { min-height: 76px; padding: 0 14px; grid-template-columns: 30px 1fr 34px; gap: 8px; }
  .faq-item summary strong { font-size: 16px; }
  .faq-answer { padding: 22px 16px 20px 52px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-column: 1; grid-row: auto; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
