:root {
  --ink: #151714;
  --ink-soft: #272b27;
  --paper: #f2f0e9;
  --paper-deep: #e5e1d7;
  --acid: #c8ff3d;
  --acid-dark: #9cd711;
  --mint: #9be8c6;
  --coral: #ff705e;
  --line: rgba(21, 23, 20, 0.18);
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #696e67;
  --muted-dark: #a8ada6;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, monospace;
  --step--1: clamp(0.76rem, 0.72rem + 0.15vw, 0.84rem);
  --step-0: clamp(0.96rem, 0.9rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.2rem, 1.05rem + 0.5vw, 1.55rem);
  --step-2: clamp(1.65rem, 1.25rem + 1.2vw, 2.55rem);
  --step-3: clamp(2.3rem, 1.55rem + 2.8vw, 4.4rem);
  --step-4: clamp(3.1rem, 1.75rem + 5vw, 7.25rem);
  --shell: min(1280px, calc(100vw - 48px));
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow: 0 18px 55px rgba(21, 23, 20, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-sans); font-size: var(--step-0); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 14px; color: var(--paper); background: var(--ink); transform: translateY(-160%); transition: transform 180ms; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(96px, 12vw, 180px); }
.dark-section { color: var(--paper); background: var(--ink); }

.site-header { position: fixed; z-index: 100; top: 18px; left: 50%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: min(1360px, calc(100vw - 32px)); min-height: 68px; padding: 10px 12px 10px 20px; border: 1px solid transparent; border-radius: 999px; transform: translateX(-50%); transition: background 250ms, border 250ms, box-shadow 250ms; }
.site-header.scrolled { border-color: var(--line); background: rgba(242, 240, 233, 0.9); box-shadow: 0 10px 40px rgba(21, 23, 20, 0.08); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-size: 0.98rem; font-weight: 600; letter-spacing: -0.03em; }
.brand strong { font-weight: 800; }
.brand-mark { display: inline-flex; align-items: end; gap: 2px; width: 25px; height: 25px; padding: 5px; border-radius: 50%; color: var(--ink); background: var(--acid); }
.brand-mark i { display: block; width: 3px; border-radius: 2px; background: currentColor; }
.brand-mark i:nth-child(1) { height: 6px; }.brand-mark i:nth-child(2) { height: 13px; }.brand-mark i:nth-child(3) { height: 9px; }
.desktop-nav { display: flex; gap: 30px; font-size: 0.82rem; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 250ms; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header > .button { justify-self: end; }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 55px; padding: 0 21px; border: 1px solid transparent; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; transition: transform 200ms var(--ease), background 200ms, color 200ms; }
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--acid); }
.button-primary { color: var(--ink); background: var(--acid); }
.button-primary:hover { background: var(--mint); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { color: var(--paper); background: var(--ink); }
.button-light { color: var(--ink); background: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-block: 8px; border-bottom: 1px solid currentColor; font-size: 0.82rem; font-weight: 700; }

.hero { min-height: 100vh; padding-top: 130px; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(50px, 7vw, 110px); align-items: center; min-height: calc(100vh - 190px); padding-block: 35px 75px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 28px; color: var(--muted); font-family: var(--font-mono); font-size: 0.69rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow.light { color: var(--muted-dark); }
.status-dot, .live-label i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--acid-dark); box-shadow: 0 0 0 5px rgba(156, 215, 17, 0.14); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 28px; font-weight: 500; letter-spacing: -0.065em; line-height: 0.94; }
h1 { max-width: 850px; font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h1 em, h2 em { color: var(--muted); font-style: normal; }
.dark-section h2 em, .contact h2 em { color: var(--acid); }
.hero-lede { max-width: 650px; margin-bottom: 38px; color: var(--muted); font-size: var(--step-1); line-height: 1.45; letter-spacing: -0.025em; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-note { display: grid; grid-template-columns: 38px 1fr; gap: 18px; max-width: 420px; margin-top: 62px; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-note span { font-family: var(--font-mono); font-size: 0.68rem; }
.hero-note p { margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.55; }

.signal-stage { position: relative; min-height: 620px; padding: 25px; overflow: hidden; color: var(--paper); border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow); }
.signal-topline { position: relative; z-index: 3; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.61rem; letter-spacing: 0.1em; }
.live-label { display: inline-flex; align-items: center; gap: 8px; color: var(--acid); }
.live-label i { width: 5px; height: 5px; background: var(--acid); animation: pulse 2s infinite; }
.radar { position: absolute; top: 72px; left: 50%; width: min(480px, 85%); aspect-ratio: 1; border: 1px solid var(--line-dark); border-radius: 50%; transform: translateX(-50%); }
.radar::before, .radar::after { position: absolute; background: var(--line-dark); content: ""; }
.radar::before { top: 50%; right: 0; left: 0; height: 1px; }.radar::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar-ring { position: absolute; top: 50%; left: 50%; border: 1px solid var(--line-dark); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 28%; height: 28%; }.ring-two { width: 58%; height: 58%; }.ring-three { width: 82%; height: 82%; }
.radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 10deg, transparent 0deg 285deg, rgba(200,255,61,0.28) 350deg, transparent 360deg); animation: rotate 6s linear infinite; }
.lead-point { position: absolute; z-index: 2; width: 9px; height: 9px; border: 2px solid var(--ink); border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,112,94,0.18); }
.p-one { top: 20%; left: 34%; }.p-two { top: 39%; right: 17%; }.p-three { bottom: 22%; left: 22%; }.p-four { right: 35%; bottom: 13%; }
.business-pin { position: absolute; z-index: 4; top: 50%; left: 50%; display: grid; place-items: center; width: 65px; height: 65px; border-radius: 50%; background: var(--acid); transform: translate(-50%, -50%); box-shadow: 0 0 0 12px rgba(200,255,61,0.08); }
.business-pin span { color: var(--ink); font-family: var(--font-mono); font-size: 0.59rem; font-weight: 500; }.business-pin b { position: absolute; bottom: -8px; width: 14px; height: 14px; background: var(--acid); transform: rotate(45deg); }
.signal-route { position: absolute; right: 24px; bottom: 112px; left: 24px; display: flex; align-items: center; gap: 10px; color: var(--muted-dark); font-family: var(--font-mono); font-size: 0.55rem; }
.signal-route i { flex: 1; height: 1px; background: var(--line-dark); }.signal-route strong { color: var(--acid); font-weight: 500; }
.conversation-card { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; padding: 16px; color: var(--ink); border-radius: 10px; background: var(--paper); }
.avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-size: 0.65rem; font-weight: 800; background: var(--mint); }.conversation-card small { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.08em; }.conversation-card p { margin: 3px 0 0; font-size: 0.72rem; line-height: 1.4; }.message-check { color: #1d9c62; font-size: 0.75rem; }
.capability-rail { overflow: hidden; padding: 18px 0; border-block: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.67rem; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.rail-track { display: flex; gap: 42px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }.rail-track i { color: var(--acid-dark); font-style: normal; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr); gap: 60px; align-items: end; margin-bottom: clamp(58px, 8vw, 105px); }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -28px; }
.section-heading h2 { max-width: 760px; margin: 0; }.section-heading > p:last-child { max-width: 470px; margin: 0 0 5px; color: var(--muted); }
.split-heading { display: grid; }.split-heading .eyebrow { margin-bottom: 28px; }.split-heading > p { color: var(--muted-dark) !important; }
.centered { display: block; max-width: 800px; margin-inline: auto; text-align: center; }.centered .eyebrow { justify-content: center; margin-bottom: 28px; }.centered p:last-child { margin-inline: auto; }
.leak-list { border-top: 1px solid var(--line); }
.leak-row { position: relative; display: grid; grid-template-columns: 56px 1fr auto; gap: 30px; align-items: center; min-height: 150px; padding: 26px 0; overflow: hidden; border-bottom: 1px solid var(--line); }
.row-number, .card-index { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.07em; }.leak-row h3 { margin-bottom: 5px; font-size: var(--step-1); letter-spacing: -0.035em; }.leak-row p { max-width: 620px; margin: 0; color: var(--muted); font-size: 0.9rem; }
.route-status { padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-family: var(--font-mono); font-size: 0.57rem; letter-spacing: 0.05em; }.status-bad { color: var(--coral); }.status-warn { color: #a87313; }.status-good { color: #338a65; }
.route-line { position: absolute; right: 0; bottom: 0; left: 86px; height: 2px; overflow: hidden; }.route-line i { display: block; width: 16%; height: 100%; background: var(--acid-dark); transform: translateX(-110%); transition: transform 1.2s var(--ease); }.leak-row.is-visible .route-line i { transform: translateX(620%); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.service-card { min-height: 390px; padding: 28px; background: var(--ink); }.service-featured { grid-row: span 2; min-height: 781px; background: var(--ink-soft); }.service-card h3 { margin: 45px 0 13px; font-size: 1.45rem; line-height: 1.15; letter-spacing: -0.04em; }.service-card p { color: var(--muted-dark); font-size: 0.86rem; }.service-card ul, .price-card ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }.service-card li, .price-card li { position: relative; padding-left: 18px; font-size: 0.78rem; }.service-card li::before, .price-card li::before { position: absolute; left: 0; color: var(--acid); content: "↘"; }
.service-orbit { position: relative; display: grid; place-items: center; width: 260px; max-width: 100%; aspect-ratio: 1; margin: 80px auto 70px; border: 1px solid var(--line-dark); border-radius: 50%; }.service-orbit::before, .service-orbit::after { position: absolute; border: 1px solid var(--line-dark); border-radius: 50%; content: ""; }.service-orbit::before { inset: 20%; }.service-orbit::after { inset: 37%; background: var(--acid); }.service-orbit b { z-index: 2; color: var(--ink); font-family: var(--font-mono); font-size: 0.55rem; }.service-orbit i { position: absolute; top: 12%; left: 22%; width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,112,94,0.15); }
.mini-graphic { height: 110px; margin-top: 35px; }.bars { display: flex; gap: 8px; align-items: end; }.bars i { flex: 1; background: var(--acid); }.bars i:nth-child(1){height:25%}.bars i:nth-child(2){height:55%}.bars i:nth-child(3){height:42%}.bars i:nth-child(4){height:90%}
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }.tiles i { border: 1px solid var(--line-dark); }.tiles i:nth-child(2),.tiles i:nth-child(3){background: var(--mint)}
.funnel { display: flex; flex-direction: column; align-items: center; gap: 8px; }.funnel i { height: 25px; background: var(--acid); }.funnel i:nth-child(1){width:100%}.funnel i:nth-child(2){width:65%}.funnel i:nth-child(3){width:28%}
.chat { display: flex; flex-direction: column; gap: 9px; }.chat span { width: max-content; max-width: 95%; padding: 8px 12px; border-radius: 10px 10px 10px 2px; color: var(--ink); font-size: 0.67rem; background: var(--paper); }.chat span:last-child { align-self: end; border-radius: 10px 10px 2px 10px; background: var(--acid); }

.method-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 10vw; align-items: start; }.method-sticky { position: sticky; top: 125px; }.method-sticky > p:not(.eyebrow) { max-width: 450px; color: var(--muted); }.method-sticky .text-link { margin-top: 25px; }
.method-steps { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }.method-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; min-height: 235px; padding: 35px 0; border-bottom: 1px solid var(--line); }.method-steps > li > span { font-family: var(--font-mono); font-size: 0.7rem; }.method-steps small { color: var(--muted); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; }.method-steps h3 { margin: 24px 0 10px; font-size: var(--step-2); line-height: 1; letter-spacing: -0.05em; }.method-steps p { max-width: 550px; color: var(--muted); }

