:root {
  --ink: #231f20;
  --ink-soft: #3d3739;
  --paper: #f4f1ec;
  --white: #fff;
  --magenta: #e61b58;
  --magenta-deep: #bd003c;
  --line: rgba(35, 31, 32, .16);
  --muted: #756d70;
  --radius: 1.25rem;
  --page-progress: 0;
  --pad: clamp(1.25rem, 4vw, 5rem);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
html.menu-open { overflow: hidden; }
[id] { scroll-margin-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, Aptos, "Helvetica Neue", Arial, sans-serif; line-height: 1.45; text-rendering: optimizeLegibility; overflow-x: hidden; }
body, button, a { cursor: auto; }
.has-custom-cursor body, .has-custom-cursor a, .has-custom-cursor button { cursor: none; }
::selection { color: var(--white); background: var(--magenta); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
em { color: var(--magenta); font-style: normal; }

:focus-visible { outline: 3px solid var(--magenta); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 200; top: 1rem; left: 1rem; padding: .75rem 1rem; color: var(--white); background: var(--ink); transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: none; }
.page-progress { position: fixed; z-index: 150; inset: 0 0 auto; height: 2px; background: var(--magenta); transform: scaleX(var(--page-progress)); transform-origin: left; }

.chat-cta { position: fixed; z-index: 140; right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); min-height: 58px; padding: .65rem 1rem; color: var(--white); background: rgba(35,31,32,.94); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; box-shadow: 0 18px 55px rgba(0,0,0,.22); display: flex; align-items: center; gap: .8rem; opacity: 0; visibility: hidden; transform: translateY(1rem); transition: opacity .25s, visibility .25s, transform .25s, background .25s; backdrop-filter: blur(12px); }
.chat-cta.is-visible { opacity: 1; visibility: visible; transform: none; }
.chat-cta:hover { background: var(--magenta); }
.chat-cta i { position: relative; width: 20px; height: 16px; border: 2px solid var(--magenta); border-radius: 50%; transition: border-color .25s; }
.chat-cta i::after { content: ""; position: absolute; left: 1px; bottom: -4px; width: 6px; height: 6px; border-left: 2px solid var(--magenta); transform: rotate(-24deg); transition: border-color .25s; }
.chat-cta:hover i, .chat-cta:hover i::after { border-color: var(--white); }
.chat-cta span { display: flex; flex-direction: column; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.chat-cta small { color: rgba(255,255,255,.55); font-size: .48rem; letter-spacing: .12em; }

.cursor { position: fixed; z-index: 300; pointer-events: none; top: -24px; left: -24px; width: 48px; height: 48px; border: 1px solid #fff; border-radius: 50%; opacity: 0; display: grid; place-items: center; mix-blend-mode: difference; transition: width .2s, height .2s, top .2s, left .2s, background .2s, opacity .2s; }
.has-custom-cursor .cursor { opacity: 1; }
.cursor::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #fff; }
.cursor span { position: absolute; color: #000; font-size: .56rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cursor.is-active { top: -36px; left: -36px; width: 72px; height: 72px; color: #000; background: #fff; border-color: transparent; }
.cursor.is-active::after { opacity: 0; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; min-height: 86px; padding: 1rem var(--pad); display: grid; grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr); align-items: center; gap: 2rem; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, min-height .25s; }
.site-header.is-scrolled { min-height: 72px; background: rgba(244, 241, 236, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.site-header--dark { color: var(--white); }
.site-header--dark.is-scrolled { background: rgba(35, 31, 32, .9); border-color: rgba(255,255,255,.12); }
.brand { display: inline-flex; flex-direction: column; width: max-content; line-height: 1; }
.brand__lockup { display: block; width: clamp(148px, 12vw, 176px); }
.brand__lockup img { width: 100%; height: auto; }
.brand__lockup--footer { width: clamp(190px, 18vw, 240px); }
.brand__name { font-size: clamp(1.7rem, 2.2vw, 2.35rem); font-weight: 900; letter-spacing: -.12em; }
.brand__name span { color: var(--magenta); margin-left: .08em; }
.brand__tagline { margin-top: .28rem; font-size: .5rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.brand__tagline b, .footer-brand b { color: var(--magenta); }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.5rem); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: currentColor; transition: right .25s; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; padding: .75rem 1rem; border: 1px solid var(--ink); border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: color .2s, background .2s; }
.header-cta:hover { color: var(--white); background: var(--ink); }
.header-cta--light { border-color: rgba(255,255,255,.5); }
.header-cta--light:hover { color: var(--ink); background: var(--white); }
.menu-button, .mobile-nav { display: none; }

.section-pad { padding: clamp(6rem, 11vw, 11rem) var(--pad); }
.section-dark { color: var(--white); background: var(--ink); }
.section-label { display: flex; align-items: center; gap: .8rem; margin-bottom: clamp(3rem, 6vw, 6rem); color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-label::after { content: ""; width: 4rem; height: 1px; background: currentColor; opacity: .55; }
.section-label span { color: var(--magenta); }
.section-label--light { color: rgba(255,255,255,.56); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; margin-bottom: clamp(4rem, 8vw, 8rem); }
.section-heading h2 { max-width: 960px; margin-bottom: 0; font-size: clamp(3rem, 6.8vw, 7.5rem); line-height: .94; letter-spacing: -.065em; }
.section-heading p { max-width: 520px; margin-bottom: .5rem; color: rgba(255,255,255,.6); font-size: clamp(1rem, 1.4vw, 1.25rem); }
.section-heading--dark p { color: var(--muted); }

.hero { position: relative; min-height: max(780px, 100svh); padding: clamp(9rem, 16vh, 12rem) var(--pad) 5rem; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero__grid { position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: clamp(45px, 5vw, 82px) clamp(45px, 5vw, 82px); mask-image: radial-gradient(circle at 72% 48%, #000, transparent 72%); opacity: .42; }
.hero::after { content: ""; position: absolute; z-index: -3; width: 70vw; height: 70vw; right: -30vw; top: -25vw; border-radius: 50%; background: rgba(230, 27, 88, .08); filter: blur(40px); }
.hero__copy { position: relative; z-index: 2; width: min(67vw, 1020px); }
.eyebrow { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { color: var(--magenta); margin-inline: .4rem; }
.eyebrow--light { color: rgba(255,255,255,.55); }
.hero h1 { margin: clamp(2rem, 5vh, 4rem) 0 2rem; font-size: clamp(2.9rem, 6.8vw, 7.5rem); line-height: .91; letter-spacing: -.07em; }
.hero h1 > span { display: block; }
.hero h1 > span:nth-child(2) { margin-left: clamp(0rem, 4vw, 5rem); }
.hero__intro { max-width: 600px; margin-left: clamp(0rem, 9vw, 10rem); color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.28rem); }
.hero__actions { margin: 2.3rem 0 0 clamp(0rem, 9vw, 10rem); display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1.5rem; min-height: 3.4rem; padding: 0 1.35rem; border: 1px solid currentColor; border-radius: 999px; font-size: .73rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-3px); }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--ink); background: var(--magenta); border-color: var(--magenta); }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: var(--magenta); border-color: var(--magenta); }
.button--magenta { color: var(--white); background: var(--magenta); border-color: var(--magenta); }
.button--magenta:hover { background: var(--magenta-deep); border-color: var(--magenta-deep); }
.text-link { display: inline-flex; align-items: center; gap: 1.2rem; padding-bottom: .35rem; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.text-link--light { color: var(--white); }

.k-stage { --parallax-x: 0px; --parallax-y: 0px; position: absolute; z-index: 3; right: clamp(-11rem, -6vw, -2rem); top: 50%; width: clamp(460px, 42vw, 760px); aspect-ratio: 1; transform: translateY(-48%) translate(var(--parallax-x), var(--parallax-y)); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.k-core { --k-rotation: 0deg; position: absolute; z-index: 2; inset: 13%; width: 74%; padding: 0; border: 0; background: none; transform: rotate(var(--k-rotation)); filter: drop-shadow(13px 12px 0 rgba(35,31,32,.9)) drop-shadow(0 30px 38px rgba(230,27,88,.24)); touch-action: none; will-change: transform; }
.k-core svg { width: 100%; height: 100%; overflow: visible; }
.k-half { fill: var(--magenta); transform-box: fill-box; transition: transform .45s cubic-bezier(.2,.9,.2,1); }
.k-core:hover .k-half--top, .k-core.is-dragging .k-half--top { transform: translate(12px,-12px); }
.k-core:hover .k-half--bottom, .k-core.is-dragging .k-half--bottom { transform: translate(12px,12px); }
.k-stage__orbit { position: absolute; border: 1px solid rgba(35,31,32,.18); border-radius: 50%; animation: orbit 24s linear infinite; }
.k-stage__orbit::after { content: ""; position: absolute; width: 7px; height: 7px; top: -4px; left: 50%; border-radius: 50%; background: var(--magenta); }
.k-stage__orbit--one { inset: 5%; }
.k-stage__orbit--two { inset: 21%; animation-direction: reverse; animation-duration: 16s; }
.orbit-label { position: absolute; z-index: 4; display: flex; flex-direction: column; padding: .65rem .8rem; background: rgba(244,241,236,.78); border: 1px solid var(--line); border-radius: .7rem; backdrop-filter: blur(10px); }
.orbit-label b { font-size: .72rem; letter-spacing: .12em; }
.orbit-label span { color: var(--muted); font-size: .58rem; letter-spacing: .04em; }
.orbit-label--grow { top: 4%; right: 22%; }
.orbit-label--flow { right: 22%; bottom: 14%; }
.orbit-label--time { left: 0; bottom: 8%; }
.scroll-cue { position: absolute; bottom: 2rem; left: var(--pad); display: flex; align-items: center; gap: .8rem; color: var(--muted); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { width: 1px; height: 2.5rem; background: var(--ink); transform-origin: top; animation: scrollLine 1.8s ease-in-out infinite; }

.statement { max-width: var(--max); margin: auto; }
.statement__lead, .statement__answer { margin-bottom: 0; font-size: clamp(2.7rem, 6.5vw, 7rem); line-height: .96; letter-spacing: -.06em; }
.statement__answer { margin-left: clamp(0rem, 12vw, 12rem); color: var(--muted); }
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(5rem, 10vw, 10rem); background: var(--line); border: 1px solid var(--line); }
.outcome { min-height: 300px; padding: clamp(1.5rem, 3vw, 3rem); background: var(--paper); transition: color .3s, background .3s; }
.outcome:hover { color: var(--white); background: var(--ink); }
.outcome > span, .benefit-grid article > span { color: var(--magenta); font-size: .64rem; font-weight: 800; }
.outcome h2 { margin: 5rem 0 1rem; font-size: clamp(2rem, 3.4vw, 3.8rem); letter-spacing: -.05em; }
.outcome p { max-width: 330px; margin-bottom: 0; color: var(--muted); }
.outcome:hover p { color: rgba(255,255,255,.62); }

.products { position: relative; isolation: isolate; overflow: hidden; }
.products__halo { position: absolute; z-index: -1; top: 15%; left: 50%; width: 60vw; height: 60vw; border: 1px solid rgba(230,27,88,.18); border-radius: 50%; background: radial-gradient(circle at 38% 36%, rgba(230,27,88,.15), transparent 52%); box-shadow: 0 0 160px rgba(230,27,88,.08), inset 0 0 120px rgba(230,27,88,.05); animation: haloDrift 12s ease-in-out infinite alternate; }
.product-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1.06fr .94fr; gap: 1.25rem; }
.product-card { position: relative; min-height: 760px; padding: clamp(1.5rem, 3vw, 3.2rem); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.product-card--flow { color: var(--ink); background: var(--white); }
.product-card--grow { background: rgba(255,255,255,.04); }
.product-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-name { margin-bottom: 0; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 900; letter-spacing: -.07em; }
.product-name b { color: var(--magenta); margin-left: .35rem; letter-spacing: -.02em; }
.status-pill { padding: .45rem .7rem; color: var(--magenta); background: rgba(230,27,88,.09); border-radius: 999px; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-pill--muted { color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); }
.product-kicker { margin: 3rem 0 1rem; color: var(--magenta); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { max-width: 700px; margin-bottom: 1.2rem; font-size: clamp(2.2rem, 4vw, 4.6rem); line-height: .96; letter-spacing: -.055em; }
.product-card > p:not(.product-kicker) { max-width: 560px; color: var(--muted); }
.product-card--grow > p:not(.product-kicker) { color: rgba(255,255,255,.58); }
.card-link { width: fit-content; margin-top: auto; padding-bottom: .35rem; border-bottom: 1px solid currentColor; font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.flow-preview { min-height: 250px; margin: 3rem 0; padding: 1.2rem; color: var(--white); background: var(--ink); border-radius: 1rem; box-shadow: 0 30px 80px rgba(35,31,32,.2); transform: perspective(900px) rotateX(3deg) rotateY(-3deg); }
.preview-bar { display: flex; align-items: center; gap: .35rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.preview-bar > span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
.preview-bar > span:first-child { background: var(--magenta); }
.preview-bar b { margin-left: auto; color: rgba(255,255,255,.7); font-size: .62rem; }
.preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 1rem; }
.preview-metrics span { padding: .8rem; background: rgba(255,255,255,.06); border-radius: .6rem; }
.preview-metrics small, .preview-metrics strong { display: block; }
.preview-metrics small { color: rgba(255,255,255,.48); font-size: .55rem; }
.preview-metrics strong { margin-top: .35rem; font-size: .88rem; }
.preview-lines { display: flex; align-items: end; gap: .6rem; height: 95px; padding: 1rem .8rem 0; }
.preview-lines i { flex: 1; height: 60%; border-radius: .3rem .3rem 0 0; background: rgba(230,27,88,.28); }
.preview-lines i:nth-child(2), .preview-lines i:nth-child(6) { height: 85%; }
.preview-lines i:nth-child(4) { height: 100%; background: var(--magenta); }
.grow-preview { position: relative; height: 260px; margin: 3rem 0; }
.social-card { position: absolute; width: 45%; aspect-ratio: 4/5; padding: 1.2rem; border-radius: .8rem; box-shadow: 0 18px 50px rgba(0,0,0,.25); display: flex; align-items: end; font-size: clamp(.75rem, 1.3vw, 1.1rem); }
.social-card--one { left: 0; bottom: 0; color: var(--ink); background: var(--magenta); transform: rotate(-7deg); }
.social-card--two { left: 28%; bottom: 1rem; z-index: 2; color: var(--ink); background: var(--paper); transform: rotate(2deg); flex-direction: column; align-items: start; justify-content: space-between; }
.social-card--three { right: 0; bottom: -.4rem; color: var(--white); background: linear-gradient(145deg, #5a132c, #e61b58); transform: rotate(8deg); }

.how { max-width: var(--max); margin: auto; }
.steps { list-style: none; padding: 0; margin: 0 0 0 min(14vw, 12rem); border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 5rem 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--magenta); font-size: .65rem; font-weight: 800; }
.steps h3 { margin-bottom: .5rem; font-size: clamp(1.5rem, 2.5vw, 2.6rem); letter-spacing: -.035em; }
.steps p { max-width: 600px; margin-bottom: 0; color: var(--muted); }

.work { color: var(--ink); background: var(--white); }
.work__intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; margin-bottom: clamp(4rem, 8vw, 7rem); }
.work__intro h2 { max-width: 980px; margin: 0; font-size: clamp(3rem, 6.5vw, 7rem); line-height: .94; letter-spacing: -.065em; }
.work__intro > div { max-width: 560px; }
.work__intro p { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.work__intro p:last-child { margin-bottom: 0; color: var(--ink); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.work-card { position: relative; min-height: 390px; padding: clamp(1.5rem, 3vw, 3rem); background: var(--white); overflow: hidden; transition: color .4s, background .4s, transform .45s cubic-bezier(.2,.8,.2,1); }
.work-card::after { content: attr(data-number); position: absolute; right: -.05em; bottom: -.28em; color: rgba(35,31,32,.035); font-size: clamp(10rem, 18vw, 18rem); font-weight: 900; line-height: 1; letter-spacing: -.12em; transition: color .4s, transform .6s cubic-bezier(.2,.8,.2,1); }
.work-card > * { position: relative; z-index: 1; }
.work-card > span, .work-card > div > span { color: var(--magenta); font-size: clamp(.74rem, .9vw, .88rem); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.work-card h3 { max-width: 560px; margin: clamp(5rem, 8vw, 8rem) 0 1.2rem; font-size: clamp(2rem, 3.5vw, 3.8rem); line-height: .98; letter-spacing: -.05em; }
.work-card p { max-width: 470px; margin-bottom: 0; color: var(--muted); }
.has-js .work-card.in-view:hover { z-index: 2; color: var(--white); background: var(--ink); transform: translateY(-10px); }
.work-card:hover::after { color: rgba(230,27,88,.13); transform: rotate(-5deg) scale(1.08); }
.work-card:hover p { color: rgba(255,255,255,.65); }
.work-card--featured { grid-column: 1/-1; min-height: 390px; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.work-card--featured h3 { max-width: 820px; margin-bottom: 0; font-size: clamp(3.5rem, 7vw, 7.5rem); }
.work-card--featured > div:last-child { padding-bottom: .5rem; }
.work-card--featured .text-link { margin-top: 2rem; }
@media (max-width: 1100px) { .work__intro { grid-template-columns: 1fr; }.work-grid { grid-template-columns: repeat(2,1fr); }.work-card--featured { grid-column: 1/-1; } }
@media (max-width: 760px) { .work-grid, .work-card--featured { grid-template-columns: 1fr; }.work-card--featured { grid-column: auto; gap: 2rem; }.work-card { min-height: 320px; }.work-card h3 { margin-top: 4rem; }.work-card--featured h3 { font-size: clamp(3rem, 13vw, 5rem); } }

.work-contact { margin-top: 2rem; padding: clamp(2rem, 4vw, 4rem) 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-block: 1px solid var(--line); }
.work-contact p { max-width: 720px; margin: 0; font-size: clamp(1.05rem, 1.6vw, 1.4rem); }
.work-contact .button { flex: none; }
@media (max-width: 760px) { .work-contact { align-items: flex-start; flex-direction: column; } }

.proof { color: var(--white); background: var(--magenta); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 8vw, 9rem); }
.proof .section-label, .proof .section-label span { color: rgba(255,255,255,.7); }
.proof__intro h2 { max-width: 900px; font-size: clamp(3.2rem, 6.5vw, 7rem); line-height: .93; letter-spacing: -.065em; }
.proof__intro > p { max-width: 570px; color: rgba(255,255,255,.76); font-size: 1.1rem; }
.proof__number { display: flex; align-items: end; gap: 1rem; align-self: center; }
.proof__number strong { font-size: clamp(8rem, 20vw, 20rem); line-height: .7; letter-spacing: -.11em; }
.proof__number span { padding-bottom: 1rem; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.client-strip { grid-column: 1/-1; padding: 3.4rem 0; border-block: 1px solid rgba(255,255,255,.22); overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.client-track { display: flex; width: max-content; animation: clientMarquee 45s linear infinite; }
.client-group { display: flex; align-items: center; gap: clamp(2.5rem, 6vw, 7rem); padding-right: clamp(2.5rem, 6vw, 7rem); }
.client-strip:hover .client-track { animation-play-state: paused; }
.client-logo { width: clamp(165px, 18vw, 240px); height: 86px; object-fit: contain; opacity: .78; transition: opacity .25s, transform .25s; }
.client-logo--light { filter: none; }
.client-logo:hover { opacity: 1; transform: scale(1.06); }
.testimonials { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.25); }
.testimonials figure { min-height: 300px; margin: 0; padding: 2.3rem; background: var(--magenta); display: flex; flex-direction: column; justify-content: space-between; }
.testimonials blockquote { margin: 0; font-size: clamp(1.25rem, 2vw, 2rem); line-height: 1.18; letter-spacing: -.025em; }
.testimonials figcaption { display: flex; flex-direction: column; font-size: .7rem; }
.testimonials figcaption span { color: rgba(255,255,255,.68); }

.final-cta { position: relative; min-height: 720px; padding: clamp(7rem, 14vw, 14rem) var(--pad); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.final-cta h2 { position: relative; z-index: 2; max-width: 1100px; margin: 2rem 0 3rem; font-size: clamp(3.2rem, 7.6vw, 8rem); line-height: .92; letter-spacing: -.07em; }
.final-cta__actions { position: relative; z-index: 2; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.final-cta__k { position: absolute; right: -4vw; top: 50%; width: clamp(280px, 38vw, 650px); opacity: .09; animation: finalKFloat 8s ease-in-out infinite alternate; }

.site-footer { min-height: 300px; padding: 4rem var(--pad) 2rem; display: grid; grid-template-columns: 1fr 1fr; align-content: space-between; gap: 3rem; border-top: 1px solid var(--line); }
.footer-brand p { margin: .7rem 0 0; font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { justify-self: end; display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 1rem 4rem; font-size: .75rem; font-weight: 700; }
.footer-links button { min-height: 44px; padding: 0; color: inherit; background: none; border: 0; font-size: inherit; font-weight: inherit; text-align: left; }
.footer-note { grid-column: 1/-1; margin: 0; color: #6b6366; font-size: .65rem; }
.site-footer--dark .footer-note { color: rgba(255,255,255,.68); }
.site-footer--dark { color: var(--white); background: var(--ink); border-color: rgba(255,255,255,.12); }

/* PRIVACIDADE */
.legal-page { background: var(--paper); }
.legal-hero { max-width: var(--max); margin: 0 auto; padding: clamp(10rem, 17vw, 15rem) var(--pad) clamp(5rem, 9vw, 9rem); }
.legal-hero h1 { max-width: 1100px; margin: 2rem 0; font-size: clamp(3.5rem, 8vw, 8.5rem); line-height: .92; letter-spacing: -.07em; }
.legal-hero > p:last-child { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.legal-layout { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) clamp(7rem, 12vw, 12rem); display: grid; grid-template-columns: minmax(190px, .3fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 9rem); }
.legal-nav { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.legal-nav a { min-height: 44px; padding: .8rem 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.legal-nav a:hover { color: var(--magenta); }
.legal-content { min-width: 0; }
.legal-content section { padding: 0 0 clamp(4.5rem, 8vw, 8rem); }
.legal-content h2 { max-width: 850px; margin: .65rem 0 2rem; font-size: clamp(2.3rem, 4.8vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.legal-content h3 { margin: 2.8rem 0 1rem; font-size: clamp(1.35rem, 2.2vw, 2rem); letter-spacing: -.025em; }
.legal-content p, .legal-content li { max-width: 850px; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.legal-content a { color: var(--magenta-deep); text-decoration: underline; text-underline-offset: .2em; }
.legal-content ul { max-width: 850px; padding-left: 1.2rem; }
.legal-content li + li { margin-top: .65rem; }
.legal-lead { max-width: 920px !important; color: var(--ink) !important; font-size: clamp(1.45rem, 2.7vw, 2.5rem) !important; line-height: 1.25 !important; letter-spacing: -.025em; }
.legal-number { margin: 0 !important; color: var(--magenta) !important; font-size: .68rem !important; font-weight: 900; letter-spacing: .12em; }
.legal-table-wrap { margin: 2rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: .8rem; background: var(--white); }
.legal-table-wrap table { width: 100%; min-width: 760px; border-collapse: collapse; }
.legal-table-wrap th, .legal-table-wrap td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table-wrap th { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-table-wrap td { color: var(--ink-soft); font-size: .84rem; line-height: 1.55; }
.legal-table-wrap tr:last-child td { border-bottom: 0; }
.legal-table-wrap code { color: var(--magenta-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; }
.legal-cookie-button { margin: .5rem 0 1.5rem; text-decoration: none !important; }

/* CONSENTIMENTO DE ANALYTICS */
.cookie-banner { position: fixed; z-index: 280; left: max(1rem, env(safe-area-inset-left)); right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); max-width: 1180px; margin: 0 auto; padding: 1.2rem; color: var(--white); background: rgba(35,31,32,.97); border: 1px solid rgba(255,255,255,.2); border-radius: 1rem; box-shadow: 0 24px 80px rgba(0,0,0,.35); display: flex; align-items: center; justify-content: space-between; gap: 2rem; backdrop-filter: blur(18px); }
.cookie-banner strong { display: block; margin-bottom: .25rem; font-size: 1rem; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.68); font-size: .78rem; }
.cookie-banner a { color: var(--white); text-decoration: underline; text-underline-offset: .2em; }
.cookie-banner__actions { display: flex; gap: .7rem; flex: 0 0 auto; }
.cookie-banner__actions button { min-width: 110px; min-height: 44px; padding: 0 1rem; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.45); border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.cookie-banner__actions button:last-child { background: var(--magenta); border-color: var(--magenta); }

/* FLOW */
.flow-page { background: var(--white); }
.flow-hero { position: relative; min-height: max(820px, 100svh); padding: clamp(10rem, 18vh, 13rem) var(--pad) 5rem; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); overflow: hidden; }
.flow-hero::before { content: ""; position: absolute; width: 50vw; height: 50vw; right: -20vw; top: -20vw; border-radius: 50%; background: var(--magenta); filter: blur(130px); opacity: .12; }
.flow-hero__copy { position: relative; z-index: 2; }
.product-name--hero { margin-bottom: 2.5rem; font-size: 1.5rem; }
.flow-hero h1 { margin: 1.8rem 0; font-size: clamp(3.2rem, 5.2vw, 5.8rem); line-height: .91; letter-spacing: -.07em; }
.flow-hero__intro { max-width: 650px; color: rgba(255,255,255,.62); font-size: clamp(1rem, 1.5vw, 1.28rem); }
.flow-hero .hero__actions { margin-left: 0; }
.microcopy { margin-top: 1rem; color: rgba(255,255,255,.38); font-size: .68rem; }
.flow-paths { position: absolute; z-index: 0; inset: 0; opacity: .16; }
.flow-paths i { position: absolute; height: 1px; width: 70%; right: -10%; top: calc(20% + var(--n) * 13%); background: linear-gradient(90deg, transparent, var(--magenta)); transform: rotate(-12deg); }
.flow-paths i:nth-child(1) { --n: 0; }.flow-paths i:nth-child(2) { --n: 1; }.flow-paths i:nth-child(3) { --n: 2; }.flow-paths i:nth-child(4) { --n: 3; }.flow-paths i:nth-child(5) { --n: 4; }
.flow-hero__visual { position: relative; z-index: 2; }
.app-shell { min-height: 520px; color: var(--ink); background: #f7f9fb; border: 1px solid rgba(255,255,255,.18); border-radius: 1.4rem; box-shadow: 0 45px 120px rgba(0,0,0,.42); display: grid; grid-template-columns: 95px 1fr; overflow: hidden; transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.app-side { padding: 1.4rem 1rem; background: var(--white); border-right: 1px solid #e5e5e5; display: flex; flex-direction: column; gap: 1rem; }
.app-side p { margin-bottom: 2rem; font-weight: 900; letter-spacing: -.08em; }
.app-side p b { color: var(--magenta); }.app-side p span { display: block; margin-top: .2rem; color: var(--magenta); font-size: .45rem; letter-spacing: .08em; }
.app-side i { height: 10px; border-radius: 999px; background: #ebecef; }
.app-side i.active { width: 110%; background: rgba(230,27,88,.3); }
.app-main { padding: 1.8rem; }
.app-top { display: flex; justify-content: space-between; padding-bottom: 1.8rem; border-bottom: 1px solid #e2e4e6; font-size: .72rem; }
.app-top span { color: var(--muted); }
.app-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.4rem 0; }
.app-metrics article { padding: 1rem; background: var(--white); border: 1px solid #ececee; border-radius: .8rem; }
.app-metrics small, .app-metrics strong, .app-metrics em { display: block; }
.app-metrics small { color: var(--muted); font-size: .56rem; }.app-metrics strong { margin: .45rem 0; font-size: clamp(.9rem, 1.6vw, 1.35rem); }.app-metrics em { color: #16865a; font-size: .5rem; font-style: normal; }
.app-content { display: grid; grid-template-columns: 1.5fr .5fr; gap: .8rem; }
.app-chart, .app-tasks { min-height: 220px; padding: 1rem; background: var(--white); border: 1px solid #ececee; border-radius: .8rem; }
.app-chart span, .app-tasks span { font-size: .6rem; font-weight: 800; }.app-chart svg { margin-top: 2rem; }
.app-tasks { display: flex; flex-direction: column; gap: 1rem; }.app-tasks i { height: 13px; border-radius: 999px; background: #eceef0; }.app-tasks i:nth-child(3) { width: 74%; }.app-tasks i:nth-child(4) { width: 86%; }.app-tasks i:nth-child(5) { width: 60%; }

.pain { color: var(--white); background: var(--magenta); }
.pain .section-label, .pain .section-label span { color: rgba(255,255,255,.7); }
.pain > h2 { max-width: 1200px; font-size: clamp(3.5rem, 7.6vw, 8.5rem); line-height: .91; letter-spacing: -.07em; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 6rem; background: rgba(255,255,255,.3); }
.pain-grid p { min-height: 190px; margin: 0; padding: 2rem; background: var(--magenta); font-size: clamp(1.1rem, 2vw, 1.8rem); }
.pain-answer { max-width: 800px; margin: 5rem 0 0 auto; font-size: clamp(1.4rem, 2.5vw, 2.5rem); }

.flow-benefits { color: var(--ink); background: var(--white); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.benefit-grid article { min-height: 310px; padding: clamp(1.5rem, 4vw, 4rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-grid article:nth-child(even) { border-right: 0; }.benefit-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.benefit-grid h3 { margin: 5rem 0 1rem; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.055em; }
.benefit-grid p { max-width: 470px; color: var(--muted); }
.not-accounting { max-width: 1000px; margin: 4rem auto 0; padding: 2rem; display: flex; align-items: center; gap: 2rem; background: var(--paper); border-radius: 1rem; }
.not-accounting b { font-size: 1.2rem; }.not-accounting p { margin: .5rem 0 0; color: var(--muted); }

.flow-steps > h2 { max-width: 1000px; margin-bottom: 5rem; font-size: clamp(3.5rem, 7vw, 8rem); line-height: .92; letter-spacing: -.07em; }
.flow-steps ol { list-style: none; max-width: 1050px; padding: 0; margin: 0 0 0 auto; border-top: 1px solid rgba(255,255,255,.2); }
.flow-steps li { display: grid; grid-template-columns: 6rem 1fr; gap: 2rem; padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.flow-steps li > span { color: var(--magenta); font-size: .7rem; font-weight: 800; }.flow-steps h3 { font-size: clamp(1.8rem, 3vw, 3rem); }.flow-steps p { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,.56); }

.accountants { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; background: var(--paper); }
.accountants h2 { font-size: clamp(3.2rem, 6.5vw, 7rem); line-height: .94; letter-spacing: -.065em; }.accountants__copy > p { max-width: 620px; color: var(--muted); font-size: 1.1rem; }.accountants__copy .text-link { margin-top: 2rem; }
.accountants__visual { min-height: 520px; display: flex; align-items: center; justify-content: center; gap: 1rem; border: 1px solid var(--line); border-radius: 50%; }
.accountants__visual img { width: 100px; }.accountants__visual i { flex: 1; max-width: 130px; height: 1px; background: var(--magenta); }.accountants__visual span { font-size: .62rem; font-weight: 800; letter-spacing: .1em; }

.faq { color: var(--ink); background: var(--white); }
.faq > h2 { margin-bottom: 4rem; font-size: clamp(3.5rem, 7vw, 8rem); letter-spacing: -.07em; }
.faq-list { max-width: 1050px; margin-left: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; padding: 2rem 4rem 2rem 0; position: relative; font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 700; letter-spacing: -.02em; }
.faq summary::-webkit-details-marker { display: none; }.faq summary span, .faq summary span::after { position: absolute; right: .5rem; top: 50%; width: 1.2rem; height: 1px; background: var(--ink); }.faq summary span::after { content: ""; top: 0; right: 0; transform: rotate(90deg); transition: transform .2s; }.faq details[open] summary span::after { transform: rotate(0); }.faq details p { max-width: 760px; padding: 0 4rem 2rem 0; color: var(--muted); }
.final-cta--flow { background: #181516; }

.error-page { min-height: 100vh; display: grid; place-items: center; }.error-card { max-width: 650px; padding: 3rem; text-align: center; }.error-card img { margin: 0 auto 2rem; }.error-card h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: .95; letter-spacing: -.06em; }.error-card .button { margin-top: 2rem; }


/* Product and dashboard motion */
.product-card { transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .45s; }
.has-js .product-card.in-view:hover { transform: translateY(-12px); border-color: rgba(230,27,88,.55); box-shadow: 0 36px 90px rgba(0,0,0,.28); }
.product-card .flow-preview { transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; }
.product-card--flow:hover .flow-preview { transform: perspective(900px) rotateX(0) rotateY(2deg) translateY(-6px); box-shadow: 0 38px 90px rgba(35,31,32,.28); }
.product-card.in-view .preview-metrics span { animation: cardRise .55s both; }
.product-card.in-view .preview-metrics span:nth-child(2) { animation-delay: .1s; }
.product-card.in-view .preview-metrics span:nth-child(3) { animation-delay: .2s; }
.preview-lines i { transform-origin: bottom; }
.product-card.in-view .preview-lines i { animation: barGrow .8s .2s cubic-bezier(.2,.8,.2,1) both; }
.product-card.in-view .preview-lines i:nth-child(2n) { animation-delay: .32s; }
.product-card.in-view .social-card--one { animation: fanOne .8s .1s cubic-bezier(.2,.8,.2,1) both; }
.product-card.in-view .social-card--two { animation: fanTwo .8s .2s cubic-bezier(.2,.8,.2,1) both; }
.product-card.in-view .social-card--three { animation: fanThree .8s .3s cubic-bezier(.2,.8,.2,1) both; }
.flow-hero__visual.in-view .app-metrics article { animation: cardRise .6s .15s both; }
.flow-hero__visual.in-view .app-metrics article:nth-child(2) { animation-delay: .27s; }
.flow-hero__visual.in-view .app-metrics article:nth-child(3) { animation-delay: .39s; }
.app-chart path:last-child { stroke-dasharray: 620; stroke-dashoffset: 620; }
.flow-hero__visual.in-view .app-chart path:last-child { animation: chartDraw 1.4s .45s ease-out forwards; }
.flow-hero__visual.in-view .app-chart path:first-of-type { animation: chartArea .9s .8s both; }
.flow-hero__visual.in-view .app-tasks i { animation: taskLoad .65s .45s both; transform-origin: left; }
.flow-hero__visual.in-view .app-tasks i:nth-child(3) { animation-delay: .57s; }
.flow-hero__visual.in-view .app-tasks i:nth-child(4) { animation-delay: .69s; }
.flow-hero__visual.in-view .app-tasks i:nth-child(5) { animation-delay: .81s; }
@keyframes clientMarquee { to { transform: translateX(-50%); } }
@keyframes haloDrift { from { transform: translateX(-54%) translateY(-3%) scale(.94); } to { transform: translateX(-46%) translateY(4%) scale(1.06); } }
@keyframes finalKFloat { from { transform: translateY(-53%) rotate(-15deg); } to { transform: translateY(-47%) rotate(-7deg); } }
@keyframes cardRise { from { opacity: 0; transform: translateY(18px); } }
@keyframes barGrow { from { transform: scaleY(0); } }
@keyframes fanOne { from { opacity: 0; transform: translate(42%, 25%) rotate(0); } to { opacity: 1; transform: rotate(-7deg); } }
@keyframes fanTwo { from { opacity: 0; transform: translateY(25%) rotate(0); } to { opacity: 1; transform: rotate(2deg); } }
@keyframes fanThree { from { opacity: 0; transform: translate(-42%, 25%) rotate(0); } to { opacity: 1; transform: rotate(8deg); } }
@keyframes chartDraw { to { stroke-dashoffset: 0; } }
@keyframes chartArea { from { opacity: 0; } }
@keyframes taskLoad { from { opacity: 0; transform: scaleX(.2); } }

.has-js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.has-js [data-reveal].in-view { opacity: 1; transform: none; }
.has-js .hero [data-reveal], .has-js .flow-hero [data-reveal] { opacity: 1; transform: none; }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes scrollLine { 0%,100% { transform: scaleY(.25); opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; }.desktop-nav { display: none; }.menu-button { display: flex; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: transparent; flex-direction: column; justify-content: center; gap: 6px; }.menu-button span { width: 100%; height: 1px; background: currentColor; transition: transform .2s; }.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }.menu-button--light { border-color: rgba(255,255,255,.4); }.mobile-nav { position: fixed; z-index: -1; inset: 0; padding: 8rem var(--pad) 3rem; color: var(--white); background: rgba(35,31,32,.98); display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }.mobile-nav.is-open { opacity: 1; visibility: visible; }.mobile-nav a { min-height: 44px; display: flex; align-items: center; font-size: clamp(2rem, 7vw, 4rem); line-height: 1; font-weight: 800; letter-spacing: -.05em; }.text-link, .card-link, .footer-links a { min-height: 44px; align-items: center; }.card-link, .footer-links a { display: flex; }
  .hero { padding-top: 11rem; align-items: start; }.hero__copy { width: 78%; }.hero h1 { font-size: clamp(3rem, 7.6vw, 6rem); }.k-stage { right: -7rem; top: 58%; width: 430px; opacity: .78; }.section-heading, .flow-hero { grid-template-columns: 1fr; }.product-card { min-height: 720px; }.flow-hero__visual { width: 86%; margin-left: auto; }.proof { grid-template-columns: 1fr; }.proof__number { justify-self: end; }.accountants { grid-template-columns: 1fr; }.accountants__visual { min-height: 400px; }
}

@media (max-width: 760px) {
  :root { --pad: 1.1rem; --radius: .9rem; }.site-header { min-height: 72px; gap: .7rem; }.header-cta { display: none; }.brand__tagline { font-size: .43rem; }.hero { min-height: 1080px; padding-top: 8.5rem; }.hero__copy { width: 100%; }.hero h1 { font-size: clamp(2.9rem, 13.5vw, 5rem); }.hero h1 > span:nth-child(2), .hero__intro, .hero__actions { margin-left: 0; }.hero__intro { width: 82%; }.hero__actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }.k-stage { z-index: 1; width: 350px; right: -5.5rem; top: auto; bottom: 1rem; opacity: .9; }.orbit-label--grow, .orbit-label--flow { right: 26%; }.orbit-label--time { left: 8%; }.scroll-cue { display: none; }
  .section-pad { padding-block: 6rem; }.section-label { margin-bottom: 3rem; }.section-heading { gap: 1.5rem; margin-bottom: 3.5rem; }.section-heading h2 { font-size: clamp(3rem, 14vw, 5rem); }.statement__lead, .statement__answer { font-size: clamp(2.6rem, 12vw, 4.7rem); }.statement__answer { margin: 1rem 0 0; }.outcomes, .product-grid, .testimonials, .pain-grid, .benefit-grid { grid-template-columns: 1fr; }.outcome { min-height: 230px; }.outcome h2 { margin-top: 3rem; }.product-card { min-height: 690px; }.product-card__head { align-items: flex-start; }.status-pill { text-align: center; }.preview-metrics { gap: .35rem; }.preview-metrics span { padding: .55rem; }.grow-preview { height: 220px; }.steps { margin-left: 0; }.steps li { grid-template-columns: 3rem 1fr; gap: 1rem; }.proof__number { justify-self: start; }.proof__number strong { font-size: 12rem; }.testimonials figure { min-height: 250px; }.final-cta { min-height: 650px; }.site-footer { grid-template-columns: 1fr; }.footer-links { justify-self: start; grid-template-columns: 1fr; }.footer-note { grid-column: auto; }
  .chat-cta { min-height: 54px; padding: .6rem .85rem; }.chat-cta span { font-size: .6rem; }
  .flow-hero { min-height: auto; padding: 8.5rem var(--pad) 5rem; }.flow-hero h1 { font-size: clamp(3.2rem, 14vw, 5.2rem); }.flow-hero__visual { width: 100%; margin-top: 2rem; }.app-shell { min-height: 390px; grid-template-columns: 52px 1fr; transform: none; }.app-side { padding: 1rem .5rem; }.app-side p { font-size: .6rem; }.app-main { padding: .8rem; }.app-metrics { gap: .35rem; }.app-metrics article { padding: .55rem; }.app-metrics em { display: none; }.app-content { grid-template-columns: 1fr; }.app-tasks { display: none; }.pain > h2, .flow-steps > h2, .faq > h2 { font-size: clamp(3.2rem, 14vw, 5.5rem); }.pain-grid { margin-top: 3rem; }.pain-grid p { min-height: 130px; }.pain-answer { margin-top: 3rem; }.benefit-grid article { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line) !important; }.benefit-grid article:last-child { border-bottom: 0 !important; }.benefit-grid h3 { margin-top: 3rem; }.not-accounting { align-items: flex-start; }.not-accounting img { width: 36px; }.flow-steps ol { margin: 0; }.flow-steps li { grid-template-columns: 3rem 1fr; gap: 1rem; }.accountants__visual { min-height: 300px; border-radius: var(--radius); }.accountants__visual img { width: 54px; }.accountants__visual i { max-width: 40px; }.accountants__visual span { font-size: .48rem; }
  .legal-hero { padding-top: 8.5rem; }.legal-hero h1 { font-size: clamp(3.3rem, 16vw, 5.4rem); }.legal-layout { grid-template-columns: 1fr; gap: 3rem; }.legal-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }.legal-content h2 { font-size: clamp(2.7rem, 12vw, 4.5rem); }.legal-table-wrap { margin-inline: calc(var(--pad) * -1); border-radius: 0; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 1rem; }.cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }.cookie-banner__actions button { min-width: 0; }
}

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