@font-face {
  font-family: 'Manrope';
  src: url('assets/manrope-cyrillic.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #171714;
  --paper: #f3efe5;
  --white: #fffdf8;
  --blue: #1d4ed8;
  --blue-dark: #15399b;
  --coral: #f06f57;
  --mint: #b9dfc4;
  --yellow: #f2d13f;
  --line: rgba(23, 23, 20, .2);
  --line-inverse: rgba(255, 255, 255, .22);
  --muted: rgba(23, 23, 20, .67);
  --muted-inverse: rgba(255, 255, 255, .68);
  --font: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: auto; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, textarea, input { font: inherit; }
button { color: inherit; }
figure, fieldset { margin: 0; }
h1, h2, h3, p, summary, .footer__pages a, .related-links a { overflow-wrap: anywhere; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(243, 239, 229, .94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; letter-spacing: -.04em; white-space: nowrap; }
.brand strong { color: var(--blue); }
.brand__mark { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; overflow: hidden; border-radius: 9px; }
.brand__mark img { display: block; width: 100%; height: 100%; object-fit: contain; }

.button {
  min-width: 128px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.button:active { transform: translateY(1px); }
.button:disabled { color: rgba(255,255,255,.7); background: #536aa9; border-color: #536aa9; cursor: wait; transform: none; }
.button--header { min-width: 116px; min-height: 42px; }
.button--dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button--dark:hover { background: #38382f; border-color: #38382f; }

.hero { padding: 56px 0 68px; }
.hero__layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: center; }
.hero__layout > *, .proof__layout > *, .capabilities__layout > *, .cases__layout > *, .payoff__heading > *, .limits__layout > *, .faq__layout > *, .seo-hero__layout > *, .seo-copy > * { min-width: 0; }
.hero__copy h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(44px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -.06em;
  font-weight: 800;
}
.hero__copy h1 em { color: var(--blue); font-style: normal; }
.hero__copy > p { max-width: 545px; margin: 22px 0 26px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 30px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.trust-row li { position: relative; padding-left: 15px; font-size: 14px; font-weight: 700; }
.trust-row li::before { content: ''; position: absolute; top: .62em; left: 0; width: 6px; height: 6px; background: var(--mint); border: 1px solid var(--ink); border-radius: 50%; }
.hero__visual { position: relative; border: 1px solid var(--ink); background: var(--ink); }
.hero__visual img { width: 100%; aspect-ratio: 1.44; object-fit: cover; object-position: 61% center; }
.hero__visual figcaption { position: absolute; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; padding: 7px 10px; color: var(--ink); background: var(--white); border: 1px solid var(--ink); font-size: 13px; font-weight: 700; }
.hero__visual figcaption i { width: 28px; height: 1px; background: var(--ink); }

.section { padding: 88px 0; }
.section-index { margin: 0 0 16px; color: var(--blue); font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2, .proof__copy h2, .cases__intro h2, .payoff__heading h2, .faq__intro h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 800;
}
.section-heading > p:last-child, .faq__intro > p:last-child { max-width: 590px; margin: 18px 0 0; color: var(--muted); }

.proof { color: #fff; background: var(--blue); }
.proof__layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 56px; align-items: center; }
.proof__visual { position: relative; background: var(--white); border: 1px solid var(--ink); }
.proof__visual img { width: 100%; aspect-ratio: 1.52; object-fit: cover; }
.proof__visual figcaption { position: absolute; left: 0; bottom: 0; padding: 9px 13px; color: var(--ink); background: var(--yellow); border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); font-size: 13px; font-weight: 800; }
.proof .section-index { color: var(--yellow); }
.proof__copy h2 { font-size: clamp(34px, 3.6vw, 48px); }
.proof__copy > p:not(.section-index) { margin: 20px 0 28px; color: var(--muted-inverse); }
.proof__facts { margin: 0; border-top: 1px solid var(--line-inverse); }
.proof__facts > div { display: grid; grid-template-columns: 86px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line-inverse); }
.proof__facts dt { font-weight: 800; }
.proof__facts dd { margin: 0; color: var(--muted-inverse); }

.studio-section { background: var(--white); }
.studio { width: min(100%, 720px); margin-inline: auto; overflow: clip; color: #fff; background: var(--ink); border: 1px solid var(--ink); }
.studio__bar { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 18px; border-bottom: 1px solid var(--line-inverse); font-size: 13px; font-weight: 700; }
.studio__bar span:first-child { display: flex; align-items: center; gap: 8px; }
.studio__bar i { width: 12px; height: 12px; background: var(--yellow); border: 1px solid #fff; }
.studio__bar span:last-child { color: var(--muted-inverse); }
.studio__visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.studio__visual figcaption { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-inverse); }
.studio__visual figcaption span { padding: 14px 18px; color: var(--muted-inverse); font-size: 13px; }
.studio__visual figcaption span:first-child { border-right: 1px solid var(--line-inverse); }
.studio__visual figcaption b { color: #fff; }

.capabilities { background: var(--paper); }
.capabilities__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.section-heading--side { position: sticky; top: 96px; margin: 0; }
.capability-list { border-top: 1px solid var(--line); }
.capability-list article { display: grid; grid-template-columns: 46px 1fr 48px; gap: 18px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.capability-list article > span { align-self: start; padding-top: 5px; color: var(--blue); font-size: 14px; font-weight: 800; }
.capability-list h3 { margin: 0 0 6px; font-size: 24px; line-height: 1.2; letter-spacing: -.035em; }
.capability-list p { margin: 0; color: var(--muted); }
.capability-list i { width: 46px; height: 46px; display: grid; place-items: center; background: var(--mint); border: 1px solid var(--ink); font-style: normal; font-weight: 800; }
.capability-list article:nth-child(2) i { background: var(--coral); }
.capability-list article:nth-child(3) i { background: var(--yellow); }
.capability-list article:nth-child(4) i { color: #fff; background: var(--blue); }

.workflow { background: var(--mint); }
.workflow .section-heading { max-width: 760px; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.steps li { padding: 24px 26px 4px 0; border-right: 1px solid var(--ink); }
.steps li + li { padding-left: 26px; }
.steps li:last-child { border-right: 0; }
.steps span { display: inline-block; margin-bottom: 40px; color: var(--blue); font-size: 14px; font-weight: 800; }
.steps h3 { margin: 0 0 8px; font-size: 23px; line-height: 1.2; letter-spacing: -.035em; }
.steps p { margin: 0; color: var(--muted); }

.use-cases { background: var(--coral); }
.cases__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.cases__intro h2 { max-width: 500px; }
.case-list { border-top: 1px solid var(--ink); }
.case-list article { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; padding: 21px 0; border-bottom: 1px solid var(--ink); }
.case-list span { font-weight: 800; }
.case-list p { margin: 0; color: rgba(23,23,20,.72); }

.payoff { background: var(--white); }
.payoff__heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 38px; }
.payoff__heading > p { margin: 0; color: var(--muted); }
.payoff__visual { border: 1px solid var(--ink); }
.payoff__visual img { width: 100%; aspect-ratio: 1.7; object-fit: cover; }
.payoff__visual figcaption { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.payoff__visual figcaption span { padding: 11px 14px; border-right: 1px solid var(--ink); font-size: 13px; font-weight: 800; text-align: center; }
.payoff__visual figcaption span:last-child { border-right: 0; }

.limits { color: #fff; background: var(--ink); }
.limits__layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 72px; }
.limits h2 { max-width: 360px; margin: 0; font-size: clamp(34px, 4vw, 48px); line-height: 1.08; letter-spacing: -.05em; }
.limits__layout > div { border-top: 1px solid var(--line-inverse); }
.limits p { margin: 0; padding: 18px 0; color: var(--muted-inverse); border-bottom: 1px solid var(--line-inverse); }
.limits strong { color: #fff; }

.faq { background: var(--paper); }
.faq__layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 72px; align-items: start; }
.faq__intro { position: sticky; top: 96px; }
.accordion { border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--ink); }
.accordion summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-size: 18px; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--ink); border-radius: 50%; font-style: normal; transition: color .18s ease, background-color .18s ease, transform .18s ease; }
.accordion details[open] summary i { color: #fff; background: var(--blue); transform: rotate(45deg); }
.accordion details > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.accordion details[open] > div { grid-template-rows: 1fr; }
.accordion details > div > p { overflow: hidden; }
.accordion p { max-width: 640px; margin: 0 54px 0 0; color: var(--muted); }
.accordion details[open] p { padding-bottom: 22px; }

.final-cta { padding: 46px 0; background: var(--yellow); border-block: 1px solid var(--ink); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.final-cta h2 { margin: 0 0 5px; font-size: clamp(30px, 3vw, 40px); line-height: 1.1; letter-spacing: -.045em; }
.final-cta p { margin: 0; color: var(--muted); }

.footer { padding: 42px 0; color: #fff; background: var(--ink); }
.footer__inner { display: grid; grid-template-columns: .72fr 1.28fr auto; gap: 44px; align-items: start; }
.footer .brand strong { color: var(--yellow); }
.footer p { max-width: 260px; margin: 14px 0 0; color: var(--muted-inverse); font-size: 14px; }
.footer__pages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; }
.footer__pages a { padding-bottom: 7px; color: var(--muted-inverse); border-bottom: 1px solid var(--line-inverse); font-size: 13px; line-height: 1.35; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.footer__pages a[aria-current='page'] { color: var(--yellow); border-color: var(--yellow); }
.footer__up { padding-bottom: 2px; border-bottom: 1px solid var(--line-inverse); font-size: 14px; }

.breadcrumb { padding-top: 28px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: var(--muted); list-style: none; font-size: 13px; }
.breadcrumb li + li::before { content: '→'; margin-right: 8px; color: var(--blue); }
.breadcrumb a { border-bottom: 1px solid var(--line); }
.not-found { display: grid; min-height: 100svh; place-items: center; background: var(--mint); }
.not-found__inner { max-width: 760px; padding: 72px 0; }
.not-found h1 { max-width: 620px; margin: 8px 0 18px; font-size: clamp(48px, 7vw, 92px); line-height: .94; letter-spacing: -.07em; }
.not-found p:not(.section-index) { max-width: 460px; margin: 0 0 30px; color: var(--muted); font-size: 18px; }
.seo-hero { padding: 36px 0 80px; }
.seo-hero__layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.seo-hero__copy h1 { max-width: 620px; margin: 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.01; letter-spacing: -.06em; }
.seo-hero__copy > p:not(.section-index) { max-width: 560px; margin: 22px 0 28px; color: var(--muted); font-size: 17px; }
.seo-hero__visual { position: relative; overflow: hidden; background: var(--ink); border: 1px solid var(--ink); }
.seo-hero__visual img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.seo-hero__visual figcaption { position: absolute; left: 0; bottom: 0; padding: 9px 13px; color: var(--ink); background: var(--yellow); border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); font-size: 13px; font-weight: 800; }
.seo-section { padding: 82px 0; }
.seo-section--white { background: var(--white); }
.seo-section--mint { background: var(--mint); }
.seo-section--coral { background: var(--coral); }
.seo-section--dark { color: #fff; background: var(--ink); }
.seo-copy { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.seo-copy__lead { position: sticky; top: 96px; }
.seo-copy h2, .related h2 { margin: 0; font-size: clamp(34px, 4vw, 48px); line-height: 1.08; letter-spacing: -.05em; }
.seo-copy__body { max-width: 720px; }
.seo-copy__body > p { margin: 0 0 18px; color: var(--muted); }
.seo-copy__body h3 { margin: 34px 0 10px; font-size: 25px; line-height: 1.2; letter-spacing: -.035em; }
.seo-copy__body > :first-child { margin-top: 0; }
.seo-feature { position: relative; margin: 34px 0 0; overflow: hidden; background: var(--ink); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--yellow); }
.seo-feature img { display: block; width: 100%; aspect-ratio: 1.777; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.seo-feature:hover img { transform: scale(1.025); }
.seo-feature figcaption { display: flex; gap: 10px; align-items: baseline; padding: 11px 14px; color: #fff; background: var(--ink); font-size: 13px; line-height: 1.4; }
.seo-feature figcaption span { flex: 0 0 auto; color: var(--yellow); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.seo-section--dark .section-index { color: var(--yellow); }
.seo-section--dark .seo-copy__body > p { color: var(--muted-inverse); }
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 42px; border-top: 1px solid var(--ink); }
.seo-grid article { min-height: 230px; padding: 24px 26px 22px 0; border-right: 1px solid var(--ink); }
.seo-grid article + article { padding-left: 26px; }
.seo-grid article:last-child { border-right: 0; }
.seo-grid span { color: var(--blue); font-size: 13px; font-weight: 800; }
.seo-grid h3 { margin: 30px 0 9px; font-size: 23px; line-height: 1.18; letter-spacing: -.035em; }
.seo-grid p { margin: 0; color: var(--muted); }
.seo-checklist { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line-inverse); list-style: none; }
.seo-checklist li { position: relative; padding: 18px 44px 18px 34px; color: var(--muted-inverse); border-bottom: 1px solid var(--line-inverse); }
.seo-checklist li:nth-child(odd) { border-right: 1px solid var(--line-inverse); }
.seo-checklist li::before { content: '✓'; position: absolute; top: 18px; left: 0; color: var(--yellow); font-weight: 800; }
.seo-checklist strong { color: #fff; }
.seo-example { margin: 26px 0 0; padding: 22px 24px; color: var(--ink); background: var(--yellow); border: 1px solid var(--ink); font-weight: 700; }
.related { background: var(--paper); }
.related__heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 32px; }
.related__heading p { max-width: 480px; margin: 0; color: var(--muted); }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.related-links a { min-height: 150px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 22px 24px 22px 0; border-right: 1px solid var(--ink); font-size: 18px; font-weight: 800; line-height: 1.25; }
.related-links a + a { padding-left: 24px; }
.related-links a:last-child { border-right: 0; }
.related-links i { color: var(--blue); font-style: normal; transition: transform .24s ease; }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.footer a:focus-visible, .limits a:focus-visible { outline-color: var(--yellow); }

/* Motion system: enabled by JavaScript only when reduced motion is not requested. */
.motion-ready [data-reveal] {
  --motion-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .72s cubic-bezier(.2, .75, .25, 1) var(--motion-delay), transform .72s cubic-bezier(.2, .75, .25, 1) var(--motion-delay);
  will-change: opacity, transform;
}
.motion-ready [data-reveal='left'] { transform: translate3d(-38px, 0, 0); }
.motion-ready [data-reveal='right'] { transform: translate3d(38px, 0, 0); }
.motion-ready [data-reveal='down'] { transform: translate3d(0, -22px, 0); }
.motion-ready [data-reveal='image'] {
  transform: translate3d(0, 22px, 0) scale(.965);
  transform-origin: center top;
}
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); will-change: auto; }

[data-parallax] { overflow: hidden; }
[data-parallax] > img {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.055);
  transform-origin: center;
  will-change: transform;
}
.hero__visual figcaption { transition: transform .55s cubic-bezier(.2, .75, .25, 1), background-color .25s ease; }
.hero__visual figcaption i { transform-origin: center; transition: width .35s ease; }
.studio__bar i { animation: studio-pulse 2.4s ease-in-out infinite; }
.capability-list article > div, .capability-list i, .case-list article > * { transition: transform .32s cubic-bezier(.2, .75, .25, 1), background-color .25s ease, color .25s ease; }
.payoff__visual figcaption span { transition: color .25s ease, background-color .25s ease; }
.accordion summary span { transition: transform .28s cubic-bezier(.2, .75, .25, 1); }
.footer__up { transition: color .2s ease, border-color .2s ease; }

/* Editorial polish: light, texture and small UI moments. */
body { background-image: radial-gradient(circle at 92% 4%, rgba(242, 209, 63, .16), transparent 22rem), radial-gradient(circle at -6% 44%, rgba(185, 223, 196, .22), transparent 28rem); }
.site-header { box-shadow: 0 1px 0 rgba(23, 23, 20, .04); }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(23, 23, 20, .07); }
.button { position: relative; isolation: isolate; overflow: hidden; box-shadow: 0 5px 0 rgba(21, 57, 155, .26), 0 10px 20px rgba(29, 78, 216, .14); }
.button::before { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(110deg, transparent 24%, rgba(255,255,255,.27) 48%, transparent 70%); transform: translateX(-130%); transition: transform .55s cubic-bezier(.2,.75,.25,1); }
.button:hover { box-shadow: 0 3px 0 rgba(21, 57, 155, .3), 0 7px 16px rgba(29, 78, 216, .17); }
.button:hover::before { transform: translateX(130%); }
.button--dark { box-shadow: 0 5px 0 rgba(23, 23, 20, .34), 0 10px 20px rgba(23, 23, 20, .14); }
.hero { position: relative; isolation: isolate; overflow: clip; }
.hero::before, .hero::after { content: ''; position: absolute; z-index: -1; border: 1px solid rgba(29, 78, 216, .18); border-radius: 50%; pointer-events: none; }
.hero::before { width: 340px; height: 340px; top: -205px; right: -105px; box-shadow: 0 0 0 46px rgba(242, 209, 63, .08), 0 0 0 93px rgba(29, 78, 216, .035); }
.hero::after { width: 142px; height: 142px; bottom: -78px; left: 33%; background: rgba(185, 223, 196, .36); }
.hero__visual, .proof__visual, .studio, .payoff__visual, .seo-hero__visual { box-shadow: 13px 13px 0 rgba(23, 23, 20, .12); }
.hero__visual { overflow: hidden; }
.hero__visual::before { content: 'AI / EDIT'; position: absolute; z-index: 2; top: 14px; left: 14px; padding: 6px 8px; color: var(--ink); background: var(--yellow); border: 1px solid var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.hero__visual::after { content: ''; position: absolute; z-index: 1; width: 88px; height: 88px; right: -38px; top: -38px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; box-shadow: 0 0 0 12px rgba(255,255,255,.12); }
.section-index { display: flex; align-items: center; gap: 9px; }
.section-index::after { content: ''; width: 24px; height: 1px; background: currentColor; opacity: .72; }
.proof { position: relative; overflow: clip; }
.proof::after { content: ''; position: absolute; width: 300px; height: 300px; right: -120px; bottom: -185px; border: 42px solid rgba(242, 209, 63, .16); border-radius: 50%; pointer-events: none; }
.proof__layout { position: relative; z-index: 1; }
.studio { border-radius: 3px; box-shadow: 15px 15px 0 var(--yellow); }
.studio__bar { background: linear-gradient(90deg, #171714, #292a25); }
.capability-list article { position: relative; transition: padding .32s cubic-bezier(.2,.75,.25,1), background-color .24s ease; }
.capability-list article::before { content: ''; position: absolute; inset: 0 -18px; z-index: -1; background: transparent; border-radius: 12px; transition: background-color .24s ease, transform .32s cubic-bezier(.2,.75,.25,1); }
.steps li { transition: background-color .25s ease, transform .3s cubic-bezier(.2,.75,.25,1); }
.steps span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 34px; color: var(--ink); background: var(--yellow); border: 1px solid var(--ink); border-radius: 50%; }
.case-list article { transition: background-color .25s ease, padding .3s cubic-bezier(.2,.75,.25,1); }
.payoff__visual { overflow: hidden; }
.payoff__visual img { transition: transform .7s cubic-bezier(.2,.75,.25,1); }
.accordion details { transition: background-color .24s ease, padding-inline .24s ease; }
.accordion details[open] { background: rgba(29, 78, 216, .055); padding-inline: 16px; }
.final-cta { background-image: linear-gradient(120deg, var(--yellow) 0%, #ffe677 48%, var(--mint) 100%); }
.footer { position: relative; overflow: clip; }
.footer::after { content: ''; position: absolute; width: 270px; height: 270px; right: -155px; bottom: -170px; border: 1px solid rgba(242,209,63,.35); border-radius: 50%; box-shadow: 0 0 0 32px rgba(242,209,63,.06); pointer-events: none; }
.footer__inner { position: relative; z-index: 1; }

@keyframes studio-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.68); opacity: .58; }
}

@keyframes soft-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}
@keyframes orbit-glint {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(16deg) scale(1.08); }
}
.motion-ready .hero::after { animation: soft-drift 7s ease-in-out infinite; }
.motion-ready .hero__visual::after { animation: orbit-glint 6s ease-in-out infinite; }
.motion-ready .proof::after { animation: soft-drift 9s ease-in-out infinite reverse; }

@media (hover: hover) {
  .brand__mark { transition: transform .42s cubic-bezier(.2, .75, .25, 1); }
  .brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
  .hero__visual:hover figcaption { transform: translate(-5px, -5px); background: var(--yellow); }
  .hero__visual:hover figcaption i { width: 38px; }
  .capability-list article:hover { padding-inline: 12px; }
  .capability-list article:hover::before { background: rgba(185,223,196,.46); transform: translateX(4px); }
  .capability-list article:hover > div { transform: translateX(8px); }
  .capability-list article:hover i { transform: translateY(-5px) rotate(6deg); }
  .case-list article:hover > * { transform: translateX(8px); }
  .case-list article:hover { padding-inline: 14px; background: rgba(255,253,248,.3); }
  .steps li:hover { background: rgba(255,253,248,.38); transform: translateY(-5px); }
  .payoff__visual:hover img { transform: scale(1.025); }
  .accordion details:hover { background: rgba(29,78,216,.035); padding-inline: 12px; }
  .payoff__visual figcaption span:hover { color: #fff; background: var(--blue); }
  .accordion summary:hover span { transform: translateX(7px); }
  .footer__pages a:hover { color: #fff; border-color: #fff; transform: translateX(4px); }
  .footer__up:hover { color: var(--yellow); border-color: var(--yellow); }
  .related-links a:hover i { transform: translate(4px, -4px); }
}

@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: .92fr 1.08fr; gap: 36px; }
  .seo-hero__layout { gap: 38px; }
  .proof__layout { gap: 40px; }
  .capabilities__layout, .cases__layout, .limits__layout, .faq__layout { gap: 44px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  .shell { width: min(100% - 32px, 650px); }
  .hero { padding: 40px 0 54px; }
  .hero__layout { grid-template-columns: 1fr; gap: 34px; }
  .hero__copy h1 { max-width: 600px; }
  .hero__copy > p { max-width: 610px; }
  .hero__visual { width: 100%; }
  .section { padding: 68px 0; }
  .proof__layout { grid-template-columns: 1fr; gap: 34px; }
  .proof__visual { order: 2; }
  .proof__copy { order: 1; }
  .capabilities__layout, .cases__layout, .limits__layout, .faq__layout, .seo-hero__layout, .seo-copy { grid-template-columns: 1fr; }
  .seo-hero__layout { gap: 34px; }
  .seo-hero__visual { order: 2; }
  .seo-copy__lead { position: static; }
  .seo-grid { grid-template-columns: 1fr; }
  .seo-grid article, .seo-grid article + article { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--ink); }
  .seo-grid h3 { margin-top: 16px; }
  .seo-feature { box-shadow: 8px 8px 0 var(--yellow); }
  .related__heading { align-items: flex-start; flex-direction: column; }
  .related-links { grid-template-columns: 1fr; }
  .related-links a, .related-links a + a { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--ink); }
  .section-heading--side, .faq__intro { position: static; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--ink); }
  .steps span { margin: 3px 0 0; }
  .payoff__heading { grid-template-columns: 1fr; gap: 18px; }
  .footer__inner { grid-template-columns: 1fr auto; }
  .footer__pages { grid-column: 1 / 3; grid-row: 2; }
}

@media (max-width: 520px) {
  .studio { width: 100%; }
  .shell { width: calc(100% - 28px); }
  .header-inner { height: 64px; }
  .brand { font-size: 16px; }
  .brand__mark { width: 34px; height: 34px; }
  .button--header { min-width: 108px; min-height: 40px; padding-inline: 15px; }
  .hero { padding-top: 34px; }
  .hero__copy h1 { font-size: 36px; line-height: 1.07; letter-spacing: -.05em; }
  .hero__copy > p { margin: 18px 0 22px; font-size: 16px; }
  .hero__copy > .button { width: 100%; }
  .trust-row { gap: 8px 16px; margin-top: 24px; padding-top: 16px; }
  .trust-row li { font-size: 13px; }
  .hero__visual img { aspect-ratio: 1.08; object-position: 66% center; }
  .hero__visual figcaption { right: 10px; bottom: 10px; }
  .section { padding: 56px 0; }
  .seo-hero { padding: 28px 0 56px; }
  .seo-hero__copy h1 { font-size: 40px; line-height: 1.04; }
  .seo-section { padding: 56px 0; }
  .seo-hero__visual img { aspect-ratio: 1.15; }
  .seo-checklist { grid-template-columns: 1fr; }
  .seo-checklist li { padding-right: 0; }
  .seo-checklist li:nth-child(odd) { border-right: 0; }
  .footer__pages { grid-template-columns: 1fr; }
  .section-index { font-size: 13px; }
  .section-heading h2, .proof__copy h2, .cases__intro h2, .payoff__heading h2, .faq__intro h2 { font-size: 34px; }
  .proof__facts > div { grid-template-columns: 74px 1fr; gap: 12px; }
  .studio__bar { align-items: flex-start; flex-direction: column; padding-block: 12px; }
  .studio__visual img { aspect-ratio: 4 / 3; }
  .studio__visual figcaption { grid-template-columns: 1fr; }
  .studio__visual figcaption span:first-child { border-right: 0; border-bottom: 1px solid var(--line-inverse); }
  .capability-list article { grid-template-columns: 38px 1fr; padding: 22px 0; }
  .capability-list article > i { grid-column: 2; width: 42px; height: 42px; }
  .case-list article { grid-template-columns: 1fr; gap: 5px; }
  .payoff__visual img { aspect-ratio: 1.08; object-position: 54% center; }
  .payoff__visual figcaption { grid-template-columns: repeat(2, 1fr); }
  .payoff__visual figcaption span:nth-child(2) { border-right: 0; }
  .payoff__visual figcaption span:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .accordion summary { min-height: 70px; font-size: 16px; }
  .accordion p { margin-right: 0; }
  .final-cta { padding: 36px 0; }
  .final-cta__inner { align-items: stretch; flex-direction: column; gap: 22px; }
  .final-cta .button { width: 100%; }
  .hero__visual::before { top: 10px; left: 10px; font-size: 9px; }
  .hero__visual::after { width: 64px; height: 64px; right: -29px; top: -29px; }
  .hero::before { width: 240px; height: 240px; right: -128px; }
  .studio { box-shadow: 8px 8px 0 var(--yellow); }
}

@media (max-width: 380px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { gap: 10px; }
  .brand { gap: 7px; font-size: 14px; }
  .brand__mark { width: 30px; height: 30px; border-radius: 7px; }
  .button--header { min-width: 94px; min-height: 38px; padding-inline: 11px; font-size: 12px; }
  .hero__copy h1, .seo-hero__copy h1 { font-size: 32px; }
  .section-heading h2, .proof__copy h2, .cases__intro h2, .payoff__heading h2, .faq__intro h2, .seo-copy h2, .related h2 { font-size: 30px; }
  .proof__facts > div { grid-template-columns: 1fr; gap: 2px; }
  .proof__facts dt { padding-bottom: 0; }
  .studio__bar, .studio__visual figcaption span, .seo-feature figcaption { padding-inline: 12px; }
  .seo-feature figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .accordion summary { gap: 12px; font-size: 15px; }
  .accordion summary i { width: 30px; height: 30px; }
  .footer__inner { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .studio__bar i, .hero::after, .hero__visual::after, .proof::after { animation: none !important; }
  [data-parallax] > img { transform: none !important; }
}