.pricing { background: var(--paper-deep); }.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }.price-card { position: relative; display: flex; flex-direction: column; min-height: 680px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }.price-card.featured { color: var(--paper); border-color: var(--ink); background: var(--ink); transform: translateY(-14px); box-shadow: var(--shadow); }.popular-label { position: absolute; top: -15px; right: 25px; padding: 7px 11px; color: var(--ink); border-radius: 999px; background: var(--acid); font-family: var(--font-mono); font-size: 0.57rem; }.plan-head { display: grid; grid-template-columns: 30px 1fr; gap: 18px; min-height: 90px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }.featured .plan-head { border-color: var(--line-dark); }.plan-head span { font-family: var(--font-mono); font-size: 0.65rem; }.plan-head p { margin: 0; color: var(--muted); font-size: 0.76rem; }.featured .plan-head p { color: var(--muted-dark); }.price-card h3 { margin: 35px 0 12px; font-size: var(--step-1); letter-spacing: -0.04em; }.price { margin-bottom: 28px; font-size: clamp(2.35rem, 4vw, 3.7rem); font-weight: 600; letter-spacing: -0.07em; line-height: 1; white-space: nowrap; }.price sup { font-family: var(--font-mono); font-size: 0.7rem; vertical-align: top; letter-spacing: 0; }.price small { color: var(--muted); font-size: 0.66rem; letter-spacing: 0; }.price-card .button { width: 100%; }.price-card ul { margin-top: 32px; border-color: var(--line); }.price-card li::before { color: var(--acid-dark); }.featured li::before { color: var(--acid); }.featured ul { border-color: var(--line-dark); }
.commercial-note { display: grid; grid-template-columns: 0.55fr 0.65fr 1.8fr; gap: 30px; align-items: center; margin-top: 30px; padding: 28px 32px; border: 1px solid var(--line); border-radius: var(--radius-md); }.commercial-note div { display: grid; }.commercial-note span { color: var(--muted); font-family: var(--font-mono); font-size: 0.57rem; letter-spacing: 0.08em; }.commercial-note strong { margin-top: 5px; font-size: 1.25rem; }.commercial-note small { color: var(--muted); font-size: 0.63rem; }.commercial-note p { margin: 0; color: var(--muted); font-size: 0.76rem; }
.comparison { margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); }.comparison summary { display: flex; justify-content: space-between; padding: 22px 28px; font-size: 0.8rem; font-weight: 700; list-style: none; cursor: pointer; }.comparison summary::-webkit-details-marker { display:none; }.table-wrap { padding: 0 28px 28px; overflow-x: auto; }table { width: 100%; min-width: 650px; border-collapse: collapse; font-size: 0.75rem; }th,td { padding: 15px; border-top: 1px solid var(--line); text-align: left; }thead th { color: var(--muted); font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.07em; text-transform: uppercase; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: center; }.fit-list { border-top: 1px solid var(--line-dark); }.fit-list div { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line-dark); }.fit-list span { color: var(--acid); font-family: var(--font-mono); font-size: 0.65rem; }.fit-list p { margin: 0; color: var(--muted-dark); }
.faq-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 9vw; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 30px; padding: 28px 0; font-size: 1rem; font-weight: 650; list-style: none; cursor: pointer; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { font-weight: 400; }.faq-list details p { max-width: 720px; padding: 0 45px 26px 0; color: var(--muted); font-size: 0.86rem; }

.contact { color: var(--paper); background: var(--ink-soft); }.contact-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 10vw; align-items: start; }.contact-copy { position: sticky; top: 125px; }.contact-copy > p:not(.eyebrow) { max-width: 430px; color: var(--muted-dark); }.whatsapp-direct { display: flex; gap: 14px; align-items: center; width: max-content; margin-top: 42px; }.whatsapp-direct > span { display: grid; place-items: center; width: 45px; height: 45px; color: var(--ink); border-radius: 50%; background: var(--acid); font-family: var(--font-mono); font-size: 0.65rem; }.whatsapp-direct div { display: grid; }.whatsapp-direct small { color: var(--muted-dark); font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.08em; }.whatsapp-direct strong { font-size: 0.85rem; }
.lead-form { display: grid; gap: 22px; padding: clamp(25px, 4vw, 48px); color: var(--ink); border-radius: var(--radius-md); background: var(--paper); }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.lead-form label { display: grid; gap: 9px; font-family: var(--font-mono); font-size: 0.61rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; }.lead-form input, .lead-form select, .lead-form textarea { width: 100%; padding: 14px 0; color: var(--ink); border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; background: transparent; font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 0; text-transform: none; transition: border 180ms; }.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-bottom-color: var(--ink); box-shadow: 0 2px 0 var(--acid-dark); }.lead-form textarea { resize: vertical; }.lead-form .optional { color: var(--muted); font-size: 0.5rem; }.form-submit { width: 100%; margin-top: 10px; border: 0; }.privacy-note { margin: -7px 0 0; color: var(--muted); font-size: 0.64rem; line-height: 1.45; text-align: center; }

.site-footer { padding: 75px 0 30px; color: var(--paper); background: var(--ink); }.footer-main { display: grid; grid-template-columns: 0.6fr 1.2fr 0.6fr; gap: 50px; align-items: center; padding-bottom: 65px; }.brand-footer .brand-mark { color: var(--ink); }.footer-main p { max-width: 520px; margin: 0; color: var(--muted-dark); font-size: var(--step-1); line-height: 1.4; letter-spacing: -0.03em; }.footer-main .button { justify-self: end; }.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 25px; color: var(--muted-dark); border-top: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 0.57rem; letter-spacing: 0.05em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }.reveal.is-visible { opacity: 1; transform: none; }
@keyframes rotate { to { transform: rotate(360deg); } } @keyframes pulse { 50% { opacity: .35; } } @keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }.site-header { grid-template-columns: 1fr auto; }.hero-grid { grid-template-columns: 1fr; padding-top: 60px; }.hero-copy { padding-top: 30px; }.signal-stage { min-height: 600px; }.service-grid { grid-template-columns: repeat(2, 1fr); }.service-featured { grid-row: auto; min-height: 520px; }.price-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }.price-card { min-height: auto; }.price-card.featured { transform: none; }.commercial-note { grid-template-columns: 1fr 1fr; }.commercial-note p { grid-column: 1 / -1; }.contact-grid { gap: 5vw; }
}
@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1280px); }
  .site-header { top: 10px; width: calc(100vw - 20px); min-height: 58px; padding-left: 15px; }.site-header .button { min-height: 38px; padding: 0 13px; font-size: 0.63rem; }.site-header .button span { display: none; }.hero { padding-top: 90px; }.hero-grid { gap: 35px; min-height: auto; padding-bottom: 55px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.hero-actions .text-link { width: max-content; }.hero-note { margin-top: 42px; }.signal-stage { min-height: 480px; padding: 18px; }.radar { top: 60px; }.signal-route { bottom: 106px; }.conversation-card { padding: 12px; }.conversation-card p { font-size: 0.62rem; }.capability-rail { padding-block: 14px; }
  .section-heading, .split-heading, .method-layout, .fit-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }.section-heading .eyebrow { margin-bottom: 0; }.section-heading > p:last-child { margin: 0; }.leak-row { grid-template-columns: 35px 1fr; gap: 16px; padding-block: 28px; }.route-status { grid-column: 2; width: max-content; }.route-line { left: 51px; }.service-grid { grid-template-columns: 1fr; }.service-card, .service-featured { min-height: 380px; }.service-featured { min-height: 610px; }.method-sticky, .contact-copy { position: static; }.method-steps li { grid-template-columns: 42px 1fr; min-height: 210px; }.commercial-note { grid-template-columns: 1fr; }.commercial-note p { grid-column: auto; padding-top: 20px; border-top: 1px solid var(--line); }.fit-grid { gap: 30px; }.field-row { grid-template-columns: 1fr; }.footer-main { grid-template-columns: 1fr; gap: 30px; }.footer-main .button { justify-self: stretch; }.footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 420px) { .brand > span:last-child { display: none; }.signal-topline span:first-child { display: none; }.signal-topline { justify-content: flex-end; }.price-card { padding: 25px 20px; }.price { font-size: 2.35rem; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }.reveal { opacity: 1; transform: none; } }

/* V2 — Art direction: Cidade em fluxo */
:root {
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 42px;
  --glass-light: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(255, 255, 255, 0.055);
}

body { background: #eeece5; }
.site-header { grid-template-columns: 1fr auto 1fr; padding: 8px 9px 8px 20px; border-color: rgba(255,255,255,.58); background: rgba(238,236,229,.78); box-shadow: 0 14px 45px rgba(10,14,12,.11); backdrop-filter: blur(20px) saturate(140%); }
.site-header.scrolled { background: rgba(238,236,229,.9); }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 8px; }
.header-cta { border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 16px; height: 1px; margin: 4px auto; background: var(--ink); }
.mobile-menu { position: fixed; z-index: 200; inset: 10px; display: flex; visibility: hidden; flex-direction: column; padding: 22px; color: var(--paper); border: 1px solid rgba(255,255,255,.15); border-radius: 28px; background: rgba(13,16,14,.96); opacity: 0; pointer-events: none; transform: translateY(-20px) scale(.98); transition: opacity 280ms var(--ease), transform 280ms var(--ease), visibility 280ms; backdrop-filter: blur(22px); }
.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; color: var(--muted-dark); border-bottom: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; }
.menu-close { width: 44px; height: 44px; padding: 0; color: var(--paper); border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; font-size: 1.55rem; line-height: 1; }
.mobile-menu > a:not(.button) { display: grid; grid-template-columns: 46px 1fr; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line-dark); font-size: clamp(1.55rem,7vw,2.4rem); line-height: 1; letter-spacing: -.04em; }
.mobile-menu > a span { color: var(--acid); font-family: var(--font-mono); font-size: .58rem; letter-spacing: 0; }
.mobile-menu .button { margin-top: auto; }
.menu-open { overflow: hidden; }

