:root {
  --ink: #060913;
  --ink-soft: #0b1122;
  --navy: #071b3f;
  --navy-light: #0b2e6f;
  --blue: #1d35ff;
  --blue-light: #5470ff;
  --yellow: #ffc900;
  --yellow-soft: #ffe566;
  --green: #25d366;
  --paper: #f7f9ff;
  --white: #ffffff;
  --text: #11182a;
  --muted: #69738a;
  --line: #dce3f0;
  --line-dark: rgba(255, 255, 255, 0.13);
  --display: "Plus Jakarta Sans", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shadow: 0 30px 80px rgba(5, 16, 50, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 40px));
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--yellow); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(88px, 10vw, 150px) 0; }

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 10px;
  font-weight: 800;
  transition: top 180ms ease;
}
.skip-link:focus { top: 20px; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  padding: 9px 0;
  background: rgba(6, 9, 19, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.1);
}
.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: rgba(7, 27, 63, .78);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.brand { display: inline-flex; min-height: 48px; align-items: center; gap: 10px; font: 800 24px/1 var(--display); color: var(--white); letter-spacing: -.04em; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; padding: 20px 0; color: #dbe5fa; font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 13px; height: 2px; background: var(--yellow); transition: right 220ms ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 0 18px; border-radius: 12px; background: var(--yellow); color: var(--ink); font-weight: 800; font-size: 14px; transition: transform 200ms ease, background 200ms ease; }
.header-cta:hover { transform: translateY(-2px); background: var(--yellow-soft); }
.header-cta svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(145px, 15vw, 190px) 0 0;
  background:
    radial-gradient(circle at 64% 20%, rgba(29,53,255,.28), transparent 34%),
    radial-gradient(circle at 7% 26%, rgba(255,201,0,.11), transparent 22%),
    var(--ink);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-noise { position: absolute; inset: 0; z-index: -1; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.hero-beam { position: absolute; z-index: -2; width: 520px; height: 520px; border-radius: 50%; filter: blur(110px); opacity: .22; }
.hero-beam-one { right: -100px; top: 100px; background: var(--blue); animation: beam-float 9s ease-in-out infinite; }
.hero-beam-two { left: 4%; bottom: 0; width: 280px; height: 280px; background: var(--yellow); animation: beam-float 11s ease-in-out -3s infinite reverse; }
@keyframes beam-float { 50% { transform: translate3d(-30px, 34px, 0) scale(1.08); } }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr); gap: clamp(48px, 7vw, 92px); align-items: center; padding-bottom: clamp(70px, 9vw, 120px); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 24px; color: #b9c8e8; font: 600 12px/1.2 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 20px; height: 2px; background: var(--yellow); box-shadow: 0 0 16px var(--yellow); }
.eyebrow.dark { color: #526078; }
.section-heading.light .eyebrow { color: #b9c8e8; }
h1, h2, h3 { margin: 0; font-family: var(--display); letter-spacing: -.045em; }
.hero h1 { max-width: 760px; font-size: clamp(47px, 5.35vw, 78px); line-height: .98; font-weight: 800; }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: #c8d3e7; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; }
.hero-offer { max-width: 650px; min-height: 72px; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 13px; margin-top: 26px; padding: 12px 16px; border: 1px solid rgba(255,201,0,.28); border-radius: 15px; background: rgba(255,201,0,.06); transition: border-color 200ms ease, background 200ms ease, transform 200ms ease; }
.hero-offer:hover { border-color: rgba(255,201,0,.7); background: rgba(255,201,0,.1); transform: translateY(-2px); }
.hero-offer > span { padding: 7px 9px; border-radius: 7px; background: var(--yellow); color: var(--ink); font: 600 9px/1 var(--mono); letter-spacing: .07em; white-space: nowrap; }
.hero-offer strong { color: var(--white); font: 800 21px/1 var(--display); letter-spacing: -.04em; white-space: nowrap; }
.hero-offer strong small { color: var(--yellow); font-size: 11px; letter-spacing: 0; }
.hero-offer p { margin: 0; color: #899abb; font: 500 9px/1.45 var(--mono); text-transform: uppercase; letter-spacing: .04em; }
.hero-offer > svg { width: 19px; height: 19px; color: var(--yellow); transition: transform 180ms ease; }
.hero-offer:hover > svg { transform: translateX(4px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; font-size: 15px; font-weight: 800; cursor: pointer; transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease; }
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-3px); }
.button-whatsapp { background: var(--green); color: #03170b; box-shadow: 0 12px 32px rgba(37,211,102,.2); }
.button-whatsapp:hover { background: #55e889; box-shadow: 0 16px 38px rgba(37,211,102,.3); }
.button-ghost { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.42); }
.button-large { min-height: 62px; padding-inline: 28px; font-size: 16px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 13px 24px; padding: 0; margin: 26px 0 0; list-style: none; color: #95a5c1; font-size: 13px; }
.hero-assurances li { display: flex; align-items: center; gap: 7px; }
.hero-assurances svg { width: 15px; height: 15px; color: var(--yellow); stroke-width: 2.7; }

.system-canvas { --px: 0px; --py: 0px; position: relative; min-height: 596px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(7,16,36,.8); box-shadow: 0 45px 100px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.05); transform: perspective(1200px) rotateY(-3deg) translate3d(var(--px), var(--py), 0); transform-style: preserve-3d; transition: transform 180ms ease-out; overflow: hidden; }
.system-canvas::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255,201,0,.4), transparent 24%, transparent 66%, rgba(29,53,255,.65)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.canvas-chrome, .canvas-footer { position: relative; z-index: 3; display: flex; align-items: center; min-height: 62px; padding: 0 20px; border-bottom: 1px solid var(--line-dark); }
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 7px; height: 7px; border-radius: 50%; background: #39435a; }
.canvas-chrome p { margin: 0 auto 0 16px; color: #6f7f9d; font: 500 10px/1 var(--mono); letter-spacing: .06em; }
.live-pill { display: flex; align-items: center; gap: 7px; color: #71f5a3; font: 600 9px/1 var(--mono); letter-spacing: .08em; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: live-pulse 2s ease-out infinite; }
@keyframes live-pulse { 50% { box-shadow: 0 0 0 7px rgba(37,211,102,0); } }
.canvas-body { position: relative; height: 468px; overflow: hidden; }
.system-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(86,112,171,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(86,112,171,.08) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(circle, black, transparent 80%); }
.module { position: absolute; z-index: 3; width: 150px; min-height: 86px; display: grid; grid-template-columns: 34px 1fr; align-content: center; column-gap: 10px; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(12,24,51,.86); box-shadow: 0 16px 35px rgba(0,0,0,.25); backdrop-filter: blur(10px); animation: module-float 5s ease-in-out infinite; }
.module-seo { left: 30px; top: 45px; }
.module-pay { right: 30px; top: 45px; animation-delay: -1.2s; }
.module-crm { left: 30px; bottom: 45px; animation-delay: -2.5s; }
.module-custom { right: 30px; bottom: 45px; animation-delay: -3.7s; }
@keyframes module-float { 50% { transform: translateY(-7px); } }
.module-icon { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,201,0,.25); border-radius: 10px; background: rgba(255,201,0,.08); color: var(--yellow); }
.module-icon svg { width: 17px; height: 17px; }
.module > span:not(.module-icon) { align-self: end; color: var(--white); font: 700 13px/1.2 var(--display); }
.module small { align-self: start; margin-top: 4px; color: #7183a4; font: 500 9px/1.2 var(--mono); }
.connections { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.connections path { fill: none; stroke: url(#none); stroke: rgba(65,99,255,.5); stroke-width: 1.5; stroke-dasharray: 7 7; animation: dash 12s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -140; } }
.core { position: absolute; z-index: 4; left: 50%; top: 50%; width: 154px; height: 154px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,201,0,.42); border-radius: 50%; background: radial-gradient(circle at 45% 35%, #163878, #08142d 66%); box-shadow: 0 0 80px rgba(29,53,255,.3), inset 0 0 36px rgba(255,255,255,.04); transform: translate(-50%,-50%); }
.core img { width: 38px; height: 38px; object-fit: contain; }
.core strong { margin-top: 7px; font: 700 13px/1 var(--display); }
.core small { margin-top: 5px; color: #8ba0c5; font: 500 8px/1 var(--mono); text-transform: uppercase; }
.core-rings span { position: absolute; inset: -16px; border: 1px solid rgba(84,112,255,.22); border-radius: 50%; animation: ring-pulse 3s ease-out infinite; }
.core-rings span + span { inset: -36px; animation-delay: 1.5s; }
@keyframes ring-pulse { from { transform: scale(.8); opacity: 0; } 45% { opacity: 1; } to { transform: scale(1.1); opacity: 0; } }
.signal { position: absolute; z-index: 2; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 14px var(--yellow); }
.signal-one { left: 162px; top: 124px; animation: signal-one 3.7s linear infinite; }
.signal-two { right: 162px; top: 124px; animation: signal-two 4.1s linear infinite; }
.signal-three { left: 162px; bottom: 124px; animation: signal-three 3.9s linear infinite; }
.signal-four { right: 162px; bottom: 124px; animation: signal-four 4.3s linear infinite; }
@keyframes signal-one { to { transform: translate(112px,106px); opacity: .1; } }
@keyframes signal-two { to { transform: translate(-112px,106px); opacity: .1; } }
@keyframes signal-three { to { transform: translate(112px,-106px); opacity: .1; } }
@keyframes signal-four { to { transform: translate(-112px,-106px); opacity: .1; } }
.canvas-footer { min-height: 64px; justify-content: center; gap: 10px; border: 0; border-top: 1px solid var(--line-dark); color: #637496; font: 500 8px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.canvas-footer i { width: 4px; height: 4px; border-radius: 50%; background: #2b3d60; }

.sector-loop { position: relative; z-index: 2; width: 100%; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(8,16,34,.82); overflow: hidden; }
.sector-track { width: max-content; display: flex; align-items: center; gap: 25px; animation: marquee 36s linear infinite; }
.sector-track span { color: #8c9ab5; font: 600 11px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.sector-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading h2 { font-size: clamp(38px, 4.5vw, 64px); line-height: 1.05; color: var(--text); }
.section-heading h2 em { color: var(--blue); }
.section-heading > p:not(.eyebrow), .split-heading > p { max-width: 600px; margin: 25px 0 0; color: var(--muted); font-size: 18px; }
.section-heading.centered { max-width: 850px; margin: 0 auto 55px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:not(.eyebrow) { margin-inline: auto; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; margin-top: 24px; color: var(--blue); font-weight: 800; }
.text-link svg { width: 19px; height: 19px; transition: transform 180ms ease; }
.text-link:hover svg { transform: translateX(4px); }

.manifesto { background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 8vw, 110px); align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.stack-cards { display: grid; gap: 20px; }
.stack-card { position: relative; padding: clamp(28px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 16px 50px rgba(19,31,63,.06); overflow: hidden; }
.stack-card.featured { background: var(--navy); border-color: var(--navy); color: var(--white); box-shadow: 0 28px 70px rgba(7,27,63,.22); }
.stack-card.featured::before { content: ""; position: absolute; right: -70px; top: -110px; width: 260px; height: 260px; border-radius: 50%; background: rgba(29,53,255,.45); filter: blur(55px); }
.stack-index { display: block; margin-bottom: 28px; color: #8792a7; font: 600 10px/1 var(--mono); letter-spacing: .1em; }
.featured .stack-index { color: #8ca4d2; }
.stack-icon { position: absolute; right: 34px; top: 30px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: #eef1ff; color: var(--blue); }
.featured .stack-icon { background: rgba(255,201,0,.1); color: var(--yellow); }
.stack-icon svg { width: 22px; height: 22px; }
.stack-card h3 { position: relative; max-width: 520px; font-size: clamp(25px, 3vw, 36px); line-height: 1.12; }
.stack-card > p { position: relative; margin: 17px 0 23px; color: var(--muted); }
.featured > p { color: #aebcda; }
.stack-card ul { position: relative; display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; list-style: none; }
.stack-card li { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #59657c; font-size: 11px; font-weight: 700; }
.featured li { border-color: rgba(255,255,255,.13); color: #cad6ec; }

.base-plan { position: relative; background: linear-gradient(145deg, #061126, #071b3f 58%, #0b2b70); color: var(--white); overflow: hidden; }
.base-plan::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent 82%); }
.offer-orbit { position: absolute; width: 620px; height: 620px; left: -360px; top: 120px; border: 1px solid rgba(255,201,0,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,201,0,.025), 0 0 0 180px rgba(29,53,255,.035); }
.base-plan-grid { position: relative; display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(50px,7vw,100px); align-items: start; }
.offer-summary { position: sticky; top: 118px; }
.offer-summary .eyebrow { color: #aebddb; }
.offer-label { display: inline-flex; min-height: 30px; align-items: center; padding: 0 10px; margin-bottom: 24px; border: 1px solid rgba(255,201,0,.35); border-radius: 8px; color: var(--yellow); font: 600 10px/1 var(--mono); letter-spacing: .1em; }
.offer-summary h2 { color: var(--white); font-size: clamp(40px,4.8vw,66px); line-height: 1.02; }
.offer-summary h2 em { color: var(--yellow); }
.offer-price { display: grid; grid-template-columns: 1fr auto; align-items: end; margin: 35px 0 22px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.offer-price span { grid-column: 1/-1; margin-bottom: 8px; color: #8193b5; font: 600 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.offer-price strong { color: var(--white); font: 800 clamp(43px,5vw,64px)/.95 var(--display); letter-spacing: -.06em; }
.offer-price b { padding-bottom: 7px; color: var(--yellow); font: 700 13px/1 var(--mono); }
.offer-intro { margin: 0 0 27px; color: #aebdda; font-size: 16px; }
.offer-summary .button { width: 100%; }
.offer-disclaimer { display: block; margin-top: 17px; color: #7183a5; font-size: 10px; line-height: 1.55; }
.offer-manifest { position: relative; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: rgba(5,14,33,.58); box-shadow: 0 35px 80px rgba(0,0,0,.2); overflow: hidden; }
.manifest-head { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 30px; border-bottom: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.035); }
.manifest-head span { color: var(--yellow); font: 600 10px/1 var(--mono); letter-spacing: .11em; }
.manifest-head p { margin: 0; color: #8294b5; font-size: 12px; }
.offer-manifest article { display: grid; grid-template-columns: minmax(190px,.72fr) 1.28fr; gap: 24px 34px; padding: 30px; border-bottom: 1px solid rgba(255,255,255,.11); }
.offer-manifest article:last-child { border-bottom: 0; }
.offer-manifest article > p { grid-column: 1/-1; margin: 0; color: #61759d; font: 600 9px/1 var(--mono); letter-spacing: .1em; }
.offer-manifest h3 { color: var(--white); font-size: 22px; line-height: 1.2; }
.offer-manifest ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.offer-manifest li { display: flex; align-items: flex-start; gap: 9px; color: #bac8df; font-size: 13px; line-height: 1.45; }
.offer-manifest li svg { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 2px; color: var(--yellow); stroke-width: 2.6; }
.custom-quote { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 34px; padding: 30px 34px; border-radius: 20px; background: var(--yellow); color: var(--ink); box-shadow: 0 25px 60px rgba(0,0,0,.2); }
.custom-quote span { font: 600 9px/1 var(--mono); letter-spacing: .1em; }
.custom-quote h3 { margin-top: 8px; font-size: clamp(22px,2.3vw,32px); letter-spacing: -.04em; }
.custom-quote p { margin: 7px 0 0; color: #51471b; font-size: 13px; }
.button-yellow { flex: 0 0 auto; min-width: 250px; background: var(--ink); color: var(--white); box-shadow: 0 12px 28px rgba(6,9,19,.2); }
.button-yellow:hover { background: var(--navy); }
.button-yellow svg { width: 19px; height: 19px; }

.industries { background: #edf1f8; }
.industry-selector { display: flex; justify-content: center; gap: 9px; margin-bottom: 22px; padding: 7px; border: 1px solid #d5ddea; border-radius: 17px; background: rgba(255,255,255,.72); }
.industry-selector button { min-height: 46px; padding: 0 17px; border: 0; border-radius: 11px; background: transparent; color: #667187; font-size: 13px; font-weight: 700; cursor: pointer; transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease; }
.industry-selector button:hover { color: var(--text); background: #f3f5fa; }
.industry-selector button[aria-selected="true"] { background: var(--blue); color: var(--white); box-shadow: 0 8px 20px rgba(29,53,255,.25); }
.industry-stage { min-height: 570px; display: grid; grid-template-columns: .82fr 1.18fr; border: 1px solid #d8e0ed; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.industry-copy { padding: clamp(35px, 5vw, 70px); align-self: center; }
.industry-code { margin: 0 0 20px; color: var(--blue); font: 600 11px/1 var(--mono); letter-spacing: .1em; }
.industry-copy h3 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
.industry-copy > p:not(.industry-code) { margin: 20px 0 26px; color: var(--muted); font-size: 17px; }
.industry-copy ul { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.industry-copy li { display: flex; align-items: center; gap: 10px; color: #465269; font-weight: 600; font-size: 14px; }
.industry-copy li svg { width: 17px; height: 17px; color: var(--blue); stroke-width: 2.6; }
.industry-preview { position: relative; display: grid; place-items: center; padding: 60px 35px; background: var(--ink-soft); overflow: hidden; }
.industry-preview::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at center, black, transparent 76%); }
.industry-preview::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(29,53,255,.28); filter: blur(80px); }
.preview-window { position: relative; z-index: 2; width: min(100%, 500px); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #0b1630; box-shadow: 0 35px 70px rgba(0,0,0,.38); overflow: hidden; transition: transform 260ms ease, opacity 260ms ease; }
.preview-window.is-changing { transform: scale(.975); opacity: .65; }
.preview-top { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.09); background: #0e1b37; }
.preview-top > span { width: 6px; height: 6px; border-radius: 50%; background: #344361; }
.preview-top i { margin-left: 10px; color: #7081a2; font: 500 8px/1 var(--mono); font-style: normal; }
.preview-body { min-height: 300px; display: grid; grid-template-columns: 55px 1fr; }
.preview-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 25px; border-right: 1px solid rgba(255,255,255,.08); }
.preview-sidebar span { width: 18px; height: 4px; border-radius: 999px; background: #2c3b5d; }
.preview-sidebar span.active { width: 25px; background: var(--yellow); }
.preview-content { align-self: center; padding: 38px; }
.preview-label { display: flex; align-items: center; gap: 8px; color: #70eca1; font: 600 8px/1 var(--mono); letter-spacing: .08em; }
.preview-label i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.preview-content strong { display: block; margin-top: 17px; color: var(--white); font: 700 clamp(22px,3vw,32px)/1.1 var(--display); letter-spacing: -.04em; }
.preview-content > p { margin: 9px 0 24px; color: #7588ad; font-size: 11px; }
.preview-metric-row { display: grid; grid-template-columns: 1fr .7fr 1.2fr; gap: 8px; margin-bottom: 25px; }
.preview-metric-row span { height: 44px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.01)); }
.preview-flow { display: flex; align-items: center; gap: 8px; }
.preview-flow b { padding: 7px; border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: #8496b9; font: 500 7px/1 var(--mono); }
.preview-flow i { flex: 1; min-width: 8px; height: 1px; background: var(--blue-light); }
.preview-tag { position: absolute; z-index: 3; padding: 10px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(10,22,48,.88); color: #b9c8e8; font: 600 9px/1 var(--mono); box-shadow: 0 12px 30px rgba(0,0,0,.25); backdrop-filter: blur(10px); }
.tag-one { top: 54px; right: 28px; }
.tag-two { bottom: 50px; left: 24px; }

.possibilities { background: var(--ink); color: var(--white); }
.split-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.split-heading h2 { color: var(--white); }
.split-heading h2 em { color: var(--yellow); }
.split-heading > p { color: #9aa9c4; }
.possibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.possibility-grid article { position: relative; min-height: 270px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; transition: background 220ms ease; }
.possibility-grid article:hover { background: rgba(255,255,255,.045); }
.possibility-grid article > span { color: #566683; font: 600 10px/1 var(--mono); }
.possibility-grid h3 { margin-top: 62px; font-size: 21px; line-height: 1.2; letter-spacing: -.035em; }
.possibility-grid p { margin: 12px 0 0; color: #8f9eb9; font-size: 13px; line-height: 1.65; }
.possibility-grid .possibility-cta { background: var(--yellow); color: var(--ink); }
.possibility-cta::before { content: ""; position: absolute; width: 160px; height: 160px; right: -60px; top: -70px; border: 1px solid rgba(6,9,19,.25); border-radius: 50%; }
.possibility-grid .possibility-cta > span, .possibility-grid .possibility-cta p { color: #3c381e; }
.possibility-cta a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; margin-top: 10px; font-weight: 800; font-size: 13px; }
.possibility-cta svg { width: 17px; height: 17px; }

.method { background: var(--white); }
.method-list { max-width: 1020px; padding: 0; margin: 0 auto; list-style: none; counter-reset: none; }
.method-list li { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); }
.method-list li:last-child { border-bottom: 1px solid var(--line); }
.method-list > li > span { color: var(--blue); font: 600 12px/1 var(--mono); }
.method-list li > div { display: grid; grid-template-columns: .45fr 1fr 1.1fr; gap: 30px; align-items: baseline; }
.method-list p { margin: 0; color: #6d7890; font: 600 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.method-list h3 { font-size: 23px; }
.method-list small { color: var(--muted); font-size: 14px; line-height: 1.6; }

.foundations { position: relative; background: linear-gradient(135deg,#071b3f,#060913 62%); color: var(--white); overflow: hidden; }
.foundations::before { content: ""; position: absolute; width: 620px; height: 620px; left: 50%; top: -350px; transform: translateX(-50%); border-radius: 50%; background: rgba(29,53,255,.27); filter: blur(100px); }
.foundations .section-heading h2 { color: var(--white); }
.foundations .section-heading h2 em { color: var(--yellow); }
.foundation-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.foundation-grid article { padding: clamp(30px, 5vw, 54px); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.045); backdrop-filter: blur(14px); }
.foundation-top { display: flex; align-items: center; gap: 12px; color: var(--yellow); font: 600 10px/1 var(--mono); letter-spacing: .08em; }
.foundation-top svg { width: 24px; height: 24px; }
.foundation-grid h3 { margin-top: 38px; font-size: clamp(28px,3vw,40px); }
.foundation-grid p { color: #a7b5d0; }
.foundation-grid ul { display: grid; gap: 10px; padding: 20px 0 0; margin: 0; border-top: 1px solid rgba(255,255,255,.12); list-style: none; color: #d0dbed; font-size: 13px; }
.foundation-grid li::before { content: "↳"; margin-right: 9px; color: var(--yellow); font-family: var(--mono); }
.foundation-note { position: relative; max-width: 820px; margin: 26px auto 0; color: #8494b2; font-size: 12px; text-align: center; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px,8vw,120px); align-items: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; min-height: 82px; display: flex; align-items: center; padding: 20px 54px 20px 0; color: #172138; font-family: var(--display); font-size: 18px; font-weight: 700; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 5px; width: 28px; height: 28px; border: 1px solid #cad3e2; border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--blue); transform: translate(-50%,-50%); transition: transform 200ms ease; }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq-list details p { max-width: 720px; margin: -5px 50px 25px 0; color: var(--muted); font-size: 15px; }

.final-cta { position: relative; padding: clamp(100px,13vw,180px) 0; background: var(--blue); color: var(--white); overflow: hidden; isolation: isolate; }
.final-grid { position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(circle at center,black,transparent 78%); }
.final-glow { position: absolute; z-index: -1; left: 50%; top: 50%; width: 620px; height: 620px; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(8,20,60,.42); filter: blur(95px); }
.final-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-content > img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 30px; }
.final-content .eyebrow { color: #d4dcff; }
.final-content h2 { max-width: 1050px; color: var(--white); font-size: clamp(42px,5.4vw,78px); line-height: 1.02; }
.final-content h2 em { color: var(--yellow); }
.final-content > p:not(.eyebrow) { max-width: 720px; margin: 26px auto 0; color: #d4dcff; font-size: 18px; }
.final-actions { display: flex; gap: 15px; align-items: stretch; margin-top: 40px; }
.call-card { min-height: 62px; display: flex; align-items: center; gap: 12px; padding: 9px 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; background: rgba(255,255,255,.08); text-align: left; transition: background 200ms ease, transform 200ms ease; }
.call-card:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.call-card > svg { width: 22px; height: 22px; }
.call-card > span { display: grid; }
.call-card small { color: #c4cdf4; font-size: 9px; }
.call-card strong { color: var(--white); font-size: 15px; line-height: 1.25; }
.call-card em { color: #c4cdf4; font-size: 9px; font-style: normal; }

.site-footer { padding: 30px 0; background: var(--ink); color: #71819f; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.site-footer .brand { font-size: 20px; }
.site-footer .brand img { width: 29px; height: 29px; }
.footer-inner > p { margin: 0; font-size: 12px; }
.footer-links { display: flex; align-items: center; gap: 18px; font-size: 11px; }
.footer-links a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-links a:hover { color: var(--white); }
.mobile-contact { display: none; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms cubic-bezier(.2,.8,.2,1), transform 650ms cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .system-canvas { width: min(100%, 650px); margin-inline: auto; transform: none; }
  .manifesto-grid, .faq-grid { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .stack-cards { grid-template-columns: repeat(3,1fr); }
  .stack-card { padding: 26px; }
  .stack-card h3 { font-size: 25px; }
  .stack-card ul { display: grid; }
  .base-plan-grid { grid-template-columns: 1fr; }
  .offer-summary { position: static; max-width: 760px; }
  .offer-manifest { display: grid; grid-template-columns: 1fr 1fr; }
  .manifest-head { grid-column: 1/-1; }
  .offer-manifest article { display: block; }
  .offer-manifest article:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.11); }
  .offer-manifest h3 { margin: 16px 0 22px; }
  .industry-stage { grid-template-columns: 1fr; }
  .industry-preview { min-height: 480px; }
  .possibility-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1/-1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 620px); }
  body { padding-bottom: 68px; }
  .section { padding: 78px 0; }
  .site-header { padding: 10px 0; }
  .header-inner { min-height: 56px; padding: 0 12px 0 14px; border-radius: 16px; }
  .header-cta { min-height: 44px; padding-inline: 14px; }
  .brand { font-size: 21px; }
  .brand img { width: 31px; height: 31px; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-grid { gap: 46px; padding-bottom: 68px; }
  .hero h1 { font-size: clamp(43px,13.4vw,64px); }
  .hero-lead { font-size: 17px; }
  .hero-offer { grid-template-columns: auto 1fr auto; }
  .hero-offer > span { grid-column: 1/2; }
  .hero-offer strong { grid-column: 2/3; }
  .hero-offer p { grid-column: 1/3; }
  .hero-offer > svg { grid-column: 3/4; grid-row: 1/3; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-assurances { display: grid; gap: 10px; }
  .system-canvas { min-height: 460px; border-radius: 24px; }
  .canvas-body { height: 343px; }
  .canvas-chrome { padding-inline: 13px; }
  .canvas-chrome p { display: none; }
  .live-pill { margin-left: auto; }
  .module { width: 116px; min-height: 68px; grid-template-columns: 27px 1fr; padding: 10px; column-gap: 7px; border-radius: 12px; }
  .module-icon { width: 27px; height: 27px; border-radius: 8px; }
  .module-icon svg { width: 14px; height: 14px; }
  .module > span:not(.module-icon) { font-size: 11px; }
  .module small { font-size: 7px; }
  .module-seo,.module-crm { left: 12px; }
  .module-pay,.module-custom { right: 12px; }
  .module-seo,.module-pay { top: 26px; }
  .module-crm,.module-custom { bottom: 26px; }
  .core { width: 112px; height: 112px; }
  .core img { width: 30px; height: 30px; }
  .core strong { font-size: 11px; }
  .connections, .signal { display: none; }
  .canvas-footer { min-height: 55px; padding-inline: 8px; gap: 7px; }
  .canvas-footer span { font-size: 7px; }
  .section-heading.centered { margin-bottom: 38px; text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .section-heading h2 { font-size: 39px; }
  .section-heading > p:not(.eyebrow), .split-heading > p { font-size: 16px; }
  .manifesto-grid { gap: 42px; }
  .stack-cards { grid-template-columns: 1fr; }
  .base-plan-grid { gap: 40px; }
  .offer-summary h2 { font-size: 42px; }
  .offer-price strong { font-size: 46px; }
  .offer-manifest { grid-template-columns: 1fr; border-radius: 22px; }
  .manifest-head { grid-column: auto; display: block; min-height: auto; }
  .manifest-head p { margin-top: 8px; }
  .offer-manifest article:nth-child(odd) { border-left: 0; }
  .offer-manifest article { padding: 27px 24px; }
  .custom-quote { display: grid; padding: 27px 24px; }
  .button-yellow { width: 100%; min-width: 0; }
  .industry-selector { justify-content: flex-start; margin-inline: -14px; padding-inline: 14px; border: 0; border-radius: 0; background: transparent; overflow-x: auto; scrollbar-width: none; }
  .industry-selector::-webkit-scrollbar { display: none; }
  .industry-selector button { flex: 0 0 auto; border: 1px solid #d5ddea; background: #fff; }
  .industry-stage { min-height: auto; border-radius: 23px; }
  .industry-copy { padding: 35px 25px 38px; }
  .industry-copy h3 { font-size: 36px; }
  .industry-preview { min-height: 390px; padding: 38px 16px; }
  .preview-body { grid-template-columns: 42px 1fr; min-height: 260px; }
  .preview-content { padding: 25px 18px; }
  .preview-metric-row span { height: 34px; }
  .preview-tag { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; margin-bottom: 40px; }
  .possibility-grid { grid-template-columns: 1fr; }
  .possibility-grid article { min-height: 225px; }
  .possibility-grid h3 { margin-top: 42px; }
  .method-list li { grid-template-columns: 44px 1fr; gap: 16px; }
  .method-list li > div { grid-template-columns: 1fr; gap: 9px; }
  .foundation-grid { grid-template-columns: 1fr; }
  .faq-grid { gap: 40px; }
  .final-content h2 { font-size: 43px; }
  .final-actions { width: 100%; display: grid; }
  .call-card { justify-content: center; }
  .footer-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-links { flex-wrap: wrap; }
  .mobile-contact { position: fixed; z-index: 120; left: 8px; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(6,9,19,.9); box-shadow: 0 18px 45px rgba(0,0,0,.35); backdrop-filter: blur(16px); }
  .mobile-contact a { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 10px; background: var(--green); color: #03170b; font-size: 13px; font-weight: 800; }
  .mobile-contact a + a { background: var(--yellow); color: var(--ink); }
  .mobile-contact svg { width: 18px; height: 18px; }
}

@media (max-width: 380px) {
  .header-cta svg { display: none; }
  .hero h1 { font-size: 40px; }
  .canvas-footer span:nth-of-type(2), .canvas-footer i:nth-of-type(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .system-canvas { transform: none; }
}

@media (pointer: coarse) {
  .system-canvas { transform: none; }
}