.hero { color: var(--paper); background: #0e1210; }
.hero::before { position: absolute; top: 0; right: 0; left: 0; height: 60vh; pointer-events: none; background: radial-gradient(circle at 75% 20%,rgba(118,204,172,.12),transparent 35%),radial-gradient(circle at 28% 0%,rgba(200,255,61,.09),transparent 24%); content: ""; }
.hero-grid { position: relative; z-index: 1; grid-template-columns: .9fr 1.1fr; }
.hero .eyebrow,.hero-note p { color: var(--muted-dark); }.hero h1 em { color: var(--acid); }.hero-lede { color: #c4c9c3; }.hero .text-link { color: var(--paper); }.hero-note { border-color: var(--line-dark); }.hero-note span { color: var(--acid); }
.media-stage { min-height: 680px; padding: 0; isolation: isolate; border: 1px solid rgba(255,255,255,.14); background: #0d1214; box-shadow: 0 35px 90px rgba(0,0,0,.32); }
.media-stage::after { position: absolute; z-index: 1; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(180deg,rgba(5,8,7,.1) 35%,rgba(5,8,7,.75) 100%); content: ""; }
.media-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 59% center; }
.media-stage .signal-topline { position: absolute; z-index: 3; top: 22px; right: 22px; left: 22px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(9,14,12,.34); backdrop-filter: blur(12px); }
.media-stage .signal-route { z-index: 3; bottom: 122px; }.media-stage .conversation-card { z-index: 3; right: 22px; bottom: 22px; left: 22px; border: 1px solid rgba(255,255,255,.65); background: rgba(242,240,233,.82); box-shadow: 0 12px 38px rgba(0,0,0,.24); backdrop-filter: blur(18px); }
.capability-rail { color: var(--paper); border-color: rgba(255,255,255,.1); background: #0e1210; }

.problem { background: linear-gradient(180deg,#eeece5 0%,#f6f4ed 100%); }
.services { background: #0e1210; }
.service-grid { grid-template-columns: repeat(4,1fr); gap: 14px; padding: 0; border: 0; background: transparent; }
.service-card { min-height: 380px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.035); transition: transform 280ms var(--ease), border-color 280ms, background 280ms; }
.service-card:hover { border-color: rgba(200,255,61,.38); background: rgba(255,255,255,.06); transform: translateY(-5px); }
.service-featured { grid-column: span 2; grid-row: span 2; min-height: 774px; background: linear-gradient(145deg,rgba(200,255,61,.1),rgba(255,255,255,.035) 45%); }
.service-featured .service-orbit { width: 340px; margin-block: 55px; }
.service-insight { grid-column: 1 / -1; display: grid; grid-template-columns: .45fr 1fr 1.1fr; gap: 42px; align-items: center; min-height: 220px; background: linear-gradient(90deg,rgba(155,232,198,.08),rgba(255,255,255,.025)); }
.service-insight h3 { margin: 0; }.service-insight p { margin: 0; }
.insight-window { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 13px 16px; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--muted-dark); font-family: var(--font-mono); font-size: .55rem; }
.insight-window i { height: 1px; background: linear-gradient(90deg,var(--acid),transparent); }.insight-window b { color: var(--acid); font-weight: 500; }

.method { background: #eeece5; }
.human-chapter { padding-top: 20px; background: #eeece5; }
.human-panel { position: relative; min-height: 780px; overflow: hidden; border-radius: var(--radius-xl); background: var(--ink); }
.human-media { position: absolute; inset: 0; margin: 0; }.human-media::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(10,14,12,.92) 0%,rgba(10,14,12,.65) 40%,rgba(10,14,12,.08) 78%),linear-gradient(0deg,rgba(10,14,12,.55),transparent 50%); content: ""; }.human-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.human-copy { position: absolute; z-index: 2; top: 50%; left: clamp(28px,6vw,84px); width: min(530px,45%); color: var(--paper); transform: translateY(-50%); }.human-copy > p:not(.eyebrow) { color: #c3c8c2; font-size: 1.05rem; }.human-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 34px; }.human-tags span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.07); font-family: var(--font-mono); font-size: .58rem; backdrop-filter: blur(10px); }
.floating-message { position: absolute; z-index: 3; right: 32px; bottom: 32px; display: grid; grid-template-columns: 1fr auto; gap: 3px 25px; min-width: 300px; padding: 17px 19px; color: var(--ink); border: 1px solid rgba(255,255,255,.65); border-radius: 18px; background: rgba(242,240,233,.82); box-shadow: 0 15px 55px rgba(0,0,0,.25); backdrop-filter: blur(18px); }.floating-message small { grid-column: 1; color: var(--muted); font-family: var(--font-mono); font-size: .52rem; }.floating-message strong { grid-column: 1; font-size: .8rem; }.floating-message span { grid-row: 1 / 3; grid-column: 2; align-self: center; }

.pricing { background: #dcded5; }.price-card { border-color: rgba(21,23,20,.12); border-radius: 26px; background: rgba(250,249,245,.68); backdrop-filter: blur(14px); }.price-card.featured { border-color: rgba(255,255,255,.12); background: linear-gradient(155deg,#202520,#0d110f); }.commercial-note,.comparison { border-radius: 22px; background: rgba(255,255,255,.32); }
.contact { position: relative; overflow: hidden; background: #121814; }.contact::before { position: absolute; right: -12vw; bottom: -30vw; width: 65vw; height: 65vw; border: 1px solid rgba(200,255,61,.16); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(200,255,61,.025),0 0 0 16vw rgba(200,255,61,.018); content: ""; }.contact-grid { position: relative; z-index: 1; }.lead-form { border: 1px solid rgba(255,255,255,.55); border-radius: 28px; background: rgba(242,240,233,.88); box-shadow: 0 24px 80px rgba(0,0,0,.18); backdrop-filter: blur(18px); }
.mobile-float-cta { display: none; }

@media (max-width:1050px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }.service-featured { grid-column: span 2; min-height: 620px; }.service-insight { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }.service-insight p { grid-column: 2; }.hero-grid { grid-template-columns: 1fr; }.media-stage { min-height: 640px; }
}
@media (max-width:760px) {
  body { padding-bottom: 78px; }.site-header { grid-template-columns: 1fr auto; }.desktop-nav,.header-cta { display: none; }.menu-toggle { display: block; }.header-actions { display: block; }
  .hero { padding-top: 86px; }.hero-grid { padding-top: 34px; }.hero h1 { font-size: clamp(3.25rem,15vw,5rem); }.media-stage { min-height: 520px; border-radius: 26px; }.media-stage > img { object-position: 62% center; }.media-stage .signal-topline { top: 14px; right: 14px; left: 14px; }.media-stage .signal-route { right: 15px; bottom: 109px; left: 15px; }.media-stage .conversation-card { right: 14px; bottom: 14px; left: 14px; }
  .section-pad { padding-block: 92px; }.service-grid { grid-template-columns: 1fr; gap: 12px; }.service-featured,.service-insight { grid-column: auto; grid-row: auto; }.service-featured { min-height: 580px; }.service-featured .service-orbit { width: 260px; }.service-insight { display: flex; flex-direction: column; align-items: stretch; gap: 28px; }.service-insight h3 { margin: 0; }
  .human-chapter { padding-top: 12px; }.human-panel { min-height: 720px; border-radius: 28px; }.human-media::after { background: linear-gradient(0deg,rgba(10,14,12,.94) 0%,rgba(10,14,12,.72) 45%,rgba(10,14,12,.08) 85%); }.human-media img { object-position: 64% center; }.human-copy { top: auto; right: 24px; bottom: 112px; left: 24px; width: auto; transform: none; }.human-copy h2 { font-size: clamp(2.55rem,12vw,4rem); }.human-copy .eyebrow { margin-bottom: 20px; }.human-tags { margin-top: 24px; }.floating-message { right: 18px; bottom: 18px; left: 18px; min-width: 0; }
  .mobile-float-cta { position: fixed; z-index: 90; right: 12px; bottom: max(12px,env(safe-area-inset-bottom)); left: 12px; display: flex; align-items: center; justify-content: space-between; min-height: 60px; padding: 8px 9px 8px 19px; color: var(--ink); border: 1px solid rgba(255,255,255,.6); border-radius: 999px; background: rgba(242,240,233,.88); box-shadow: 0 15px 50px rgba(0,0,0,.22); backdrop-filter: blur(18px); font-size: .72rem; font-weight: 800; text-transform: uppercase; }.mobile-float-cta span { display: flex; align-items: center; gap: 10px; }.mobile-float-cta i { width: 7px; height: 7px; border-radius: 50%; background: #4fcf8a; box-shadow: 0 0 0 4px rgba(79,207,138,.13); }.mobile-float-cta b { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--acid); }
  .site-footer { padding-bottom: 35px; }
}

/* V4 — AI with human direction; mineral palette without purple or neon */
:root {
  --acid: #c87950;
  --acid-dark: #9c5736;
  --mint: #b9d5c9;
  --coral: #c87950;
  --spectral-blue: #c7d7e2;
  --spectral-mint: #b9d5c9;
}
::selection { color: var(--ink); background: #d9b39d; }
.brand-mark,.button-primary,.popular-label,.mobile-float-cta b { background: var(--acid); }
.button-primary:hover,.button-dark:hover { color: var(--ink); background: #b9d5c9; }
.status-dot,.live-label i { background: #567665; box-shadow: 0 0 0 5px rgba(86,118,101,.12); }
.hero .status-dot { background: #567665; }
.hero h1 em { background: linear-gradient(90deg,#24495d 0%,#4f7568 52%,#a85b38 100%); background-clip: text; -webkit-background-clip: text; }
.hero-spectral { background: radial-gradient(circle,rgba(255,255,255,.88),rgba(199,215,226,.22) 48%,transparent 72%); }
.hero-route i { background: var(--acid-dark); box-shadow: 0 0 0 5px rgba(156,87,54,.1); }.hero-route b::after { background: var(--acid-dark); }.hero-route strong,.hero-float > span { color: #8c4e32; }
.rail-track i { color: #9c5736; }
.problem { background: linear-gradient(145deg,#f8f8f6 0%,#eaf0f2 52%,#eef2ed 100%); }
.problem .section-heading h2 em,.method h2 em,.pricing .section-heading h2 em { color: #9c5736; }.leak-row:hover h3 { color: #77422d; }
.services { background: linear-gradient(145deg,#0c1010,#122027 58%,#17201c); }
.service-card:nth-child(2) { background: linear-gradient(180deg,rgba(77,112,132,.2),rgba(255,255,255,.05)); }.service-card:nth-child(3) { background: linear-gradient(180deg,rgba(153,99,68,.16),rgba(255,255,255,.05)); }.service-card:nth-child(4) { background: linear-gradient(180deg,rgba(113,151,134,.15),rgba(255,255,255,.04)); }
.service-card:hover { border-color: rgba(184,213,200,.46); }.service-featured { background: linear-gradient(145deg,rgba(101,138,121,.18),rgba(255,255,255,.04) 48%); }
.service-orbit::after,.funnel i,.chat span:last-child { background: var(--acid); }.service-orbit { animation-name: orbit-breathe-v4; }.insight-window::after { background: #c87950; box-shadow: 0 0 10px rgba(200,121,80,.28); }
.method { background: linear-gradient(180deg,#e8eff2,#f5f6f3); }
.pricing { background: linear-gradient(145deg,#0b0f10 0%,#102029 55%,#19221e 100%); }.pricing .section-heading h2 em { color: #d39a7b; }.price-card.featured { border-color: rgba(184,213,200,.38); background: linear-gradient(155deg,rgba(65,103,88,.32),rgba(255,255,255,.06)); }.value-item > span { color: #d39a7b; }
.dark-section h2 em,.contact h2 em,.fit-list span { color: #d39a7b; }
.contact::before { border-color: rgba(200,121,80,.2); box-shadow: 0 0 0 8vw rgba(200,121,80,.025),0 0 0 16vw rgba(95,127,113,.02); }
.whatsapp-direct > span { background: var(--acid); }.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus { box-shadow: 0 2px 0 var(--acid-dark); }
.mobile-menu > a span { color: #d39a7b; }.mobile-float-cta i { background: #567665; box-shadow: 0 0 0 4px rgba(86,118,101,.13); }
@keyframes orbit-breathe-v4 { 50% { box-shadow: 0 0 42px rgba(95,127,113,.13); transform: scale(1.025); } }

/* V3 — luminous route system */
:root {
  --paper: #f7f7f9;
  --paper-deep: #eceef5;
  --ink: #0d1110;
  --ink-soft: #151918;
  --muted: #62676a;
  --spectral-blue: #c8dcff;
  --spectral-lilac: #d9d1ff;
  --spectral-mint: #c9f4e5;
}

body { background: var(--paper); }
.site-header { color: var(--ink); border-color: rgba(255,255,255,.86); background: rgba(247,247,249,.72); }
.site-header.scrolled { background: rgba(247,247,249,.9); }
.brand > span:last-child { display: inline !important; }

.hero { position: relative; min-height: 100svh; padding-top: 104px; overflow: hidden; color: var(--ink); background: #f8f9fc; }
.hero::before { z-index: 1; height: 100%; background: linear-gradient(180deg,rgba(250,250,252,.42) 0%,rgba(250,250,252,.08) 47%,rgba(242,244,249,.48) 100%); }
.hero-world { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transform: scale(1.025); animation: world-breathe 10s var(--ease) infinite alternate; }
.hero-spectral { position: absolute; z-index: 1; top: 5%; left: 50%; width: 58vw; height: 32vw; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.82),rgba(215,225,255,.2) 45%,transparent 72%); filter: blur(22px); transform: translateX(-50%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; place-items: center; min-height: calc(100svh - 162px); padding: 58px 0 125px; text-align: center; }
.hero-copy { z-index: 2; display: flex; align-items: center; flex-direction: column; max-width: 1050px; }
.hero .eyebrow { color: #4f5655; }.hero .status-dot { background: #79b300; }
.hero h1 { max-width: 1000px; margin-bottom: 26px; font-size: clamp(4.5rem,9.4vw,9.5rem); color: var(--ink); line-height: .82; letter-spacing: -.085em; text-wrap: balance; }
.hero h1 em { color: transparent; background: linear-gradient(90deg,#4d79c8 2%,#9b70d6 40%,#81b585 70%,#7eb300 100%); background-clip: text; -webkit-background-clip: text; }
.hero-lede { max-width: 680px; margin-bottom: 30px; color: #414746; font-size: clamp(1rem,1.35vw,1.24rem); }
.hero-actions { justify-content: center; }.hero .text-link { color: var(--ink); }
.hero-route { display: flex; align-items: center; gap: 12px; width: min(560px,100%); margin-top: 36px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.88); border-radius: 999px; background: rgba(255,255,255,.5); box-shadow: 0 12px 40px rgba(57,70,92,.08); backdrop-filter: blur(18px); font-family: var(--font-mono); font-size: .57rem; text-transform: uppercase; }
.hero-route span { display: flex; align-items: center; gap: 8px; white-space: nowrap; }.hero-route i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid-dark); box-shadow: 0 0 0 5px rgba(156,215,17,.13); }.hero-route b { flex: 1; height: 1px; overflow: hidden; background: rgba(13,17,16,.14); }.hero-route b::after { display: block; width: 35%; height: 100%; background: var(--acid-dark); content: ""; animation: route-scan 2.8s ease-in-out infinite; }.hero-route strong { color: #669108; font-weight: 500; white-space: nowrap; }
.hero-float { position: absolute; z-index: 3; display: grid; grid-template-columns: 1fr auto; gap: 2px 24px; min-width: 220px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.85); border-radius: 18px; background: rgba(255,255,255,.45); box-shadow: 0 18px 60px rgba(57,70,92,.12); text-align: left; backdrop-filter: blur(18px) saturate(135%); animation: float-card 5s ease-in-out infinite; }
.hero-float small { color: var(--muted); font-family: var(--font-mono); font-size: .5rem; letter-spacing: .08em; }.hero-float strong { font-size: .77rem; }.hero-float > span { grid-row: 1/3; grid-column: 2; align-self: center; color: #699a09; font-family: var(--font-mono); font-size: .68rem; }.hero-float-left { bottom: 150px; left: 5vw; }.hero-float-right { right: 5vw; bottom: 190px; animation-delay: -2.2s; }
.capability-rail { position: relative; z-index: 4; color: var(--ink); border-color: rgba(13,17,16,.12); background: rgba(248,249,252,.82); backdrop-filter: blur(16px); }
.rail-track { --rail-gap: 42px; gap: var(--rail-gap); animation: marquee-v3 25s linear infinite; }.rail-group { display: flex; align-items: center; flex-shrink: 0; gap: 42px; }.rail-track i { color: #77aa0b; }

.problem { background: linear-gradient(145deg,#f8f8fb 0%,#edf1fb 52%,#f1edfb 100%); }
.problem .section-heading h2 em,.method h2 em,.pricing .section-heading h2 em { color: #7b72aa; }
.leak-row { border-color: rgba(63,71,84,.16); }.leak-row:hover h3 { color: #6550b3; }
.services { background: linear-gradient(145deg,#0c1010,#121924 58%,#181522); }
.service-card { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); box-shadow: inset 0 1px rgba(255,255,255,.07); backdrop-filter: blur(14px); }
.service-card:nth-child(2) { background: linear-gradient(180deg,rgba(118,157,226,.16),rgba(255,255,255,.05)); }.service-card:nth-child(3) { background: linear-gradient(180deg,rgba(191,143,223,.14),rgba(255,255,255,.05)); }.service-card:nth-child(4) { background: linear-gradient(180deg,rgba(169,238,214,.1),rgba(255,255,255,.04)); }
.service-card:hover { border-color: rgba(201,218,255,.48); }
.service-media-card { display: flex; flex-direction: column; padding: 14px 14px 28px; }.service-media-card .card-index { margin: 14px; }.bento-media { position: relative; height: 205px; margin: 18px 0 28px; overflow: hidden; border-radius: 16px; }.bento-media::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(8,12,11,.45)); content: ""; }.bento-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }.service-media-card:hover .bento-media img { transform: scale(1.07); }.service-media-card h3,.service-media-card p { margin-inline: 14px; }
.service-orbit { animation: orbit-breathe 5s ease-in-out infinite; }.service-orbit i { animation: orbit-dot 8s linear infinite; transform-origin: 75px 90px; }.funnel i { animation: funnel-flow 2.4s ease-in-out infinite; }.funnel i:nth-child(2){animation-delay:.2s}.funnel i:nth-child(3){animation-delay:.4s}.chat span { animation: chat-rise 3.4s ease-in-out infinite; }.chat span:last-child { animation-delay:.7s; }.insight-window::after { position: absolute; top: 3px; bottom: 3px; left: 0; width: 2px; border-radius: 3px; background: var(--acid); box-shadow: 0 0 15px var(--acid); content:""; animation: insight-scan 3.8s ease-in-out infinite; }

.method { background: linear-gradient(180deg,#edf1fb,#f6f6f8); }.human-chapter { background: #f6f6f8; }

.pricing { color: var(--paper); background: linear-gradient(145deg,#0b0f10 0%,#111721 55%,#17131e 100%); }.pricing .section-heading > p:last-child { color: var(--muted-dark); }.pricing .eyebrow { color: #aeb4bc; }.pricing .section-heading h2 em { color: #b9adff; }
.value-stage { display: grid; grid-template-columns: .92fr 1.08fr; gap: 18px; margin-bottom: 70px; }.value-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.value-intro,.value-item { border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.045); backdrop-filter: blur(12px); }.value-intro { grid-column: 1/-1; min-height: 190px; padding: 30px; }.value-intro span,.compare-label { color: #aeb4bc; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; }.value-intro h3 { max-width: 520px; margin: 45px 0 0; font-size: clamp(1.45rem,2.4vw,2.25rem); line-height: 1.08; letter-spacing: -.05em; }.value-item { display: grid; grid-template-columns: 30px 1fr; gap: 12px; min-height: 150px; padding: 25px; }.value-item > span { color: #b8e34a; font-family: var(--font-mono); font-size: .6rem; }.value-item strong { display: block; margin-bottom: 8px; font-size: .9rem; }.value-item p { margin: 0; color: #aeb4bc; font-size: .72rem; line-height: 1.5; }.value-pair { display: grid; grid-column: 1/-1; grid-template-columns: 1fr 1fr; gap: 12px; }
.plan-spotlight { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: rgba(255,255,255,.06); box-shadow: 0 30px 90px rgba(0,0,0,.25); }.spotlight-media { position: relative; height: 250px; overflow: hidden; }.spotlight-media::after { position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,14,15,.35),transparent 60%);content:""}.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }.spotlight-media > span { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 8px 12px; color: var(--ink); border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: rgba(255,255,255,.55); font-family: var(--font-mono); font-size: .55rem; backdrop-filter: blur(10px); }.spotlight-body { position: relative; padding: 34px; }.spotlight-body .popular-label { top: 28px; }.spotlight-kicker { margin-bottom: 20px; color: #c5c9cf; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }.spotlight-price { margin-bottom: 24px; font-size: clamp(3.6rem,6vw,6.5rem); font-weight: 650; line-height: .9; letter-spacing: -.08em; }.spotlight-price sup { font-family: var(--font-mono); font-size: .8rem; letter-spacing: 0; vertical-align: top; }.spotlight-price small { color: #9ba1a8; font-size: .7rem; letter-spacing: 0; }.spotlight-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }.spotlight-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #c6cad0; font-family: var(--font-mono); font-size: .53rem; }.spotlight-body .button { width: 100%; }.spotlight-term { display: block; margin-top: 15px; color: #92989f; font-size: .58rem; line-height: 1.4; text-align: center; }
.compare-label { margin: 0 0 22px; text-align: center; }.price-card { color: var(--paper); border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.055); box-shadow: inset 0 1px rgba(255,255,255,.05); }.price-card.featured { border-color: rgba(200,220,255,.38); background: linear-gradient(155deg,rgba(104,126,186,.24),rgba(255,255,255,.06)); }.price-card .button-outline { color: var(--paper); border-color: rgba(255,255,255,.5); }.price-card .button-outline:hover { color: var(--ink); background: var(--paper); }.commercial-note,.comparison { color: var(--paper); border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.05); }.commercial-note span,.commercial-note small,.commercial-note p,thead th { color: #aeb4bc; }.comparison th,.comparison td { border-color: rgba(255,255,255,.12); }
.pricing .plan-head,.pricing .price-card ul { border-color: rgba(255,255,255,.13); }.pricing .plan-head p,.pricing .price small { color: #aeb4bc; }

@keyframes world-breathe { to { transform: scale(1.055) translateY(-4px); } }
@keyframes float-card { 50% { transform: translateY(-10px); } }
@keyframes route-scan { 0% { transform: translateX(-110%); } 100% { transform: translateX(310%); } }
@keyframes marquee-v3 { to { transform: translateX(calc(-50% - var(--rail-gap)/2)); } }
@keyframes orbit-breathe { 50% { box-shadow: 0 0 55px rgba(200,255,61,.12); transform: scale(1.025); } }
@keyframes orbit-dot { to { transform: rotate(360deg); } }
@keyframes funnel-flow { 50% { opacity: .4; transform: scaleX(.88); } }
@keyframes chat-rise { 45%,60% { transform: translateY(-7px); } }
@keyframes insight-scan { 0%,100% { left: 2%; opacity: .25; } 50% { left: 97%; opacity: 1; } }

@media (max-width:1050px) {
  .hero h1 { font-size: clamp(4.2rem,11vw,7.4rem); }.hero-float { display: none; }.value-stage { grid-template-columns: 1fr; }.value-stack { grid-template-columns: 1fr 1fr; }
}
@media (max-width:760px) {
  .site-header .brand > span:last-child { display: inline !important; }.site-header .brand { font-size: .83rem; }.site-header .brand-mark { flex: 0 0 auto; }
  .hero { min-height: 100svh; padding-top: 84px; }.hero-grid { min-height: calc(100svh - 140px); padding: 54px 0 115px; }.hero-world { object-position: 54% bottom; opacity: .9; }.hero-spectral { top: 10%; width: 110vw; height: 90vw; }.hero h1 { margin-bottom: 24px; font-size: clamp(3.55rem,17vw,5.5rem); line-height: .84; }.hero-lede { max-width: 34ch; font-size: .97rem; line-height: 1.5; }.hero-actions { width: 100%; }.hero-actions .button { width: 100%; }.hero-actions .text-link { display: none; }.hero-route { width: 100%; margin-top: 26px; padding-inline: 12px; }.hero-route b { min-width: 12px; }.hero-route span,.hero-route strong { font-size: .48rem; }
  .capability-rail { margin-top: 0; }.rail-track { --rail-gap: 28px; }.rail-group { gap: 28px; }
  .service-media-card { min-height: 500px; }.bento-media { height: 260px; }.value-stage { gap: 12px; }.value-stack,.value-pair { grid-template-columns: 1fr; }.value-intro { min-height: 170px; }.value-item { min-height: 125px; }.plan-spotlight { border-radius: 24px; }.spotlight-media { height: 210px; }.spotlight-body { padding: 27px 22px; }.spotlight-price { font-size: 3.65rem; }.pricing .section-heading { text-align: left; }.pricing .section-heading .eyebrow { justify-content: flex-start; }
}

/* Final palette authority: mineral blue, sage and copper */
:root { --acid:#c87950; --acid-dark:#9c5736; --mint:#b9d5c9; --coral:#c87950; --spectral-blue:#c7d7e2; --spectral-mint:#b9d5c9; }
::selection { color:var(--ink); background:#d9b39d; }
.brand-mark,.button-primary,.popular-label,.mobile-float-cta b { background:var(--acid); }
.button-primary:hover,.button-dark:hover { color:var(--ink); background:#b9d5c9; }
.status-dot,.live-label i,.hero .status-dot { background:#567665; box-shadow:0 0 0 5px rgba(86,118,101,.12); }
.hero h1 em { background:linear-gradient(90deg,#24495d 0%,#4f7568 52%,#a85b38 100%); background-clip:text; -webkit-background-clip:text; }
.hero-spectral { background:radial-gradient(circle,rgba(255,255,255,.88),rgba(199,215,226,.22) 48%,transparent 72%); }
.hero-route i { background:var(--acid-dark); box-shadow:0 0 0 5px rgba(156,87,54,.1); }.hero-route b::after { background:var(--acid-dark); }.hero-route strong,.hero-float>span { color:#8c4e32; }
.rail-track i { color:#9c5736; }
.problem { background:linear-gradient(145deg,#f8f8f6 0%,#eaf0f2 52%,#eef2ed 100%); }.problem .section-heading h2 em,.method h2 em { color:#9c5736; }.leak-row:hover h3 { color:#77422d; }
.services { background:linear-gradient(145deg,#0c1010,#122027 58%,#17201c); }.service-card:nth-child(2) { background:linear-gradient(180deg,rgba(77,112,132,.2),rgba(255,255,255,.05)); }.service-card:nth-child(3) { background:linear-gradient(180deg,rgba(153,99,68,.16),rgba(255,255,255,.05)); }.service-card:nth-child(4) { background:linear-gradient(180deg,rgba(113,151,134,.15),rgba(255,255,255,.04)); }.service-card:hover { border-color:rgba(184,213,200,.46); }.service-featured { background:linear-gradient(145deg,rgba(101,138,121,.18),rgba(255,255,255,.04) 48%); }
.service-orbit::after,.funnel i,.chat span:last-child { background:var(--acid); }.service-orbit { animation-name:orbit-breathe-v4; }.insight-window::after { background:#c87950; box-shadow:0 0 10px rgba(200,121,80,.28); }
.method { background:linear-gradient(180deg,#e8eff2,#f5f6f3); }.pricing { background:linear-gradient(145deg,#0b0f10 0%,#102029 55%,#19221e 100%); }.pricing .section-heading h2 em { color:#d39a7b; }.price-card.featured { border-color:rgba(184,213,200,.38); background:linear-gradient(155deg,rgba(65,103,88,.32),rgba(255,255,255,.06)); }.value-item>span { color:#d39a7b; }
.dark-section h2 em,.contact h2 em,.fit-list span { color:#d39a7b; }.contact::before { border-color:rgba(200,121,80,.2); box-shadow:0 0 0 8vw rgba(200,121,80,.025),0 0 0 16vw rgba(95,127,113,.02); }.whatsapp-direct>span { background:var(--acid); }.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus { box-shadow:0 2px 0 var(--acid-dark); }.mobile-menu>a span { color:#d39a7b; }.mobile-float-cta i { background:#567665; box-shadow:0 0 0 4px rgba(86,118,101,.13); }
@keyframes orbit-breathe-v4 { 50% { box-shadow:0 0 42px rgba(95,127,113,.13); transform:scale(1.025); } }

/* V5 — reference-calibrated neutral system */
:root {
  --paper:#f3f4f6;
  --paper-deep:#f5f5f3;
  --ink:#111318;
  --ink-soft:#171a20;
  --muted:#686b73;
  --acid:#6d88e8;
  --acid-dark:#3f5fbf;
  --mint:#b9d5cc;
  --coral:#6d88e8;
}
body { color:var(--ink); background:#f3f4f6; }
::selection { color:var(--ink); background:#cbd7ff; }
.site-header { border-color:rgba(255,255,255,.9); background:rgba(243,244,246,.78); }.site-header.scrolled { background:rgba(243,244,246,.92); }
.brand-mark,.button-primary,.popular-label,.mobile-float-cta b { background:#6d88e8; }
.button-primary:hover,.button-dark:hover { color:var(--ink); background:#b9d5cc; }
.status-dot,.live-label i,.hero .status-dot { background:#5f8176; box-shadow:0 0 0 5px rgba(95,129,118,.12); }
.hero { background:#fafafb; }.hero h1 em { background:linear-gradient(90deg,#315e83 0%,#5b79d4 52%,#4f7d72 100%); background-clip:text; -webkit-background-clip:text; }.hero-spectral { background:radial-gradient(circle,rgba(255,255,255,.9),rgba(204,220,235,.22) 48%,transparent 72%); }.hero-route i { background:#3f5fbf; box-shadow:0 0 0 5px rgba(63,95,191,.1); }.hero-route b::after { background:#3f5fbf; }.hero-route strong,.hero-float>span { color:#315e83; }
.capability-rail { background:rgba(250,250,251,.88); }.rail-track { --rail-gap:0px; gap:0; animation-duration:30s; }.rail-group { min-width:100vw; justify-content:space-around; gap:32px; padding-inline:30px; }.rail-track i { color:#5270c6; }
.problem { background:linear-gradient(145deg,#fafafb 0%,#eef2f5 58%,#f5f5f3 100%); }.problem .section-heading h2 em,.method h2 em { color:#315e83; }.leak-row:hover h3 { color:#315e83; }
.services { background:linear-gradient(145deg,#0a0b0e,#101821 58%,#12201d); }.service-card:nth-child(2) { background:linear-gradient(180deg,rgba(83,118,160,.22),rgba(255,255,255,.05)); }.service-card:nth-child(3) { background:linear-gradient(180deg,rgba(92,125,115,.18),rgba(255,255,255,.05)); }.service-card:nth-child(4) { background:linear-gradient(180deg,rgba(109,136,232,.13),rgba(255,255,255,.04)); }.service-card:hover { border-color:rgba(165,187,230,.48); }.service-featured { background:linear-gradient(145deg,rgba(74,111,132,.2),rgba(255,255,255,.04) 48%); }.service-orbit::after,.funnel i,.chat span:last-child { background:#6d88e8; }.insight-window::after { background:#7d98eb; box-shadow:0 0 8px rgba(109,136,232,.25); }
.dark-section h2 em,.contact h2 em,.fit-list span { color:#9eb2ef; }
.method { background:linear-gradient(180deg,#eef2f5,#fafafb); }.human-chapter { background:#fafafb; }
.contact::before { border-color:rgba(109,136,232,.18); box-shadow:0 0 0 8vw rgba(109,136,232,.02),0 0 0 16vw rgba(95,129,118,.018); }.whatsapp-direct>span { background:#6d88e8; }.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus { box-shadow:0 2px 0 #3f5fbf; }.mobile-menu>a span { color:#9eb2ef; }.mobile-float-cta i { background:#5f8176; box-shadow:0 0 0 4px rgba(95,129,118,.13); }

.ai-system { background:#f5f5f3; }.ai-system .section-heading h2 em { color:#315e83; }.ai-system-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:14px; }.ai-core { position:relative; display:flex; min-height:650px; padding:34px; overflow:hidden; flex-direction:column; justify-content:flex-end; color:#fff; border-radius:32px; background:linear-gradient(145deg,#0a0b0e,#15242c); }.ai-core::before { position:absolute; inset:0; background:radial-gradient(circle at 50% 38%,rgba(109,136,232,.2),transparent 32%),radial-gradient(circle at 20% 80%,rgba(95,129,118,.13),transparent 32%); content:""; }.ai-core-head { position:absolute; z-index:2; top:28px; right:28px; left:28px; display:flex; justify-content:space-between; color:#aeb3bd; font-family:var(--font-mono); font-size:.54rem; letter-spacing:.08em; }.ai-core-head i { width:7px; height:7px; border-radius:50%; background:#7c9a8f; }.ai-core h3,.ai-core p { position:relative; z-index:2; }.ai-core h3 { max-width:520px; margin-bottom:16px; font-size:clamp(2rem,3.5vw,3.7rem); line-height:1; letter-spacing:-.06em; }.ai-core p { max-width:520px; margin:0; color:#b7bcc4; }
.ai-orbit { position:absolute; top:48%; left:50%; display:grid; place-items:center; width:min(360px,70%); aspect-ratio:1; border:1px solid rgba(255,255,255,.15); border-radius:50%; transform:translate(-50%,-50%); animation:ai-breathe 5s ease-in-out infinite; }.ai-orbit::before,.ai-orbit::after { position:absolute; border:1px solid rgba(255,255,255,.12); border-radius:50%; content:""; }.ai-orbit::before { inset:18%; }.ai-orbit::after { inset:36%; background:rgba(109,136,232,.14); }.ai-orbit span { z-index:2; font-family:var(--font-mono); font-size:.72rem; }.ai-orbit i { position:absolute; width:10px; height:10px; border-radius:50%; background:#a7b9ed; }.ai-orbit i:nth-of-type(1){top:8%;left:48%}.ai-orbit i:nth-of-type(2){top:48%;right:8%}.ai-orbit i:nth-of-type(3){bottom:10%;left:30%}.ai-orbit i:nth-of-type(4){top:31%;left:9%}
.ai-capabilities { display:grid; grid-template-columns:1fr 1fr; gap:14px; }.ai-cap { min-height:205px; padding:26px; border:1px solid #dbdde1; border-radius:22px; background:rgba(255,255,255,.68); transition:transform 280ms var(--ease),background 280ms; }.ai-cap:hover { background:#fff; transform:translateY(-4px); }.ai-cap>span { color:#5270c6; font-family:var(--font-mono); font-size:.58rem; }.ai-cap h3 { margin:46px 0 10px; font-size:1.05rem; letter-spacing:-.03em; }.ai-cap p { margin:0; color:#72757d; font-size:.76rem; }

.pricing { color:#fff; background:#0a0b0e; }.pricing .section-heading h2 em { color:#a9b9e7; }.offers { display:grid; gap:28px; }.offer-panel { display:grid; grid-template-columns:.92fr 1.08fr; min-height:680px; overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:30px; background:rgba(255,255,255,.035); }.offer-featured { border-color:rgba(154,179,235,.34); box-shadow:0 32px 100px rgba(26,49,88,.22); }.offer-value { display:flex; padding:36px; flex-direction:column; border-right:1px solid rgba(255,255,255,.12); }.offer-title { position:relative; }.offer-title>span { color:#959aa4; font-family:var(--font-mono); font-size:.56rem; letter-spacing:.09em; }.offer-title h3 { margin:44px 0 13px; font-size:clamp(2.2rem,4vw,4.3rem); line-height:.95; letter-spacing:-.07em; }.offer-title p { max-width:440px; color:#aeb3bc; }.recommend-pill { position:absolute; top:-4px; right:0; padding:7px 11px; color:#111318; border-radius:999px; background:#b9d5cc; font-family:var(--font-mono); font-size:.52rem; }.offer-items { display:grid; grid-template-columns:1fr 1fr; gap:1px; margin-top:auto; border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.1); }.offer-items>div { min-height:125px; padding:20px; background:#101216; }.offer-items b { display:block; margin-bottom:7px; font-size:.78rem; }.offer-items span { display:block; color:#9297a0; font-size:.67rem; line-height:1.45; }
.offer-purchase { display:grid; grid-template-rows:280px 1fr; }.offer-visual { position:relative; display:flex; overflow:hidden; align-items:flex-start; padding:24px; background:linear-gradient(145deg,#d7e2ee,#f5f7f8); }.offer-visual>span { position:relative; z-index:2; padding:8px 11px; color:#111318; border:1px solid rgba(255,255,255,.75); border-radius:999px; background:rgba(255,255,255,.55); font-family:var(--font-mono); font-size:.52rem; backdrop-filter:blur(10px); }.offer-visual img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }.visual-presence { background:linear-gradient(145deg,#d7e2ee,#edf3f1); }.mini-route { position:absolute; right:9%; bottom:18%; left:9%; display:flex; justify-content:space-between; border-bottom:2px solid #5473a0; }.mini-route i { width:20px; height:20px; margin-bottom:-11px; border:5px solid #e8edf2; border-radius:50%; background:#5473a0; }.visual-scale { background:linear-gradient(145deg,#cbd7e4,#e9efed); }.scale-wave { position:absolute; right:8%; bottom:18%; left:8%; display:flex; gap:10px; align-items:end; height:130px; }.scale-wave i { flex:1; border-radius:8px 8px 0 0; background:linear-gradient(180deg,#6280bd,#315e83); animation:scale-wave 2.8s ease-in-out infinite; }.scale-wave i:nth-child(1){height:25%}.scale-wave i:nth-child(2){height:44%;animation-delay:.15s}.scale-wave i:nth-child(3){height:63%;animation-delay:.3s}.scale-wave i:nth-child(4){height:78%;animation-delay:.45s}.scale-wave i:nth-child(5){height:100%;animation-delay:.6s}
.offer-buy { display:flex; padding:34px; flex-direction:column; }.offer-price { margin-bottom:25px; font-size:clamp(3.5rem,5.5vw,6.3rem); font-weight:650; line-height:.85; letter-spacing:-.08em; }.offer-price sup { font-family:var(--font-mono); font-size:.75rem; letter-spacing:0; vertical-align:top; }.offer-price small { color:#9297a0; font-size:.68rem; letter-spacing:0; }.offer-tags { display:flex; gap:7px; flex-wrap:wrap; margin-bottom:27px; }.offer-tags span { padding:7px 10px; border:1px solid rgba(255,255,255,.14); border-radius:999px; color:#b8bdc5; font-family:var(--font-mono); font-size:.52rem; }.offer-buy .button { width:100%; margin-top:auto; }.offer-buy>small { margin-top:13px; color:#858a93; font-size:.57rem; line-height:1.4; text-align:center; }.commercial-note,.comparison { margin-top:20px; }
@keyframes ai-breathe { 50% { box-shadow:0 0 70px rgba(109,136,232,.15); transform:translate(-50%,-50%) scale(1.035); } }
@keyframes scale-wave { 50% { opacity:.55; transform:scaleY(.88); transform-origin:bottom; } }

@media(max-width:1050px){.ai-system-grid,.offer-panel{grid-template-columns:1fr}.ai-core{min-height:580px}.offer-value{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}.offer-panel{min-height:0}}
@media(max-width:760px){.rail-group{min-width:145vw;gap:25px;padding-inline:18px}.ai-system-grid{gap:12px}.ai-core{min-height:610px;padding:25px}.ai-capabilities{grid-template-columns:1fr}.ai-cap{min-height:165px}.offer-panel{border-radius:24px}.offer-value{padding:27px 21px}.offer-items{grid-template-columns:1fr}.offer-items>div{min-height:100px}.offer-purchase{grid-template-rows:220px 1fr}.offer-buy{padding:28px 21px}.offer-price{font-size:3.6rem}.recommend-pill{position:static;width:max-content;margin-top:16px}.offer-title h3{margin-top:28px}}

/* V6 — reference typography, palette, glass and interaction contracts */
:root {
  --font-sans:"Helvetica Now Text","Helvetica Neue",Helvetica,Satoshi,Arial,sans-serif;
  --font-mono:"Helvetica Now Text","Helvetica Neue",Helvetica,Satoshi,Arial,sans-serif;
  --paper:#f3f4f6;
  --paper-deep:#f5f5f3;
  --ink:#131720;
  --ink-soft:#111318;
  --line:#dbdde1;
  --muted:#85868c;
  --spectrum:linear-gradient(90deg,#f08a4f,#e26fb8,#8b5cf6,#5b7cfa,#38bdf8,#34b579,#f08a4f);
}
body { font-family:var(--font-sans); font-size:16px; font-weight:400; line-height:24px; }
h1,h2,h3 { font-weight:400; }
h1 { font-size:clamp(4rem,6.02vw,77.082px); line-height:1.05; letter-spacing:-.03em; }
h2 { font-size:clamp(3.2rem,5.5vw,70.4px); line-height:1.04; letter-spacing:-.025em; }
.service-card h3,.method-steps h3,.offer-title h3 { font-weight:400; }
.eyebrow,.card-index,.row-number,.offer-title>span,.compare-label { font-family:var(--font-sans); font-size:11px; line-height:16.5px; letter-spacing:.02em; }
.button { min-height:56px; border-radius:9999px; font-family:var(--font-sans); font-size:11px; font-weight:400; line-height:16.5px; letter-spacing:.02em; text-transform:none; }.button span { transition:transform 180ms ease; }.button:hover span { transform:translate(3px,-2px); }
.button-primary { color:#111318; border:1px solid transparent; background:linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)) padding-box,linear-gradient(120deg,#f7c8e4,#c9ecc4,#bcd7ff,#e8c9f4,#f7c8e4) border-box; background-size:100% 100%,240% 100%; animation:spectrum-border 7s linear infinite; }.button-primary:hover { color:#111318; background:linear-gradient(#fff,#fff) padding-box,var(--spectrum) border-box; }
.brand-mark { background:var(--spectrum); background-size:250% 100%; animation:spectrum-border 8s linear infinite; }
.site-header { border:1px solid rgba(0,0,0,.07); background:rgba(255,255,255,.55); box-shadow:none; backdrop-filter:blur(40px); }.site-header.scrolled { border-color:rgba(0,0,0,.08); background:rgba(255,255,255,.7); }.desktop-nav { font-size:11px; font-weight:400; letter-spacing:.02em; }.header-cta { min-height:48px; color:#fff; background:#111318; }
.hero h1 em { background:var(--spectrum); background-size:220% 100%; background-clip:text; -webkit-background-clip:text; animation:spectrum-text 8s linear infinite; }.hero-spectral { background:radial-gradient(62% 54% at 50% 46%,rgba(250,250,251,.6) 0%,rgba(250,250,251,.18) 55%,transparent 100%); }.hero-route,.hero-float { border-color:rgba(0,0,0,.07); background:rgba(255,255,255,.55); backdrop-filter:blur(40px); }.hero-route i { background:#5b7cfa; box-shadow:0 0 0 5px rgba(91,124,250,.1); }.hero-route b::after { background:linear-gradient(90deg,#5b7cfa,#38bdf8,#34b579); }.hero-route strong,.hero-float>span { color:#5b7cfa; }
.capability-rail { border-color:rgba(0,0,0,.06); background:rgba(250,250,251,.82); backdrop-filter:blur(24px); }.rail-track i { color:#8b5cf6; }
.problem { background:#fafafb; }.problem .section-heading h2 em,.method h2 em,.ai-system .section-heading h2 em { color:#85868c; }
.service-card,.ai-cap,.value-intro,.value-item { backdrop-filter:blur(24px); }.services { background:#0a0b0e; }.service-card:nth-child(2) { background:linear-gradient(160deg,rgba(91,124,250,.18),rgba(255,255,255,.04)); }.service-card:nth-child(3) { background:linear-gradient(160deg,rgba(226,111,184,.13),rgba(255,255,255,.04)); }.service-card:nth-child(4) { background:linear-gradient(160deg,rgba(56,189,248,.13),rgba(255,255,255,.04)); }.service-featured { background:linear-gradient(160deg,rgba(52,181,121,.14),rgba(255,255,255,.04)); }.service-card:hover { border-color:rgba(255,255,255,.26); }.service-orbit::after,.funnel i,.chat span:last-child { background:linear-gradient(135deg,#5b7cfa,#38bdf8); }.dark-section h2 em,.contact h2 em,.fit-list span { color:#bcd7ff; }
.ai-system { background:#f5f5f3; }.ai-core { background:linear-gradient(160deg,rgba(22,27,39,.98),rgba(10,13,20,.99)); }.ai-orbit::after { background:linear-gradient(135deg,rgba(91,124,250,.22),rgba(56,189,248,.12)); }.ai-orbit i { background:#bcd7ff; }.ai-cap { border-color:rgba(0,0,0,.08); border-radius:24px; background:rgba(255,255,255,.7); }.ai-cap>span { color:#5b7cfa; }
.method { background:#fafafb; }.human-chapter { background:#f5f5f3; }
.local-people { background:#f5f5f3; }.local-people .section-heading h2 em { color:#85868c; }.people-reel { display:grid; grid-template-columns:1.15fr .85fr .85fr; gap:14px; }.people-card { position:relative; min-height:560px; overflow:hidden; border-radius:28px; background:#111318; }.people-card img { width:100%; height:100%; object-fit:cover; transition:transform 900ms var(--ease),filter 500ms; }.people-card::after { position:absolute; inset:0; background:linear-gradient(0deg,rgba(10,11,14,.88) 0%,rgba(10,11,14,.12) 55%); content:""; }.people-card:hover img { transform:scale(1.045); }.people-card>div { position:absolute; z-index:2; right:25px; bottom:25px; left:25px; color:#fff; }.people-card span { font-size:11px; letter-spacing:.05em; }.people-card h3 { max-width:420px; margin:18px 0 0; font-size:clamp(1.45rem,2.1vw,2.25rem); line-height:1.08; letter-spacing:-.025em; }.people-wide { min-height:650px; }
.pricing { background:#0a0b0e; }.pricing .section-heading h2 em { color:#85868c; }.offer-panel { border-color:rgba(255,255,255,.1); background:rgba(255,255,255,.035); }.offer-featured { border-color:rgba(255,255,255,.18); box-shadow:0 30px 100px rgba(91,124,250,.12); }.offer-items { border-color:rgba(255,255,255,.1); }.offer-items>div { background:#101216; }.offer-visual>span,.recommend-pill { background:rgba(255,255,255,.7); backdrop-filter:blur(12px); }.offer-buy .button-light { color:#111318; background:#fff; }.offer-buy .button-light:hover { background:#f3f4f6; }.offer-price { font-weight:400; }.recurring-payment { display:flex; align-items:center; justify-content:space-between; gap:20px; margin:0 0 24px; padding:16px 17px; border:1px solid rgba(255,255,255,.1); border-radius:14px; background:rgba(255,255,255,.035); }.recurring-payment>div:first-child { display:grid; }.recurring-payment span { color:#888d96; font-size:9px; letter-spacing:.07em; }.recurring-payment strong { font-size:12px; font-weight:400; }.card-brands { display:flex; gap:6px; }.card-brands i { display:grid; place-items:center; min-width:31px; height:21px; padding-inline:5px; color:#c7cad0; border:1px solid rgba(255,255,255,.14); border-radius:6px; font-size:8px; font-style:normal; font-weight:600; }.card-brands i:nth-child(2){color:#111318;background:#d4d6da}.card-brands i:nth-child(4){color:#fff;background:#386da1}
.contact { background:#0a0b0e; }.contact::before { border-color:rgba(91,124,250,.18); box-shadow:0 0 0 8vw rgba(226,111,184,.018),0 0 0 16vw rgba(56,189,248,.015); }.lead-form { background:rgba(255,255,255,.92); backdrop-filter:blur(24px); }.mobile-menu { background:linear-gradient(160deg,rgba(22,27,39,.96),rgba(10,13,20,.98)); backdrop-filter:blur(24px) saturate(1.8); }.mobile-menu>a span { color:#bcd7ff; }.mobile-float-cta { background:rgba(255,255,255,.7); backdrop-filter:blur(24px); }.mobile-float-cta b { background:var(--spectrum); background-size:250% 100%; }.mobile-float-cta i { background:#34b579; }
@keyframes spectrum-text { to { background-position:220% 0; } } @keyframes spectrum-border { to { background-position:0 0,240% 0; } }
@media(max-width:1050px){.people-reel{grid-template-columns:1fr 1fr}.people-wide{grid-column:1/-1}}
@media(max-width:760px){h1{font-size:clamp(3.45rem,16vw,5rem)}h2{font-size:clamp(2.8rem,13vw,4.2rem)}.people-reel{grid-template-columns:1fr}.people-wide{grid-column:auto}.people-card,.people-wide{min-height:520px}.recurring-payment{align-items:flex-start;flex-direction:column}.card-brands{width:100%}.card-brands i{flex:1}}

/* V7 — calibrated reference system and rebuilt commercial cards */
:root {
  --lime:#e7f99a;
  --lime-ink:#1a1e05;
  --pink:#e26fb8;
  --violet:#8b5cf6;
  --blue:#5b7cfa;
  --cyan:#38bdf8;
  --green:#34b579;
  --orange:#f08a4f;
  --glass:rgba(255,255,255,.55);
  --dark-card:rgba(255,255,255,.035);
  --dark-line:rgba(255,255,255,.1);
}

::selection { color:var(--lime-ink); background:var(--lime); }
:focus-visible { outline-color:var(--blue); }

/* Header: wordmark, compact type and independent glass navigation */
.site-header {
  top:16px;
  width:min(1228px,calc(100vw - 48px));
  min-height:48px;
  padding:0;
  grid-template-columns:210px 1fr 210px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}
.site-header.scrolled { border:0; background:transparent; box-shadow:none; backdrop-filter:none; }
.brand { gap:0; font-size:19px; font-weight:400; letter-spacing:-.035em; }
.brand strong { font-weight:500; }
.desktop-nav {
  justify-self:center;
  gap:0;
  min-height:48px;
  padding:0 18px;
  border:1px solid rgba(0,0,0,.07);
  border-radius:9999px;
  background:var(--glass);
  box-shadow:0 8px 32px rgba(19,23,32,.035);
  backdrop-filter:blur(40px) saturate(1.3);
}
.desktop-nav a { display:grid; min-height:46px; padding:0 16px; place-items:center; font-size:11px; font-weight:400; line-height:16.5px; letter-spacing:.02em; }
.desktop-nav a::after { display:none; }
.header-actions { justify-self:end; }
.header-cta {
  min-height:40px;
  padding:0 20px;
  color:var(--lime-ink);
  background:var(--lime);
  font-size:11px;
  font-weight:500;
  line-height:16.5px;
  letter-spacing:.02em;
  text-transform:uppercase;
  white-space:nowrap;
}
.header-cta:hover { color:var(--lime-ink); background:#efffb5; }
.site-header.on-dark .brand { color:#fff; }
.site-header.on-dark .desktop-nav { color:#fff; border-color:rgba(255,255,255,.1); background:rgba(17,19,24,.72); }
.site-header.on-dark .desktop-nav a { color:#fff; }

/* Hero: reference scale, centered composition and quiet floating glass */
.hero {
  min-height:920px;
  padding-top:0;
  color:var(--ink);
  background:#f3f4f6;
  isolation:isolate;
}
.hero::after { position:absolute; z-index:-1; inset:0; background:linear-gradient(180deg,rgba(243,244,246,.28),rgba(243,244,246,.06) 56%,rgba(243,244,246,.68)); content:""; }
.hero-world { z-index:-2; width:100%; height:100%; object-fit:cover; object-position:center bottom; opacity:.82; filter:saturate(.85) contrast(.98); }
.hero-spectral { z-index:-1; top:15%; left:50%; width:min(840px,72vw); height:430px; background:radial-gradient(ellipse,rgba(226,111,184,.13),rgba(91,124,250,.08) 34%,rgba(56,189,248,.045) 55%,transparent 74%); transform:translateX(-50%); filter:blur(20px); }
.hero-grid { display:grid; min-height:920px; padding:195px 0 150px; grid-template-columns:1fr; place-items:start center; text-align:center; }
.hero-copy { display:flex; width:min(920px,100%); padding-top:0; align-items:center; flex-direction:column; }
.hero .eyebrow { margin-bottom:35px; color:rgba(19,23,32,.62); font-size:11px; line-height:16.5px; letter-spacing:.07em; text-transform:uppercase; }
.hero h1 {
  max-width:940px;
  margin:0 0 34px;
  font-size:clamp(58px,6.02vw,77.082px);
  font-weight:400;
  line-height:1.05;
  letter-spacing:-.03em;
  text-wrap:balance;
}
.hero h1 em { font-style:normal; background:linear-gradient(90deg,var(--pink),var(--violet) 32%,var(--blue) 60%,var(--cyan)); background-size:100% 100%; background-clip:text; -webkit-background-clip:text; animation:none; }
.hero-lede { max-width:620px; margin:0 auto 30px; color:rgba(19,23,32,.62); font-size:16px; line-height:24px; }
.hero-actions { justify-content:center; }
.hero-actions .button { min-height:46px; padding-inline:24px; }
.hero-actions .button-primary { background:rgba(255,255,255,.76); border-color:rgba(0,0,0,.08); box-shadow:0 10px 32px rgba(19,23,32,.05); backdrop-filter:blur(18px); }
.hero-actions .button-primary:hover { background:#fff; }
.hero .text-link { min-height:46px; padding:0 22px; border:1px solid rgba(0,0,0,.08); border-radius:9999px; background:rgba(255,255,255,.55); color:var(--ink); backdrop-filter:blur(18px); }
.hero-route { width:min(560px,100%); margin:35px auto 0; }
.hero-float { border-radius:18px; background:rgba(255,255,255,.58); box-shadow:0 14px 45px rgba(19,23,32,.06); }
.hero-float-left { top:285px; left:-20px; max-width:190px; }.hero-float-right { right:24px; bottom:185px; }
.capability-rail { color:rgba(19,23,32,.65); background:rgba(250,250,251,.74); }
.rail-track { width:max-content; will-change:transform; }
.rail-group { min-width:100vw; flex:0 0 100vw; }
.rail-track i { color:var(--lime-ink); }

/* Cards with media use the image as the complete background plane */
.service-media-card { position:relative; display:flex; min-height:510px; padding:30px; overflow:hidden; justify-content:flex-end; border-radius:28px; isolation:isolate; }
.service-media-card .bento-media { position:absolute; z-index:-2; inset:0; width:100%; height:100%; margin:0; border-radius:inherit; }
.service-media-card .bento-media::after { background:linear-gradient(180deg,rgba(10,11,14,.08) 25%,rgba(10,11,14,.88) 92%); }
.service-media-card .bento-media img { width:100%; height:100%; object-fit:cover; }
.service-media-card .card-index { position:absolute; top:25px; left:25px; margin:0; padding:7px 10px; border:1px solid rgba(255,255,255,.35); border-radius:999px; background:rgba(10,11,14,.2); backdrop-filter:blur(14px); }
.service-media-card h3,.service-media-card p { z-index:1; margin-inline:0; color:#fff; }
.service-media-card p { color:rgba(255,255,255,.72); }
.service-card:nth-child(3) .card-index { color:var(--lime-ink); background:var(--lime); border-color:transparent; }
.services .section-heading h2 { color:#fff; }
.services .section-heading>p { color:rgba(255,255,255,.62); }
.service-insight { display:grid; min-height:260px; padding:30px; grid-template-columns:minmax(0,1fr) minmax(330px,.95fr); grid-template-areas:"index insight" "title insight" "copy insight"; gap:14px 48px; align-items:start; }
.service-insight .card-index { grid-area:index; }
.service-insight h3 { grid-area:title; max-width:520px; margin:22px 0 0; font-size:clamp(24px,2.4vw,34px); line-height:1.05; }
.service-insight p { grid-area:copy; max-width:520px; margin:0; }
.service-insight .insight-window { grid-area:insight; align-self:center; min-height:150px; padding:24px; border-radius:22px; background:rgba(255,255,255,.025); }

/* Plans: bento of value + checkout card, following the reference's rhythm */
.pricing { padding-block:140px; background:#0a0b0e; }
.pricing::before { display:block; width:min(1180px,calc(100% - 48px)); height:1px; margin:0 auto 105px; background:var(--spectrum); content:""; }
.pricing .section-heading { margin-bottom:90px; }
.pricing .section-heading h2 { font-size:clamp(44px,4.38vw,56px); line-height:1.05; letter-spacing:-.025em; }
.pricing .section-heading h2 em { color:var(--lime); }
.pricing .section-heading p:last-child { color:rgba(255,255,255,.56); }
.offers { gap:112px; }
.offer-panel {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,.98fr) minmax(0,1.02fr);
  gap:18px;
  min-height:790px;
  overflow:visible;
  border:0;
  border-radius:0;
  background:transparent;
}
.offer-featured { border:0; box-shadow:none; }
.offer-featured::before { position:absolute; right:0; left:0; height:1px; background:linear-gradient(90deg,transparent,var(--pink),var(--violet),var(--blue),transparent); content:""; transform:translateY(-34px); opacity:.75; }
.offer-value { display:grid; gap:14px; padding:0; grid-template-rows:222px 1fr; border:0; }
.offer-title,
.offer-items>div {
  border:1px solid var(--dark-line);
  border-radius:24px;
  background:var(--dark-card);
  backdrop-filter:blur(18px);
}
.offer-title { position:relative; padding:28px; overflow:hidden; }
.offer-title::after { position:absolute; top:-80px; right:-70px; width:210px; height:210px; border-radius:50%; background:radial-gradient(circle,rgba(226,111,184,.13),transparent 68%); content:""; }
.offer-title>span { color:rgba(255,255,255,.52); font-size:10px; line-height:15px; letter-spacing:.08em; }
.offer-title h3 { margin:47px 0 12px; font-size:32px; font-weight:400; line-height:1.05; letter-spacing:-.035em; }
.offer-title p { max-width:470px; margin:0; color:rgba(255,255,255,.6); font-size:14px; line-height:21px; }
.recommend-pill { z-index:2; top:24px; right:24px; padding:8px 12px; color:var(--lime-ink); background:var(--lime); font-size:9px; letter-spacing:.08em; }
.offer-items { display:grid; gap:14px; margin:0; grid-template-columns:1fr 1fr; border:0; background:transparent; }
.offer-items>div { display:flex; min-height:0; padding:24px; justify-content:flex-end; flex-direction:column; transition:transform 260ms ease,border-color 260ms ease,background 260ms ease; }
.offer-items>div { position:relative; overflow:hidden; }
.offer-items>div::before { position:absolute; top:22px; left:22px; display:grid; width:38px; height:38px; place-items:center; color:var(--lime); border:1px solid rgba(255,255,255,.1); border-radius:12px; background:rgba(255,255,255,.045); content:"↗"; font-size:14px; }
.offer-items>div:nth-child(2)::before { color:#f3abd7; content:"◎"; }.offer-items>div:nth-child(3)::before { color:#9eb2ff; content:"✦"; }.offer-items>div:nth-child(4)::before { color:#7ee1d9; content:"⌁"; }
.offer-items>div::after { position:absolute; top:-55px; right:-55px; width:150px; height:150px; border-radius:50%; background:radial-gradient(circle,rgba(226,111,184,.08),transparent 68%); content:""; }
.offer-items>div:hover { border-color:rgba(231,249,154,.34); background:rgba(255,255,255,.055); transform:translateY(-4px); }
.offer-items b { margin:0 0 8px; font-size:15px; font-weight:500; line-height:20px; }
.offer-items span { color:rgba(255,255,255,.54); font-size:12px; line-height:18px; }
.offer-purchase { display:grid; min-width:0; overflow:hidden; grid-template-rows:315px 1fr; border:1px solid var(--dark-line); border-radius:24px; background:#0f1116; }
.offer-visual { position:relative; display:block; padding:0; isolation:isolate; }
.offer-visual::after { position:absolute; z-index:-1; inset:0; background:linear-gradient(180deg,rgba(10,11,14,.06) 38%,rgba(10,11,14,.78)); content:""; }
.offer-visual img { z-index:-2; width:100%; height:100%; object-fit:cover; object-position:center 42%; transition:transform 1.1s cubic-bezier(.2,.7,.2,1),filter 500ms ease; }
.offer-purchase:hover .offer-visual img { transform:scale(1.045); filter:saturate(1.06); }
.offer-media-badges { position:absolute; z-index:2; top:18px; right:18px; left:18px; display:flex; justify-content:space-between; gap:12px; }
.offer-media-badges span { padding:9px 12px; color:#fff; border:1px solid rgba(255,255,255,.42); border-radius:9999px; background:rgba(10,11,14,.18); font-size:10px; line-height:14px; letter-spacing:.1em; backdrop-filter:blur(14px); }
.offer-media-badges span:last-child { color:var(--lime-ink); border-color:transparent; background:var(--lime); font-weight:600; }
.offer-media-footer { position:absolute; z-index:2; right:22px; bottom:20px; left:22px; display:flex; align-items:center; justify-content:space-between; color:#fff; font-size:12px; letter-spacing:.04em; }
.offer-media-footer b { font-size:10px; font-weight:400; letter-spacing:.12em; }
.offer-buy { display:flex; padding:30px 34px 32px; align-items:center; text-align:center; }
.offer-price { margin:0 0 18px; font-size:clamp(52px,4.7vw,64px); font-weight:700; line-height:.92; letter-spacing:-.045em; }
.offer-price sup { margin-right:5px; color:rgba(255,255,255,.72); font-size:11px; font-weight:500; }
.offer-price small { color:rgba(255,255,255,.56); font-size:11px; font-weight:400; }
.offer-tags { justify-content:center; margin-bottom:22px; }
.offer-tags span { padding:6px 10px; color:rgba(255,255,255,.72); font-size:9px; line-height:14px; }
.recurring-payment { width:100%; margin:0 0 22px; padding:14px 16px; text-align:left; }
.recurring-payment>div:first-child { flex:1; }
.recurring-payment span { font-size:8px; line-height:13px; }
.recurring-payment strong { font-size:11px; line-height:17px; }
.card-brands { display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.card-brands img { display:block; width:31px; height:21px; object-fit:contain; border-radius:3px; filter:none; }
.offer-buy .button { width:min(360px,82%); min-height:56px; margin-top:0; color:#111318; background:#fff; box-shadow:0 14px 42px rgba(255,255,255,.08); }
.offer-featured .offer-buy .button { background:var(--lime); }
.offer-buy .button:hover { background:#f3f4f6; transform:translateY(-2px); }
.offer-featured .offer-buy .button:hover { background:#efffb5; }
.offer-buy>small { margin-top:13px; color:rgba(255,255,255,.44); font-size:9px; line-height:14px; }
.plan-assurance { display:grid; width:100%; margin-top:auto; padding:14px 16px; grid-template-columns:24px 1fr; gap:10px; align-items:start; text-align:left; border:1px solid rgba(255,255,255,.1); border-radius:14px; background:rgba(255,255,255,.035); }
.plan-assurance i { display:grid; width:22px; height:22px; place-items:center; color:var(--lime-ink); border-radius:50%; background:var(--lime); font-size:11px; font-style:normal; font-weight:700; }
.plan-assurance p { margin:0; color:rgba(255,255,255,.6); font-size:10px; line-height:15px; }
.plan-assurance strong { color:#fff; font-weight:600; }
.commercial-note,.comparison { border-radius:24px; background:rgba(255,255,255,.035); }

@media(max-width:1050px) {
  .site-header { grid-template-columns:180px 1fr 180px; width:calc(100vw - 30px); }
  .desktop-nav a { padding-inline:10px; }
  .hero-float { display:none; }
  .offer-panel { grid-template-columns:1fr; min-height:0; }
  .offer-value { grid-template-rows:210px auto; }
  .offer-items>div { min-height:150px; }
  .offer-purchase { grid-template-rows:360px auto; }
}

@media(max-width:760px) {
  body { padding-bottom:78px; }
  .site-header,.site-header.scrolled {
    top:10px;
    width:calc(100vw - 20px);
    min-height:58px;
    padding:8px 10px 8px 16px;
    grid-template-columns:1fr auto;
    border:1px solid rgba(0,0,0,.07);
    border-radius:9999px;
    background:rgba(255,255,255,.68);
    box-shadow:0 10px 38px rgba(19,23,32,.06);
    backdrop-filter:blur(28px) saturate(1.35);
  }
  .site-header.on-dark { border-color:rgba(255,255,255,.11); background:rgba(17,19,24,.76); }
  .brand { display:flex; font-size:15px; line-height:20px; }
  .desktop-nav,.header-cta { display:none; }
  .menu-toggle { display:block; width:42px; height:42px; border:1px solid rgba(0,0,0,.1); border-radius:50%; }
  .hero { min-height:790px; }
  .hero-grid { min-height:790px; padding:148px 20px 136px; }
  .hero-world { object-position:51% bottom; opacity:.7; }
  .hero-spectral { top:18%; width:100vw; height:320px; }
  .hero .eyebrow { margin-bottom:24px; font-size:9px; line-height:14px; }
  .hero h1 { max-width:360px; margin-bottom:25px; font-size:clamp(46px,13vw,56px); line-height:1.02; letter-spacing:-.035em; }
  .hero-lede { max-width:34ch; margin-bottom:24px; font-size:14px; line-height:21px; }
  .hero-actions { width:100%; gap:9px; align-items:stretch; }
  .hero-actions .button { width:100%; min-height:50px; }
  .hero-actions .text-link { display:none; }
  .hero-route { margin-top:24px; }
  .rail-group { min-width:180vw; flex-basis:180vw; }
  .service-media-card { min-height:470px; }
  .service-insight { display:flex; min-height:390px; padding:24px; align-items:stretch; flex-direction:column; gap:22px; }
  .service-insight h3 { margin:0; font-size:28px; }.service-insight .insight-window { min-height:110px; margin-top:auto; }
  .pricing { padding-block:100px; }
  .pricing::before { width:calc(100% - 40px); margin-bottom:72px; }
  .pricing .section-heading { margin-bottom:62px; text-align:left; }
  .pricing .section-heading .eyebrow { justify-content:flex-start; }
  .pricing .section-heading h2 { font-size:clamp(42px,12.5vw,52px); }
  .offers { gap:84px; }
  .offer-panel { gap:12px; }
  .offer-value { gap:12px; grid-template-rows:auto auto; }
  .offer-title { min-height:205px; padding:24px 21px; border-radius:21px; }
  .offer-title h3 { margin-top:44px; font-size:30px; }
  .recommend-pill { position:absolute; top:20px; right:20px; margin:0; }
  .offer-items { gap:10px; grid-template-columns:1fr 1fr; }
  .offer-items>div { min-height:145px; padding:18px; border-radius:19px; }
  .offer-items b { font-size:13px; line-height:18px; }
  .offer-items span { font-size:11px; line-height:16px; }
  .offer-purchase { grid-template-rows:260px auto; border-radius:22px; }
  .offer-media-badges { top:14px; right:14px; left:14px; }
  .offer-media-badges span { padding:7px 9px; font-size:8px; }
  .offer-media-footer { right:17px; bottom:16px; left:17px; }
  .offer-buy { padding:28px 20px 26px; }
  .offer-price { font-size:52px; }
  .recurring-payment { align-items:flex-start; flex-direction:column; }
  .card-brands { width:100%; justify-content:space-between; }
  .card-brands img { flex:0 0 auto; }
  .offer-buy .button { width:100%; }
  .plan-assurance { margin-top:28px; }
}

@media(max-width:390px) {
  .offer-items { grid-template-columns:1fr; }
  .offer-items>div { min-height:118px; }
  .offer-media-badges span:first-child { max-width:155px; }
}

/* V9 — licensed symbol system, richer plan value and neutral mobile conversion bar */
.symbol-sprite { position:absolute; width:0; height:0; overflow:hidden; }
.ui-icon,.feature-symbol,.accordion-icon { display:block; flex:0 0 auto; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.ui-icon { width:17px; height:17px; }
.button .ui-icon,.text-link .ui-icon { transition:transform 180ms ease; }
.button:hover .ui-icon { transform:translate(3px,-2px); }
.hero-actions .button:hover .ui-icon { transform:translateY(3px); }
.text-link { gap:10px; }
.text-link:hover .ui-icon { transform:translate(3px,3px); }
.menu-close { display:grid; place-items:center; }
.menu-close .ui-icon { width:20px; height:20px; }
.rail-group i { display:grid; place-items:center; }
.rail-group i .ui-icon { width:12px; height:12px; }
.floating-message>.ui-icon { grid-row:1/3; grid-column:2; align-self:center; }
.footer-bottom a { display:inline-flex; align-items:center; gap:7px; }

.service-card li::before,.price-card li::before { top:.25em; width:11px; height:6px; border:solid var(--lime); border-width:0 0 1.7px 1.7px; background:none; content:""; transform:rotate(-45deg); }
.offer-items>div::before { content:none; }
.feature-symbol { position:absolute; top:21px; left:21px; width:39px; height:39px; padding:9px; color:var(--lime); border:1px solid rgba(255,255,255,.11); border-radius:12px; background:rgba(255,255,255,.045); }
.offer-items>div:nth-child(2) .feature-symbol { color:#f3abd7; }
.offer-items>div:nth-child(3) .feature-symbol { color:#a9c9ff; }
.offer-items>div:nth-child(4) .feature-symbol { color:#82ddd5; }

.offer-panel { min-height:925px; }
.offer-purchase { grid-template-rows:315px 1fr; }
.offer-buy { padding:26px 32px 28px; }
.offer-price { margin-bottom:14px; }
.offer-tags { margin-bottom:16px; }
.platforms { width:100%; margin-bottom:16px; text-align:left; }
.platforms>small { display:block; margin-bottom:8px; color:rgba(255,255,255,.42); font-size:8px; line-height:12px; letter-spacing:.09em; }
.platforms>div { display:flex; gap:6px; flex-wrap:wrap; }
.platforms>div>span { display:inline-flex; min-height:28px; padding:5px 8px; align-items:center; gap:6px; color:rgba(255,255,255,.72); border:1px solid rgba(255,255,255,.1); border-radius:9999px; background:rgba(255,255,255,.04); font-size:9px; line-height:13px; }
.platforms img { width:13px; height:13px; object-fit:contain; filter:grayscale(1) brightness(0) invert(1); opacity:.86; }
.recurring-payment { margin-bottom:17px; }
.payment-options { display:grid; gap:8px; justify-items:end; }
.payment-alternatives { display:flex; align-items:center; justify-content:flex-end; gap:7px; }
.payment-alternatives>span { display:inline-flex; min-height:22px; padding:3px 7px; align-items:center; gap:5px; color:rgba(255,255,255,.72); border:1px solid rgba(255,255,255,.12); border-radius:7px; font-size:8px; line-height:12px; letter-spacing:.02em; }
.payment-alternatives img,.payment-alternatives .ui-icon { width:13px; height:13px; filter:grayscale(1) brightness(0) invert(1); }
.offer-buy .button .ui-icon { width:16px; height:16px; }
.plan-assurance>.ui-icon { width:24px; height:24px; padding:4px; color:var(--lime); }
.accordion-icon { width:20px; height:20px; transition:transform 220ms ease; }
details[open] .accordion-icon { transform:rotate(45deg); }

@media(max-width:1050px) {
  .offer-panel { min-height:0; }
  .offer-purchase { grid-template-rows:360px auto; }
}

@media(max-width:760px) {
  .offer-purchase { grid-template-rows:260px auto; }
  .offer-buy { padding:27px 20px 25px; }
  .platforms>div { justify-content:center; }
  .platforms>small { text-align:center; }
  .recurring-payment { width:100%; }
  .payment-options { width:100%; justify-items:stretch; }
  .payment-alternatives { justify-content:flex-start; }
  .mobile-float-cta {
    color:#111318;
    border-color:rgba(255,255,255,.86);
    background:rgba(255,255,255,.8);
    box-shadow:0 16px 48px rgba(11,13,17,.2);
    backdrop-filter:blur(28px) saturate(1.3);
  }
  .mobile-float-cta b { color:var(--lime-ink); background:var(--lime); background-image:none; animation:none; }
  .mobile-float-cta b .ui-icon { width:17px; height:17px; }
  .mobile-float-cta i { background:var(--lime-dark); box-shadow:0 0 0 4px rgba(160,184,61,.13); }
}

@media(max-width:390px) {
  .platforms>div>span { font-size:8px; }
  .card-brands { gap:5px; }
  .card-brands img { width:28px; }
}

/* V10 — denser value narrative and a calmer commercial decision block */
.service-depth { color:var(--ink); background:#f5f5f3; }
.service-depth,.offer-panel { scroll-margin-top:110px; }
.service-depth-intro { display:grid; margin-bottom:72px; grid-template-columns:1.05fr .65fr; gap:10vw; align-items:end; }
.service-depth-intro h2 { max-width:760px; margin:0; font-size:clamp(44px,4.8vw,66px); line-height:1.02; letter-spacing:-.04em; }
.service-depth-intro h2 em { color:#5b7cfa; font-style:normal; }
.service-depth-intro>p { margin:0 0 4px; color:#666a72; font-size:16px; line-height:1.55; }
.service-depth-grid { display:grid; gap:14px; grid-template-columns:1fr 1fr; }
.service-depth-card { min-height:330px; padding:32px; overflow:hidden; border:1px solid rgba(17,19,24,.09); border-radius:26px; background:rgba(255,255,255,.66); transition:transform 280ms var(--ease),border-color 280ms ease,background 280ms ease; }
.service-depth-card:hover { border-color:rgba(91,124,250,.25); background:#fff; transform:translateY(-4px); }
.service-depth-head { display:flex; align-items:center; justify-content:space-between; gap:24px; color:#777b83; font-size:10px; line-height:15px; letter-spacing:.08em; }
.depth-icon { width:27px; height:27px; color:#5b7cfa; fill:none; stroke:currentColor; stroke-width:1.65; stroke-linecap:round; stroke-linejoin:round; }
.service-depth-card h3 { max-width:520px; margin:58px 0 13px; font-size:clamp(25px,2.25vw,32px); font-weight:400; line-height:1.08; letter-spacing:-.035em; }
.service-depth-card>p { max-width:610px; margin:0; color:#656971; font-size:15px; line-height:1.55; }
.service-depth-card ul { display:flex; margin:28px 0 0; padding:0; gap:7px; flex-wrap:wrap; list-style:none; }
.service-depth-card li { padding:7px 10px; color:#666a72; border:1px solid rgba(17,19,24,.09); border-radius:9999px; font-size:10px; line-height:14px; }
.service-depth-ai { color:#fff; border-color:rgba(255,255,255,.12); background:#111318; }
.service-depth-ai:hover { border-color:rgba(231,249,154,.28); background:#15181d; }
.service-depth-ai .depth-icon { color:var(--lime); }
.service-depth-ai .service-depth-head,.service-depth-ai>p { color:rgba(255,255,255,.6); }
.service-depth-ai li { color:rgba(255,255,255,.7); border-color:rgba(255,255,255,.12); }

.offer-panel { min-height:820px; }
.offer-purchase { grid-template-rows:300px 1fr; }
.offer-items>div { padding:82px 26px 24px; justify-content:flex-start; }
.offer-items>div::before { display:none !important; content:none !important; }
.feature-symbol { top:27px; left:27px; width:28px; height:28px; padding:0; border:0; border-radius:0; background:none; }
.offer-items b { margin-bottom:9px; font-size:17px; line-height:22px; }
.offer-items span { font-size:14px; line-height:21px; }
.offer-buy { padding:25px 34px 28px; justify-content:center; }
.offer-price { margin-bottom:15px; }
.offer-tags { margin-bottom:17px; }
.platforms { margin-bottom:18px; text-align:center; }
.platforms>small { margin-bottom:9px; text-align:center; font-size:10px; line-height:14px; letter-spacing:.08em; }
.platforms>div { justify-content:center; }
.platforms>div>span { min-height:30px; padding:6px 9px; font-size:10px; line-height:14px; }
.platforms img { width:14px; height:14px; }
.recurring-payment { display:grid; width:100%; margin:0 0 19px; padding:0; justify-items:center; gap:10px; border:0; border-radius:0; background:none; text-align:center; }
.recurring-payment { justify-content:center; }
.recurring-payment>div:first-child { display:grid; justify-items:center; gap:2px; }
.recurring-payment span { font-size:9px; line-height:13px; }
.recurring-payment strong { font-size:12px; line-height:17px; }
.payment-options { display:flex; width:auto; gap:8px; align-items:center; justify-content:center; justify-items:initial; flex-wrap:nowrap; }
.card-brands { gap:8px; }
.card-brands img { width:32px; height:22px; }
.payment-alternatives { gap:8px; }
.payment-alternatives>span { height:22px; min-height:22px; padding:3px 7px; font-size:9px; line-height:12px; }
.offer-buy .button { min-height:58px; font-size:14px; font-weight:600; }
.offer-buy>small { margin-top:12px; font-size:10px; line-height:15px; }
.plan-assurance { margin-top:17px; padding:15px 17px; }
.plan-assurance p { font-size:11.5px; line-height:17px; }

@media(max-width:1050px) {
  .service-depth-intro { grid-template-columns:1fr; gap:28px; }
  .offer-panel { min-height:0; }
  .offer-purchase { grid-template-rows:350px auto; }
}

@media(max-width:760px) {
  .service-depth-intro { margin-bottom:46px; }
  .service-depth-intro h2 { font-size:clamp(40px,12vw,52px); }
  .service-depth-intro>p { font-size:15px; }
  .service-depth-grid { grid-template-columns:1fr; }
  .service-depth-card { min-height:300px; padding:25px 22px; border-radius:22px; }
  .service-depth-card h3 { margin-top:48px; font-size:27px; }
  .service-depth-card>p { font-size:14px; }
  .offer-items>div { min-height:170px; padding:66px 19px 20px; }
  .feature-symbol { top:21px; left:21px; width:25px; height:25px; }
  .offer-items b { font-size:15px; line-height:20px; }
  .offer-items span { font-size:12px; line-height:18px; }
  .offer-purchase { grid-template-rows:260px auto; }
  .offer-buy { padding:27px 20px 25px; }
  .payment-options { max-width:100%; gap:6px; }
  .card-brands { width:auto; gap:5px; }
  .card-brands img { width:27px; height:20px; }
  .payment-alternatives { gap:5px; }
  .payment-alternatives>span { padding-inline:6px; font-size:8px; }
  .offer-buy .button { font-size:13px; }
  .plan-assurance { margin-top:15px; }
}

@media(max-width:390px) {
  .payment-options { gap:4px; }
  .card-brands { gap:3px; }
  .card-brands img { width:25px; }
  .payment-alternatives { gap:3px; }
  .payment-alternatives>span { padding-inline:5px; }
}

/* V12 — intentional contact lockup and complete plan comparison */
.comparison .table-wrap { padding:0 28px 22px; }
.comparison table { min-width:980px; font-size:13px; line-height:1.4; }
.comparison caption { padding:6px 15px 16px; color:#aeb4bc; font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-align:left; text-transform:uppercase; }
.comparison th,.comparison td { padding:16px 15px; vertical-align:top; }
.comparison tbody th { width:28%; color:#f2f4f7; font-weight:600; }
.comparison tbody td { width:24%; color:#c6cbd2; }
.comparison tbody tr:hover { background:rgba(200,220,255,.045); }
.comparison-note { max-width:930px; margin:0; padding:0 43px 28px; color:#9fa5ae; font-size:12px; line-height:1.6; }
.comparison-note strong { color:#dfe3e8; }

.contact-grid { grid-template-columns:minmax(470px,.9fr) minmax(0,1.1fr); gap:clamp(52px,6vw,94px); }
.contact-copy h2 { font-size:clamp(54px,5vw,72px); line-height:.98; }
.contact-copy h2 span,.contact-copy h2 em { display:block; white-space:nowrap; }

@media(max-width:1050px) {
  .contact-grid { grid-template-columns:1fr; gap:48px; }
  .contact-copy { position:static; }
}

@media(max-width:760px) {
  .comparison .table-wrap { padding-inline:18px; }
  .comparison-note { padding:0 28px 24px; }
  .contact-copy h2 { font-size:clamp(39px,11vw,52px); }
}
