:root {
  --bg: #10091d;
  --bg-deep: #0b0713;
  --surface: #171024;
  --surface-2: #211331;
  --line: rgba(231, 218, 255, .15);
  --line-bright: rgba(196, 143, 255, .46);
  --text: #f5f0fb;
  --muted: #b8acc8;
  --purple: #8e55d2;
  --violet: #b67cff;
  --lilac: #d5b3ff;
  --green: #7cf2d0;
  --max: 1180px;
  --serif: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", Consolas, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--text); background: var(--bg-deep); font-family: var(--serif); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body::selection { color: var(--bg-deep); background: var(--lilac); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
section { position: relative; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 9px 12px; color: var(--bg); background: var(--text); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.noise { position: fixed; z-index: 30; inset: 0; opacity: .037; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 170 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.96' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
#field { position: fixed; z-index: 0; inset: 0; width: 100%; height: 100%; opacity: .4; pointer-events: none; }
.container { position: relative; z-index: 1; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: clamp(5.5rem, 10vw, 10rem) 0; }
.section--tight { padding: clamp(4.5rem, 7vw, 7.5rem) 0; }
.display, h1, h3, blockquote { font-weight: 600; letter-spacing: -.057em; line-height: .99; }
.display { max-width: 850px; font-size: clamp(2.85rem, 6.2vw, 6.4rem); }
em { color: var(--lilac); font-style: normal; }
.eyebrow { display: flex; align-items: center; gap: .65rem; color: var(--lilac); font-family: var(--mono); font-size: .7rem; font-weight: 500; letter-spacing: .09em; line-height: 1.3; text-transform: uppercase; }
.eyebrow span { width: 1.55rem; height: 1px; background: currentColor; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 3.25rem; padding: .78rem 1.2rem .78rem 1.4rem; color: #160b21; background: var(--lilac); border: 1px solid var(--lilac); border-radius: 999px; font-size: .9rem; font-weight: 800; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.button span { font-size: 1.1rem; line-height: 1; transition: transform .25s; }
.button:hover, .button:focus-visible { color: var(--text); background: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.button:hover span { transform: translate(2px, -2px); }
.button--small { min-height: 2.6rem; padding: .5rem .85rem .5rem 1rem; font-size: .78rem; }
.button--outline { color: var(--text); background: transparent; border-color: rgba(226, 201, 255, .42); }
.button--outline:hover, .button--outline:focus-visible { color: #180b24; background: var(--lilac); border-color: var(--lilac); }
.text-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--text); border-bottom: 1px solid var(--line-bright); font-size: .9rem; font-weight: 700; line-height: 2.2; transition: color .2s, border-color .2s; }
.text-link span { color: var(--lilac); transition: transform .2s; }
.text-link:hover, .text-link:focus-visible { color: var(--lilac); border-color: var(--lilac); }
.text-link:hover span { transform: translateY(3px); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

/* Header */
.site-header { position: fixed; z-index: 40; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; width: min(1360px, calc(100% - 48px)); margin: 1rem auto; padding: .72rem 1.05rem; border: 1px solid rgba(55, 30, 78, .13); border-radius: 999px; background: rgba(255, 255, 255, .96); box-shadow: 0 .65rem 2.3rem rgba(6, 3, 12, .18); color: #28133a; transition: background .3s, border-color .3s, padding .3s, width .3s, backdrop-filter .3s, box-shadow .3s; backdrop-filter: blur(18px); }
.site-header.is-scrolled { width: min(1220px, calc(100% - 28px)); padding: .62rem 1rem; border-color: rgba(83, 43, 117, .2); background: rgba(255, 255, 255, .98); box-shadow: 0 .85rem 2.7rem rgba(6, 3, 12, .25); }
.brand { position: relative; z-index: 2; display: inline-flex; align-items: center; align-self: center; height: 2.9rem; }
.brand img { width: 6.25rem; height: auto; transform: translateY(-1px); }
.main-nav { display: flex; align-items: center; gap: clamp(.85rem, 1.8vw, 1.55rem); color: #2b173d; font-size: .78rem; font-weight: 700; }
.main-nav > a:not(.button) { transition: color .2s; }
.main-nav > a:not(.button):hover, .main-nav > a:not(.button):focus-visible { color: var(--lilac); }
.solutions-menu { position: relative; }
.solutions-menu summary { display: flex; align-items: center; gap: .35rem; cursor: pointer; list-style: none; transition: color .2s; }
.solutions-menu summary::-webkit-details-marker { display: none; }
.solutions-menu__chevron { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; color: #8150b8; transition: transform .2s, color .2s; }
.solutions-menu[open] summary, .solutions-menu summary:hover { color: var(--lilac); }
.solutions-menu[open] .solutions-menu__chevron { transform: rotate(180deg); }
.solutions-dropdown { position: absolute; top: calc(100% + 1rem); left: -1rem; display: grid; min-width: 220px; padding: .55rem; border: 1px solid rgba(83, 43, 117, .18); border-radius: .65rem; background: rgba(255, 255, 255, .98); box-shadow: 0 1rem 3rem rgba(0,0,0,.18); backdrop-filter: blur(18px); }
.solutions-dropdown a { padding: .62rem .7rem; border-radius: .36rem; color: #332044; font-size: .76rem; transition: background .2s, color .2s; }
.solutions-dropdown a:hover, .solutions-dropdown a:focus-visible { color: #271334; background: rgba(185, 124, 255, .22); }
.menu-toggle { display: none; position: relative; z-index: 3; width: 45px; height: 40px; padding: 0; color: #2b173d; background: none; border: 0; cursor: pointer; }
.menu-toggle span { position: absolute; left: 9px; width: 27px; height: 1px; background: currentColor; transition: transform .25s; }
.menu-toggle span:first-child { top: 15px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-5px) rotate(-45deg); }

/* Hero */
.hero { display: flex; align-items: center; min-height: max(720px, 100svh); padding: 8.7rem 0 3rem; overflow: clip; background: radial-gradient(ellipse 85% 65% at 85% 25%, rgba(103, 40, 166, .22), transparent 60%), linear-gradient(115deg, #0e0819 0%, #10081b 45%, #180d28 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .42; background: linear-gradient(90deg, transparent 0 49.9%, rgba(220, 182, 255, .045) 50%, transparent 50.1%), linear-gradient(rgba(220, 182, 255, .035) 1px, transparent 1px); background-size: 100% 100%, 100% 4.5rem; mask-image: linear-gradient(to bottom, #000 0%, transparent 85%); }
.hero::after { content: ""; position: absolute; right: -30vw; bottom: -54vw; width: 125vw; height: 100vw; border: 1px solid rgba(207, 162, 255, .11); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(160, 81, 255, .025), 0 0 0 10rem rgba(160, 81, 255, .018), 0 0 0 15rem rgba(160, 81, 255, .012); transform: rotate(-20deg); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 1rem; }
.hero__copy { position: relative; z-index: 2; padding: 2.5rem 0; }
.hero h1 { max-width: 720px; margin-top: 1.3rem; font-size: clamp(3.45rem, 5.8vw, 6.25rem); }
.hero h1 em { position: relative; }
.hero h1 em::after { content: ""; position: absolute; right: -1.6rem; bottom: .08em; width: 1.15rem; height: 1.15rem; border: 1px solid var(--lilac); border-radius: 50%; opacity: .7; }
.hero__lead { max-width: 570px; margin-top: 1.7rem; color: #c7b9d8; font-size: clamp(1rem, 1.3vw, 1.16rem); line-height: 1.7; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem; margin-top: 2rem; }
.hero__signals { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; margin-top: 3.2rem; color: #a99ab9; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }
.hero__signals li { display: flex; gap: .5rem; align-items: center; }
.hero__signals li::before { content: ""; width: .3rem; height: .3rem; border: 1px solid var(--lilac); border-radius: 50%; }
.hero__visual { position: relative; z-index: 1; min-height: 560px; }
.hero__portrait-frame { position: absolute; z-index: 2; right: max(-10%, -2rem); bottom: -2.5rem; width: min(100%, 560px); isolation: isolate; transform-style: preserve-3d; transition: transform .3s ease-out; }
.hero__portrait-frame::before { content: ""; position: absolute; z-index: -1; inset: 18% 8% 0; border-radius: 50% 50% 0 0; background: linear-gradient(165deg, rgba(166, 94, 246, .3), rgba(63, 28, 97, .04)); filter: blur(6px); }
.hero__portrait-frame::after { content: ""; position: absolute; z-index: 2; right: -3%; bottom: -2%; left: -3%; height: 34%; background: linear-gradient(180deg, rgba(25, 12, 38, 0) 0%, rgba(49, 21, 76, .18) 30%, rgba(27, 13, 43, .76) 74%, #160c23 100%); filter: blur(3px); pointer-events: none; }
.hero__portrait-frame img { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 2.6rem 2.5rem rgba(0, 0, 0, .35)); }
.hero__halo { position: absolute; z-index: 0; top: 8%; right: 4%; width: min(47vw, 580px); aspect-ratio: 1; border: 1px solid rgba(213, 179, 255, .22); border-radius: 50%; box-shadow: inset 0 0 50px rgba(146, 70, 221, .12), 0 0 70px rgba(111, 49, 190, .12); }
.hero__halo::before, .hero__halo::after { content: ""; position: absolute; border: 1px solid rgba(213, 179, 255, .1); border-radius: inherit; }
.hero__halo::before { inset: 7%; }.hero__halo::after { inset: 17%; }
.hero__rings { position: absolute; z-index: 1; top: 23%; right: -15%; width: min(49vw, 630px); aspect-ratio: 1; border: 1px dashed rgba(216, 182, 255, .22); border-radius: 50%; animation: rotate 32s linear infinite; }
.hero__rings::after { content: ""; position: absolute; top: 18%; right: 5%; width: .55rem; height: .55rem; background: var(--green); border-radius: 50%; box-shadow: 0 0 18px var(--green); }
.hero__graph { position: absolute; z-index: 3; right: -4%; bottom: 20%; width: 66%; height: 34%; border-left: 1px solid rgba(215, 181, 255, .19); border-bottom: 1px solid rgba(215, 181, 255, .19); transform: skewY(-12deg); }
.graph-line { position: absolute; display: block; height: 1px; transform-origin: left; background: linear-gradient(90deg, transparent, var(--violet), var(--green)); box-shadow: 0 0 8px var(--violet); }
.graph-line--one { bottom: 27%; left: 0; width: 54%; transform: rotate(-24deg); }
.graph-line--two { bottom: 50%; left: 47%; width: 53%; transform: rotate(-32deg); }
.graph-dot { position: absolute; width: .5rem; height: .5rem; border: 1px solid var(--lilac); border-radius: 50%; background: #180c27; box-shadow: 0 0 12px var(--violet); }
.graph-dot--one { bottom: 48%; left: 45%; }.graph-dot--two { right: -1%; top: 11%; background: var(--green); }
.graph-tag { position: absolute; top: -1.1rem; right: -1.5rem; color: var(--green); font-family: var(--mono); font-size: .55rem; letter-spacing: .04em; text-transform: uppercase; transform: skewY(12deg); }
.portrait-caption { position: absolute; z-index: 4; right: 0; bottom: 2.5rem; max-width: 140px; color: rgba(246, 236, 255, .78); font-family: var(--mono); font-size: .55rem; line-height: 1.55; text-transform: uppercase; letter-spacing: .05em; }
.portrait-caption span { display: block; margin-bottom: .35rem; color: var(--green); }
.hero__orb { position: absolute; z-index: 0; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero__orb--one { top: 22%; left: 42%; width: 7px; height: 7px; background: var(--green); box-shadow: 0 0 22px 4px rgba(123, 239, 207, .55); }
.hero__orb--two { bottom: 24%; left: 54%; width: 9px; height: 9px; background: var(--violet); box-shadow: 0 0 20px 6px rgba(181, 124, 255, .52); animation: float 4s ease-in-out infinite; }
.hero__baseline { position: absolute; z-index: 3; right: 0; bottom: 1rem; left: 0; display: flex; align-items: center; gap: .9rem; color: #9785a9; font-family: var(--mono); font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; }
.hero__baseline i { width: min(20vw, 270px); height: 1px; background: rgba(219, 189, 255, .25); }

/* Quick service index */
.service-map { overflow: hidden; padding-bottom: clamp(4rem, 8vw, 7rem); background: linear-gradient(180deg, #0d0817, #10091d); }
.service-map__heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.service-map__heading h2 { max-width: 620px; margin-top: 1.15rem; font-size: clamp(2.15rem, 4vw, 4rem); font-weight: 600; letter-spacing: -.055em; line-height: 1; }
.service-map__list { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); margin-top: 2.7rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-map__list a { position: relative; display: flex; min-height: 230px; flex-direction: column; padding: 1rem .9rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(13, 8, 23, .35); overflow: hidden; transition: background .3s, transform .3s; }
.service-map__list a::before { content: ""; position: absolute; right: -2rem; bottom: -3rem; width: 7rem; height: 7rem; border: 1px solid rgba(198, 151, 255, .25); border-radius: 50%; opacity: 0; transform: scale(.75); transition: opacity .3s, transform .3s; }
.service-map__list a:hover, .service-map__list a:focus-visible { z-index: 1; background: linear-gradient(160deg, rgba(65, 34, 103, .92), rgba(19, 11, 30, .94)); transform: translateY(-.45rem); }
.service-map__list a:hover::before, .service-map__list a:focus-visible::before { opacity: 1; transform: scale(1); }
.service-map__list b { color: var(--violet); font-family: var(--mono); font-size: .62rem; font-weight: 400; }
.service-map__list strong { position: relative; z-index: 1; margin-top: auto; color: #f2ebf9; font-size: .86rem; line-height: 1.28; }
.service-map__detail { max-height: 0; margin-top: 0; overflow: hidden; color: #c4b5d2; font-size: .72rem; line-height: 1.5; opacity: 0; transition: max-height .35s, margin .35s, opacity .35s; }
.service-map__list a:hover .service-map__detail, .service-map__list a:focus-visible .service-map__detail { max-height: 85px; margin-top: .6rem; opacity: 1; }
.service-map__list i { position: absolute; top: 1rem; right: .9rem; color: var(--lilac); font-family: var(--mono); font-size: 1rem; font-style: normal; transition: transform .25s; }
.service-map__list a:hover i { transform: translate(3px, 3px); }
.service-map__icon { position: relative; z-index: 1; display: grid; width: 2.35rem; height: 2.35rem; margin: 1.55rem 0 .95rem; color: var(--lilac); filter: drop-shadow(0 0 .6rem rgba(196, 143, 255, .52)); transition: color .26s ease, filter .26s ease, transform .36s var(--ease-out); }
.service-map__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.service-map__list a:nth-child(even) .service-map__icon { color: var(--mint); filter: drop-shadow(0 0 .65rem rgba(115, 255, 220, .48)); }
.service-map__list a:hover .service-map__icon, .service-map__list a:focus-visible .service-map__icon { transform: translateY(-.3rem) scale(1.1); }

/* Manifesto */
.manifesto { background: var(--bg-deep); }
.manifesto__grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem, 8vw, 8rem); align-items: end; margin-top: 1.45rem; }
.manifesto__copy { max-width: 390px; color: var(--muted); }
.manifesto__copy p + p { margin-top: 1.2rem; }
.journey-words { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(4rem, 8vw, 8rem); background: var(--line); border: 1px solid var(--line); }
.journey-words li { min-height: 220px; padding: 1.4rem 1.25rem; background: #0f0919; transition: background .35s, transform .35s; }
.journey-words li:hover { background: #191027; transform: translateY(-.5rem); }
.journey-words b { display: block; color: var(--violet); font-family: var(--mono); font-size: .68rem; font-weight: 400; }
.journey-words strong { display: block; margin-top: 3.25rem; font-size: 1.13rem; line-height: 1.2; }
.journey-words span { display: block; margin-top: .7rem; color: #a99bb8; font-size: .82rem; line-height: 1.55; }

/* Solutions */
.solutions { overflow: clip; background: linear-gradient(180deg, #0f0919, #150d21 72%, #10091b); }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 1.5rem 6rem; align-items: end; padding-bottom: 4rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading .section-intro { max-width: 415px; margin-bottom: .8rem; color: var(--muted); }
.solution { position: relative; display: grid; grid-template-columns: .68fr 1.04fr .9fr; gap: 2rem; min-height: 430px; padding: clamp(2rem, 5.5vw, 5rem) 0; border-top: 1px solid var(--line); }
.solution:last-child { border-bottom: 1px solid var(--line); }
.solution__index { color: #bba4d7; font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; }
.solution__index span { display: block; max-width: 10rem; margin-top: .65rem; color: #cbbadc; font-family: var(--serif); font-size: .84rem; letter-spacing: 0; line-height: 1.35; }
.solution__content { position: relative; z-index: 2; max-width: 480px; }
.solution__content h3 { font-size: clamp(2rem, 3.2vw, 3.55rem); }
.solution__content p { max-width: 460px; margin-top: 1.25rem; color: var(--muted); font-size: .93rem; line-height: 1.75; }
.tag-list { display: flex; flex-wrap: wrap; gap: .42rem; margin-top: 2rem; }
.tag-list li { padding: .35rem .6rem; border: 1px solid rgba(214, 175, 255, .28); border-radius: 999px; color: #d9cae8; font-family: var(--mono); font-size: .61rem; letter-spacing: .02em; }
.solution__graphic { position: relative; align-self: center; justify-self: end; width: min(100%, 355px); aspect-ratio: 1.15; pointer-events: none; }
.solution::after { content: ""; position: absolute; right: -25vw; bottom: -35%; width: 35vw; aspect-ratio: 1; border: 1px solid rgba(200, 149, 255, .09); border-radius: 50%; pointer-events: none; }

/* abstract solution visuals */
.strategy-map { overflow: hidden; border: 1px solid rgba(204, 156, 255, .18); background: radial-gradient(circle at 25% 70%, rgba(147, 70, 225, .32), transparent 22%), linear-gradient(135deg, #1e1230, #100a1b); }
.strategy-map::before, .strategy-map::after { content: ""; position: absolute; border: 1px solid rgba(215, 176, 255, .18); border-radius: 50%; }
.strategy-map::before { width: 120%; height: 95%; bottom: -68%; left: -25%; }.strategy-map::after { width: 135%; height: 100%; bottom: -75%; left: -28%; }
.map-path { position: absolute; display: block; height: 1px; transform-origin: left; background: linear-gradient(90deg, var(--violet), var(--green)); box-shadow: 0 0 9px rgba(183, 124, 255, .8); }
.map-path--one { left: 9%; bottom: 25%; width: 56%; transform: rotate(-37deg); }.map-path--two { left: 52%; top: 24%; width: 40%; transform: rotate(31deg); }
.map-point { position: absolute; width: .6rem; height: .6rem; border-radius: 50%; border: 2px solid var(--lilac); background: #160b26; box-shadow: 0 0 18px rgba(193, 132, 255, .9); }
.map-point--one { left: 8%; bottom: 23%; }.map-point--two { left: 61%; top: 27%; }.map-point--three { top: 43%; right: 6%; border-color: var(--green); background: var(--green); }
.strategy-map p, .strategy-map b { position: absolute; z-index: 2; color: #d8c8e8; font-family: var(--mono); font-size: .58rem; font-weight: 400; text-transform: uppercase; letter-spacing: .06em; }
.strategy-map p { left: 7%; bottom: 14%; }.strategy-map b { top: 32%; right: 6%; color: var(--green); }
.browser-object { padding: 1rem; border: 1px solid rgba(204, 156, 255, .26); background: linear-gradient(130deg, rgba(43, 22, 65, .9), rgba(20, 12, 31, .6)); box-shadow: .8rem 1rem 0 rgba(115, 57, 180, .13), 1.6rem 2rem 0 rgba(115, 57, 180, .05); transform: perspective(800px) rotateY(-11deg) rotateX(6deg); }
.browser-object__bar { display: flex; gap: .3rem; height: 1rem; border-bottom: 1px solid rgba(218, 179, 255, .17); }.browser-object__bar i { width: .3rem; height: .3rem; border: 1px solid var(--lilac); border-radius: 50%; }
.browser-object__column { position: absolute; top: 2.45rem; left: 1rem; bottom: 1rem; width: 21%; border: 1px solid rgba(219, 182, 255, .12); background: rgba(161, 79, 240, .08); }
.browser-object__hero { position: absolute; top: 2.45rem; right: 1rem; width: 71%; height: 40%; background: linear-gradient(140deg, rgba(187, 125, 255, .65), rgba(84, 45, 132, .2)); clip-path: polygon(0 0, 100% 0, 100% 66%, 46% 100%, 0 60%); }
.browser-object__blocks { position: absolute; right: 1rem; bottom: 1rem; width: 71%; height: 33%; display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; }.browser-object__blocks i { border: 1px solid rgba(217, 179, 255, .23); background: rgba(175, 107, 253, .1); }
.node-network { border-radius: 50%; background: radial-gradient(circle, rgba(164, 85, 235, .25), transparent 45%); }
.node-network::before { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(210, 170, 255, .13); border-radius: 50%; box-shadow: 0 0 0 2rem rgba(146, 71, 222, .04), 0 0 0 4rem rgba(146, 71, 222, .025); }
.network-link { position: absolute; left: 50%; top: 50%; height: 1px; transform-origin: left; background: linear-gradient(90deg, var(--violet), transparent); }
.link-a { width: 36%; transform: rotate(-122deg); }.link-b { width: 31%; transform: rotate(-31deg); }.link-c { width: 36%; transform: rotate(66deg); }.link-d { width: 27%; transform: rotate(167deg); }
.node { position: absolute; z-index: 2; width: .8rem; height: .8rem; border: 2px solid var(--lilac); border-radius: 50%; background: #1a0d2b; box-shadow: 0 0 15px rgba(194, 128, 255, .7); }.n1 { top: 8%; left: 32%; }.n2 { top: 26%; right: 4%; }.n3 { right: 18%; bottom: 16%; border-color: var(--green); }.n4 { bottom: 7%; left: 28%; }.n5 { top: 48%; left: 4%; }
.node-network b { position: absolute; top: 45%; left: 39%; color: #e1d0ef; font-family: var(--mono); font-size: .58rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.data-object { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: .7rem; padding: 1rem; border: 1px solid rgba(211, 174, 255, .22); background: linear-gradient(155deg, rgba(44, 25, 66, .96), rgba(16, 10, 26, .9)); }
.data-object__chart { position: relative; display: flex; align-items: end; gap: .4rem; height: 75%; padding: 1.2rem .5rem .5rem; border-bottom: 1px solid rgba(212, 177, 255, .22); border-left: 1px solid rgba(212, 177, 255, .22); }.data-object__chart i { width: 15%; background: linear-gradient(to top, rgba(147, 74, 223, .35), rgba(185, 128, 255, .8)); }.data-object__chart i:nth-of-type(1) { height: 24%; }.data-object__chart i:nth-of-type(2) { height: 43%; }.data-object__chart i:nth-of-type(3) { height: 34%; }.data-object__chart i:nth-of-type(4) { height: 70%; }.data-object__chart i:nth-of-type(5) { height: 88%; }
.data-object svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }.data-object polyline { fill: none; stroke: var(--green); stroke-width: 2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 3px var(--green)); }
.data-object__metric { padding: .8rem .35rem; border-top: 1px solid rgba(212, 177, 255, .22); color: var(--muted); font-family: var(--mono); font-size: .56rem; text-transform: uppercase; }.data-object__metric b { display: block; margin-top: .6rem; color: var(--green); font-size: .78rem; }
.content-object { transform: rotate(-8deg); }.content-object::before { content: ""; position: absolute; z-index: 0; inset: 20% 10%; border: 1px solid rgba(211, 172, 255, .28); transform: rotate(-9deg); }.content-object i { position: absolute; z-index: 1; display: block; width: 52%; aspect-ratio: .8; border: 1px solid rgba(212, 174, 255, .35); background: linear-gradient(145deg, #482378, #1d102e); box-shadow: .7rem .7rem 1.5rem rgba(0,0,0,.24); }.content-object i:nth-child(1) { top: 8%; left: 11%; transform: rotate(-10deg); }.content-object i:nth-child(2) { top: 24%; right: 4%; background: linear-gradient(145deg, #69359d, #241138); }.content-object i:nth-child(3) { bottom: 3%; left: 21%; background: linear-gradient(145deg, #261537, #542381); }.content-object span { position: absolute; z-index: 2; right: 10%; bottom: 13%; color: #fbf5ff; font-family: var(--mono); font-size: .57rem; line-height: 1.7; text-transform: uppercase; letter-spacing: .06em; }
.learning-object { border-radius: 50%; background: radial-gradient(circle at center, rgba(199, 144, 255, .32), rgba(35, 16, 55, .12) 35%, transparent 36%); }.learning-object::before { content: ""; position: absolute; inset: 8%; border: 1px dashed rgba(208, 169, 255, .3); border-radius: 50%; animation: rotate 26s linear infinite reverse; }.learning-object i { position: absolute; width: .8rem; height: .8rem; border-radius: 50%; background: var(--violet); box-shadow: 0 0 15px var(--violet); }.learning-object i:nth-child(1) { top: 6%; left: 45%; }.learning-object i:nth-child(2) { top: 44%; right: 5%; background: var(--green); box-shadow: 0 0 15px var(--green); }.learning-object i:nth-child(3) { bottom: 8%; left: 22%; }.learning-object i:nth-child(4) { top: 28%; left: 15%; }.learning-object span { position: absolute; top: 43%; left: 27%; color: #eaddf5; font-family: var(--mono); font-size: .58rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .05em; }

/* Imagens reais das soluções */
.solution__graphic.solution-photo { width: min(100%, 380px); aspect-ratio: auto; overflow: hidden; padding: .48rem; border: 1px solid rgba(216, 180, 255, .32); background: linear-gradient(145deg, rgba(71, 36, 105, .72), rgba(17, 9, 28, .94)); box-shadow: .8rem 1rem 0 rgba(115, 57, 180, .12), 1.35rem 1.75rem 2rem rgba(0, 0, 0, .2); pointer-events: auto; }
.solution-photo img { width: 100%; height: auto; max-height: 440px; object-fit: contain; object-position: center; }
.solution-photo--metrics { transform: perspective(900px) rotateY(-5deg) rotateX(2deg); }.solution-photo--metrics img { background: #f7f7f5; }
.solution-photo--social { width: min(100%, 330px) !important; background: #0b0d11 !important; }.solution-photo--social img { max-height: 360px; }
.solution-photo--training { width: min(100%, 390px) !important; transform: perspective(900px) rotateY(-5deg) rotateX(2deg); }.solution-photo--training img { max-height: 310px; }
.solution-photo--mentoring { width: min(100%, 25rem) !important; background: #070511 !important; }.solution-photo--mentoring img { max-height: 19rem; object-position: center; }
.content-gallery { width: min(100%, 385px); aspect-ratio: 1.05; overflow: visible; pointer-events: auto; }
.content-gallery::before { content: ""; position: absolute; z-index: 0; inset: 15% 8%; border: 1px solid rgba(212, 174, 255, .25); transform: rotate(-8deg); }
.content-gallery__card { position: absolute; z-index: 1; width: 60%; margin: 0; overflow: hidden; border: 1px solid rgba(218, 181, 255, .42); background: #f7f7f4; box-shadow: .7rem .7rem 1.5rem rgba(0, 0, 0, .25); }
.content-gallery__card img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.content-gallery__card--blog { top: 7%; left: 5%; aspect-ratio: 1077 / 767; transform: rotate(-9deg); }
.content-gallery__card--post { top: 22%; right: 0; aspect-ratio: 1287 / 866; transform: rotate(5deg); }
.content-gallery__card--distribution { bottom: 4%; left: 18%; aspect-ratio: 1062 / 842; transform: rotate(-2deg); }

/* V2 — service-specific visuals and project showcase */
.browser-object__column { display: grid; align-content: start; gap: .38rem; padding: .7rem .35rem; }
.browser-object__column i { display: block; width: 78%; height: .25rem; border: 0; background: rgba(215, 180, 255, .38); }.browser-object__column i:nth-child(2) { width: 57%; }.browser-object__column i:nth-child(3) { width: 68%; }
.browser-object__hero { display: flex; align-items: end; justify-content: space-between; padding: .75rem; }.browser-object__hero span, .browser-object__hero b { color: #fbf7ff; font-family: var(--mono); font-size: .47rem; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; }.browser-object__hero b { color: var(--green); font-size: .7rem; }
.site-cases { display: grid; grid-template-rows: auto auto auto; gap: .55rem; width: min(100%, 420px); aspect-ratio: auto; overflow: visible; pointer-events: auto; transform: perspective(900px) rotateY(-5deg) rotateX(2deg); transform-style: preserve-3d; }
.site-cases__title { margin: 0; color: #f2e9fb; font-size: .95rem; font-weight: 700; letter-spacing: -.02em; }
.site-cases__folder { position: relative; min-height: 0; aspect-ratio: 1920 / 865; overflow: hidden; padding: 0; border: 1px solid rgba(214, 176, 255, .4); border-radius: .22rem; background: linear-gradient(145deg, rgba(78, 40, 118, .84), rgba(19, 10, 31, .96)); box-shadow: .75rem 1rem 0 rgba(116, 57, 181, .16), 1.35rem 1.75rem 2rem rgba(0, 0, 0, .2); touch-action: pan-y; cursor: grab; user-select: none; }
.site-cases__folder::before { content: "FNT / SITES"; position: absolute; z-index: 4; top: .65rem; left: .7rem; color: rgba(246, 235, 255, .78); font-family: var(--mono); font-size: .46rem; letter-spacing: .08em; }
.site-case-card { position: absolute; inset: 0; display: block; overflow: hidden; border: 1px solid rgba(226, 202, 255, .26); background: #170c26; opacity: 0; pointer-events: none; transform: translateX(1.25rem) scale(.975); transition: opacity .32s ease, transform .42s cubic-bezier(.2,.7,.2,1); }
.site-case-card.is-active { z-index: 2; opacity: 1; pointer-events: auto; transform: translateX(0) scale(1); }
.site-case-card::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(8, 4, 14, 0) 36%, rgba(8, 4, 14, .12) 50%, rgba(8, 4, 14, .92) 100%); pointer-events: none; }
.site-case-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(.8) brightness(.78); transition: filter .3s, transform .5s cubic-bezier(.2,.7,.2,1); -webkit-user-drag: none; user-select: none; }
.site-case-card span, .site-case-card strong { position: absolute; z-index: 2; left: .8rem; }.site-case-card span { bottom: 2.75rem; color: var(--lilac); font-family: var(--mono); font-size: .5rem; letter-spacing: .07em; text-transform: uppercase; }.site-case-card strong { bottom: .75rem; color: #fffaff; font-size: .85rem; line-height: 1.2; }
.site-case-card:hover img, .site-case-card:focus-visible img { filter: saturate(1) brightness(.96); transform: scale(1.035); }
.site-cases__footer { position: relative; z-index: 6; display: flex; align-items: center; justify-content: space-between; gap: .75rem; color: #bda6d3; font-family: var(--mono); font-size: .56rem; pointer-events: auto; }
.site-cases__footer button { display: inline-flex; align-items: center; gap: .55rem; padding: .38rem .1rem .38rem .55rem; border: 0; color: #eee4f8; background: transparent; cursor: pointer; font: inherit; text-transform: uppercase; letter-spacing: .06em; }.site-cases__footer button i { display: grid; width: 1.55rem; height: 1.55rem; place-items: center; border: 1px solid rgba(216, 180, 255, .42); border-radius: 50%; color: var(--lilac); font-size: .85rem; font-style: normal; transition: color .2s, background .2s, transform .2s; }.site-cases__footer button:hover i, .site-cases__footer button:focus-visible i { color: #160b21; background: var(--lilac); transform: translateX(3px); }
.semantic-search { position: absolute; z-index: 3; top: 12%; left: 19%; display: flex; align-items: center; gap: .42rem; width: 62%; padding: .45rem .55rem; border: 1px solid rgba(215, 179, 255, .35); border-radius: .18rem; color: #e7d8f4; background: rgba(21, 12, 33, .82); box-shadow: 0 .4rem 1.2rem rgba(0,0,0,.18); }.semantic-search span { color: var(--green); font-size: .8rem; }.semantic-search b { position: static; color: #e7d8f4; font-family: var(--mono); font-size: .5rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.search-mindmap { overflow: visible; border: 1px solid rgba(210, 171, 255, .14); border-radius: 50%; background: radial-gradient(circle at 28% 50%, rgba(157, 75, 231, .28), transparent 22%), radial-gradient(circle at 70% 50%, rgba(99, 44, 154, .13), transparent 48%); }
.search-mindmap::before { content: ""; position: absolute; inset: 11%; border: 1px dashed rgba(208, 168, 255, .2); border-radius: 50%; }
.search-mindmap__core { position: absolute; z-index: 3; top: 36%; left: 3%; display: grid; width: 35%; aspect-ratio: 1; place-items: center; border: 1px solid rgba(232, 208, 255, .55); border-radius: 50%; color: #fffaff; background: linear-gradient(145deg, #6c35a3, #2b1244); box-shadow: 0 0 1.4rem rgba(173, 91, 248, .42); font-family: var(--mono); font-size: .58rem; line-height: 1.45; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.search-mindmap__path { position: absolute; z-index: 1; top: 53%; left: 36%; width: 33%; height: 1px; transform-origin: left; background: linear-gradient(90deg, var(--lilac), rgba(149, 85, 223, .16)); box-shadow: 0 0 .6rem rgba(192, 127, 255, .7); animation: mindmap-signal 2.8s ease-in-out infinite; }.search-mindmap__path--chatgpt { transform: rotate(-37deg); }.search-mindmap__path--google { transform: rotate(0deg); animation-delay: .35s; }.search-mindmap__path--gemini { transform: rotate(37deg); animation-delay: .7s; }
.search-mindmap__engine { position: absolute; z-index: 2; right: -2%; display: inline-flex; align-items: center; gap: .5rem; min-width: 7.15rem; padding: .48rem .58rem; border: 1px solid rgba(222, 193, 255, .32); border-radius: .2rem; color: #f4ebfc; background: rgba(25, 12, 39, .88); box-shadow: 0 .6rem 1.3rem rgba(0, 0, 0, .18); font-family: var(--mono); font-size: .53rem; letter-spacing: .03em; }.search-mindmap__engine img { display: block; width: 1.45rem; height: 1.45rem; object-fit: contain; }.search-mindmap__engine b { font-weight: 400; }.search-mindmap__engine--chatgpt { top: 12%; }.search-mindmap__engine--google { top: 42%; }.search-mindmap__engine--gemini { right: 2%; bottom: 10%; }.search-mindmap__engine--gemini img { filter: drop-shadow(0 0 .3rem rgba(198, 151, 255, .45)); }
@keyframes mindmap-signal { 0%, 100% { opacity: .4; } 50% { opacity: 1; box-shadow: 0 0 1rem rgba(201, 151, 255, .95); } }
.data-object--animate .data-object__chart i { transform: scaleY(.12); transform-origin: bottom; transition: transform .75s cubic-bezier(.2,.7,.2,1); }.data-object--animate .data-object__chart i:nth-of-type(2) { transition-delay: .08s; }.data-object--animate .data-object__chart i:nth-of-type(3) { transition-delay: .16s; }.data-object--animate .data-object__chart i:nth-of-type(4) { transition-delay: .24s; }.data-object--animate .data-object__chart i:nth-of-type(5) { transition-delay: .32s; }.data-object--animate polyline { stroke-dasharray: 270; stroke-dashoffset: 270; transition: stroke-dashoffset 1.2s .25s ease-out; }.data-object--animate.is-active .data-object__chart i { transform: scaleY(1); }.data-object--animate.is-active polyline { stroke-dashoffset: 0; }
.content-object i { display: grid; place-items: end start; padding: .55rem; color: #eadffd; font-family: var(--mono); font-size: .5rem; font-style: normal; letter-spacing: .04em; text-transform: uppercase; }.content-object i::before { content: ""; position: absolute; top: .6rem; left: .55rem; width: 60%; height: 1px; background: rgba(236, 220, 253, .65); box-shadow: 0 .38rem rgba(236, 220, 253, .4), 0 .76rem rgba(236, 220, 253, .25); }
.distribution-object { overflow: visible; background: radial-gradient(circle at 45% 50%, rgba(145, 73, 219, .25), transparent 50%); }.distribution-object::before { content: ""; position: absolute; inset: 4%; border: 1px dashed rgba(212, 175, 255, .25); border-radius: 50%; }.distribution-object__post { position: absolute; z-index: 3; top: 27%; left: 26%; display: flex; width: 43%; aspect-ratio: .9; flex-direction: column; justify-content: space-between; padding: .75rem; border: 1px solid rgba(225, 198, 255, .5); background: linear-gradient(145deg, #65349a, #241036 75%); box-shadow: .8rem 1rem 1.8rem rgba(0,0,0,.28); transform: rotate(-7deg); }.distribution-object__post span { color: var(--green); font-family: var(--mono); font-size: .5rem; text-transform: uppercase; }.distribution-object__post b { color: #fbf8ff; font-family: var(--mono); font-size: .65rem; font-weight: 400; line-height: 1.45; text-transform: uppercase; }.distribution-object__line { position: absolute; z-index: 1; left: 49%; top: 48%; width: 35%; height: 1px; background: linear-gradient(90deg, var(--violet), transparent); transform-origin: left; transition: transform .8s ease-out; }.distribution-object .line-one { transform: rotate(-52deg) scaleX(.2); }.distribution-object .line-two { transform: rotate(14deg) scaleX(.2); }.distribution-object .line-three { transform: rotate(132deg) scaleX(.2); }.distribution-object__audience { position: absolute; z-index: 2; display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border: 1px solid rgba(218, 185, 255, .4); border-radius: 50%; color: #e8dcf3; background: #211034; font-family: var(--mono); font-size: .45rem; text-transform: uppercase; box-shadow: 0 0 15px rgba(164, 85, 235, .2); opacity: .35; transition: opacity .4s .35s, transform .65s .35s; }.audience-one { top: 5%; right: 18%; }.audience-two { right: 1%; bottom: 35%; }.audience-three { bottom: 5%; left: 12%; }.distribution-object__metric { position: absolute; right: 8%; bottom: 10%; color: var(--lilac); font-family: var(--mono); font-size: .5rem; letter-spacing: .06em; text-transform: uppercase; }.distribution-object__metric b { color: var(--green); font-size: 1rem; }.distribution-object.is-active .distribution-object__line { transform: rotate(var(--angle, 0)) scaleX(1); }.distribution-object.is-active .line-one { transform: rotate(-52deg) scaleX(1); }.distribution-object.is-active .line-two { transform: rotate(14deg) scaleX(1); }.distribution-object.is-active .line-three { transform: rotate(132deg) scaleX(1); }.distribution-object.is-active .distribution-object__audience { opacity: 1; transform: scale(1.08); }
.learning-object { overflow: visible; border-radius: 0; background: none; }.learning-object::before { inset: 8% 6%; border-radius: .2rem; animation: none; }.learning-object__screen { position: absolute; z-index: 2; top: 21%; left: 15%; width: 68%; aspect-ratio: 1.18; padding: .85rem; border: 1px solid rgba(215, 181, 255, .47); background: linear-gradient(140deg, #2d1745, #130b20); box-shadow: .85rem 1.1rem 0 rgba(109, 54, 171, .12), 1.5rem 2rem 1.8rem rgba(0,0,0,.23); transform: perspective(800px) rotateY(-10deg) rotateX(5deg); }.learning-object__screen span { position: static; color: var(--green); font-family: var(--mono); font-size: .5rem; letter-spacing: .06em; text-transform: uppercase; }.learning-object__screen i { position: relative; display: block; width: 80%; height: .32rem; margin-top: .65rem; border-radius: 0; background: rgba(211, 172, 255, .55); box-shadow: none; }.learning-object__screen i:nth-of-type(2) { width: 61%; }.learning-object__screen i:nth-of-type(3) { width: 72%; }.learning-object__screen b { position: absolute; right: .85rem; bottom: .8rem; color: #f2e7fc; font-family: var(--mono); font-size: .53rem; font-weight: 400; line-height: 1.5; text-transform: uppercase; }.learning-object__node { position: absolute; z-index: 3; width: .72rem; height: .72rem; border: 2px solid var(--lilac); border-radius: 50%; background: #1b0d2a; box-shadow: 0 0 14px rgba(185, 120, 255, .65); }.node-a { top: 4%; right: 13%; }.node-b { right: 4%; bottom: 24%; border-color: var(--green); }.node-c { bottom: 7%; left: 9%; }.learning-object.is-active .learning-object__screen { animation: lesson-enter .75s cubic-bezier(.2,.7,.2,1) both; }
@keyframes lesson-enter { from { opacity: 0; transform: perspective(800px) rotateY(-10deg) rotateX(5deg) translateY(1rem); } to { opacity: 1; transform: perspective(800px) rotateY(-10deg) rotateX(5deg) translateY(0); } }

/* Method */
.method { background: linear-gradient(120deg, #1c1030, #0d0818 72%); overflow: clip; }
.method::after { content: ""; position: absolute; z-index: 0; width: 80vw; height: 80vw; top: -55vw; right: -30vw; border: 1px solid rgba(219, 182, 255, .11); border-radius: 50%; box-shadow: 0 0 0 6rem rgba(164, 92, 237, .025), 0 0 0 12rem rgba(164, 92, 237, .018); }
.method__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 9vw, 10rem); }
.method__intro { position: sticky; top: 9rem; align-self: start; }.method__intro .display { margin: 1.35rem 0 1.45rem; }.method__intro > p:last-child { max-width: 350px; color: var(--muted); }
.method__steps { position: relative; padding-top: 1.8rem; }.method__steps::before { content: ""; position: absolute; top: 0; bottom: 0; left: .7rem; width: 1px; background: linear-gradient(var(--lilac), rgba(209, 170, 255, .1)); }
.method__steps li { position: relative; display: grid; grid-template-columns: 3.7rem 1fr; gap: 1.2rem; min-height: 140px; padding-bottom: 2.8rem; }
.method__steps li > span { position: relative; z-index: 1; display: grid; width: 1.45rem; height: 1.45rem; place-items: center; border: 1px solid var(--lilac); border-radius: 50%; color: var(--lilac); background: #1b102d; font-family: var(--mono); font-size: .43rem; }.method__steps h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }.method__steps p { max-width: 430px; margin-top: .6rem; color: var(--muted); font-size: .9rem; }

/* Tools */
.tools { background: #0c0714; }.tools__heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }.tools__heading .display { margin-top: 1.25rem; }
.tools__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; margin-top: 3.5rem; }
.tool-card { position: relative; overflow: hidden; min-height: 625px; padding: 1.25rem; border: 1px solid rgba(212, 173, 255, .21); background: linear-gradient(145deg, #1c102c, #100a19 80%); transition: transform .35s, border-color .35s; }.tool-card:hover { border-color: rgba(213, 177, 255, .55); transform: translateY(-.4rem); }.tool-card--ideas { background: linear-gradient(145deg, #151025, #0c0a16 80%); }
.tool-card__top { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #c6b0dd; font-family: var(--mono); font-size: .67rem; }.status { display: flex; align-items: center; gap: .4rem; color: var(--green); text-transform: uppercase; font-size: .59rem; }.status i { width: .35rem; height: .35rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 11px var(--green); }
.tool-card__body { position: absolute; z-index: 2; right: 1.25rem; bottom: 1.4rem; left: 1.25rem; }.tool-card__body h3 { max-width: 450px; margin-top: .8rem; font-size: clamp(1.7rem, 3.2vw, 2.8rem); }.tool-card__body > p:not(.eyebrow) { max-width: 410px; margin-top: 1rem; color: #c2b5d0; font-size: .9rem; }.tool-card__body .button { margin-top: 1.7rem; }
.scanner-visual { position: absolute; z-index: 1; top: 8%; right: 7%; left: 7%; display: grid; height: 47%; place-items: start center; overflow: hidden; padding: .52rem; border: 1px solid rgba(213, 177, 255, .32); border-radius: .32rem; background: linear-gradient(145deg, rgba(114, 66, 162, .26), rgba(22, 13, 32, .94)); box-shadow: .7rem .8rem 0 rgba(117, 59, 177, .12); }.scanner-visual img { width: 100%; height: 100%; object-fit: contain; object-position: top center; border-radius: .15rem; background: #f6f6f4; }
.tool-card--scanner { display: grid; grid-template-rows: auto auto 1fr; gap: 1rem; }.tool-card--scanner .scanner-visual { position: relative; z-index: 1; top: auto; right: auto; left: auto; height: clamp(12rem, 18vw, 16rem); margin: 0 .35rem; }.tool-card--scanner .scanner-visual img { object-fit: cover; object-position: center top; }.tool-card--scanner .tool-card__body { position: relative; z-index: 2; right: auto; bottom: auto; left: auto; align-self: end; }
.ideas-visual { position: absolute; top: 9%; right: 3%; left: 3%; height: 56%; perspective: 700px; }.ideas-visual i { position: absolute; display: grid; width: 29%; aspect-ratio: .84; place-items: end start; padding: .65rem; border: 1px solid rgba(213, 175, 255, .32); background: linear-gradient(150deg, rgba(157, 82, 232, .6), rgba(43, 24, 63, .9)); color: #eee3f9; font-family: var(--mono); font-size: .58rem; font-style: normal; text-transform: uppercase; transform: rotateY(-19deg) rotateX(6deg); box-shadow: .8rem .8rem 1.8rem rgba(0, 0, 0, .25); }.ideas-visual i:nth-child(1) { top: 6%; left: 17%; transform: rotate(-9deg); }.ideas-visual i:nth-child(2) { top: 21%; right: 16%; background: linear-gradient(150deg, rgba(79, 46, 127, .9), rgba(22, 15, 34, .9)); transform: rotate(12deg); }.ideas-visual i:nth-child(3) { top: 47%; left: 29%; background: linear-gradient(150deg, rgba(96, 60, 145, .9), rgba(19, 14, 30, .9)); transform: rotate(-1deg); }.ideas-visual i:nth-child(4) { top: 40%; right: 1%; background: linear-gradient(150deg, rgba(168, 100, 232, .8), rgba(47, 25, 69, .9)); transform: rotate(19deg); }.ideas-visual b { position: absolute; top: 14%; left: 39%; color: var(--green); font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -.08em; line-height: 1; text-shadow: 0 0 30px rgba(124, 242, 208, .25); }

/* Results */
.results { overflow: hidden; background: radial-gradient(ellipse at 88% 55%, rgba(99, 43, 157, .25), transparent 42%), #120a1e; }.results__heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }.results__heading .display { margin-top: 1.4rem; }
.results__board { display: grid; grid-template-columns: .78fr 1.22fr; gap: 3rem; margin-top: 4rem; padding: 2rem 0 0; border-top: 1px solid rgba(220, 185, 255, .33); }.results__statement { max-width: 315px; }.results__statement p { font-size: 1.13rem; line-height: 1.55; }.results__statement .text-link { margin-top: 1.5rem; }
.results__axes { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.results__axes article { min-height: 190px; padding: 1.15rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(19, 10, 30, .45); }.results__axes span { color: var(--violet); font-family: var(--mono); font-size: .66rem; }.results__axes h3 { margin-top: 2.1rem; font-size: 1.22rem; }.results__axes .result-number { color: #f1e7fb; font-size: clamp(2.15rem, 4vw, 3.45rem); letter-spacing: -.075em; line-height: .9; }.results__axes p { margin-top: .65rem; color: var(--muted); font-size: .78rem; line-height: 1.5; }.results__note { max-width: 650px; margin-top: 1.6rem; color: #a99ab8; font-size: .7rem; line-height: 1.5; }

/* Authority */
.authority { overflow: clip; background: #0c0714; }.authority__glow { position: absolute; top: 10%; left: 10%; width: 40vw; max-width: 550px; aspect-ratio: 1; border: 1px solid rgba(196, 137, 255, .16); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(150, 68, 234, .04), 0 0 0 8rem rgba(150, 68, 234, .025); }.authority__grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; }.authority__portrait { position: relative; align-self: end; min-height: 630px; overflow: hidden; }.authority__portrait img { position: absolute; z-index: 2; bottom: 0; left: 50%; width: min(100%, 460px); height: auto; transform: translateX(-50%); filter: drop-shadow(0 2rem 2rem rgba(0,0,0,.5)); }.authority__portrait::before { content: ""; position: absolute; z-index: 0; right: 0; bottom: 0; left: 0; height: 83%; background: linear-gradient(150deg, rgba(166, 87, 240, .4), rgba(46, 20, 70, .08)); clip-path: polygon(13% 0, 100% 13%, 89% 100%, 0 89%); }.authority__portrait::after { content: ""; position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; height: 18%; background: linear-gradient(180deg, rgba(12, 7, 20, 0), #0c0714 96%); pointer-events: none; }.authority__portrait-lines { position: absolute; z-index: 1; top: 16%; right: -3%; bottom: 3%; left: -3%; border: 1px solid rgba(216, 177, 255, .32); clip-path: polygon(13% 0, 100% 13%, 89% 100%, 0 89%); }.authority__portrait-lines::after { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(216, 177, 255, .19); clip-path: inherit; }
.authority__content { position: relative; z-index: 2; padding: 3rem 0; }.authority blockquote { max-width: 680px; margin-top: 1.4rem; font-size: clamp(2.8rem, 5.6vw, 6.2rem); }.authority__bio { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 630px; margin-top: 3rem; color: var(--muted); font-size: .86rem; line-height: 1.75; }

/* Culture */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.culture { overflow: hidden; background: #10091b; }.culture__minimal { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 9vw, 9rem); max-width: 1060px; margin: 0 auto; padding: clamp(1rem, 4vw, 3rem) 0; }.culture__minimal-card { position: relative; display: grid; justify-items: center; gap: 1.4rem; padding: clamp(1.5rem, 3vw, 2.7rem) 1rem; text-align: center; transition: filter .3s ease; }.culture__minimal-card + .culture__minimal-card::before { content: ""; position: absolute; top: 7%; bottom: 7%; left: calc(clamp(2rem, 9vw, 9rem) / -2); width: 1px; background: linear-gradient(transparent, rgba(217, 179, 255, .32), transparent); }.culture__icon { width: clamp(7rem, 13vw, 10.5rem); height: clamp(7rem, 13vw, 10.5rem); fill: none; stroke: var(--lilac); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; filter: drop-shadow(0 0 1.6rem rgba(190, 129, 255, .32)); transition: transform .35s var(--ease-out), filter .35s ease; }.culture__minimal-card:last-child .culture__icon { stroke: var(--green); filter: drop-shadow(0 0 1.6rem rgba(124, 242, 208, .22)); }.culture__minimal-card:hover .culture__icon { transform: translateY(-.35rem) scale(1.08); filter: drop-shadow(0 0 2.25rem rgba(199, 144, 255, .64)); }.culture__minimal-card:last-child:hover .culture__icon { filter: drop-shadow(0 0 2.25rem rgba(124, 242, 208, .58)); }.culture__minimal-card span { color: var(--lilac); font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }.culture__minimal-card:last-child span { color: var(--green); }.culture__minimal-card p { max-width: 360px; margin-top: .8rem; color: #e7dcec; font-size: clamp(.92rem, 1.4vw, 1.05rem); line-height: 1.7; }

/* FAQ / CTA / Footer */
.faq { background: #0c0714; }.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 10vw, 9rem); }.faq .display { margin-top: 1.35rem; }.accordion { border-top: 1px solid var(--line); }.accordion details { border-bottom: 1px solid var(--line); }.accordion summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; cursor: pointer; color: #eee7f4; font-size: 1.05rem; font-weight: 700; list-style: none; }.accordion summary::-webkit-details-marker { display: none; }.accordion summary span { color: var(--lilac); font-family: var(--mono); font-weight: 400; transition: transform .2s; }.accordion details[open] summary span { transform: rotate(45deg); }.accordion p { max-width: 560px; padding: 0 2rem 1.45rem 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.final-cta { overflow: clip; padding: clamp(6rem, 11vw, 12rem) 0; background: linear-gradient(135deg, #32195a, #150d26 53%, #0e0817); }.final-cta::before { content: ""; position: absolute; top: -40%; right: -20%; width: 70vw; aspect-ratio: 1; border: 1px solid rgba(234, 216, 255, .2); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(186, 122, 255, .05), 0 0 0 10rem rgba(186, 122, 255, .025); }.final-cta__inner { max-width: 1000px; }.final-cta h2 { max-width: 960px; margin-top: 1.5rem; font-size: clamp(2.85rem, 6.1vw, 6.25rem); font-weight: 600; letter-spacing: -.065em; line-height: .98; }.final-cta__inner > p:not(.eyebrow) { max-width: 545px; margin-top: 1.7rem; color: #d1c3dd; font-size: 1.02rem; }.final-cta__actions { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; margin-top: 2rem; }.final-cta__number { position: absolute; right: 0; bottom: -25%; color: rgba(230, 201, 255, .12); font-size: clamp(14rem, 35vw, 31rem); font-weight: 300; line-height: .7; transform: rotate(-8deg); }
.whatsapp-float { position: fixed; z-index: 50; right: clamp(1rem, 2.3vw, 2rem); bottom: clamp(1rem, 2.3vw, 2rem); display: grid; width: 3.7rem; aspect-ratio: 1; place-items: center; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 .7rem 1.8rem rgba(0,0,0,.32), 0 0 0 .45rem rgba(37,211,102,.14); transition: transform .25s var(--ease-out), box-shadow .25s ease, background .25s ease; }.whatsapp-float svg { width: 63%; height: 63%; overflow: visible; }.whatsapp-float:hover, .whatsapp-float:focus-visible { background: #1fbc5c; box-shadow: 0 1rem 2.1rem rgba(0,0,0,.4), 0 0 0 .7rem rgba(37,211,102,.19); transform: translateY(-.3rem) scale(1.06); }.whatsapp-float:focus-visible { outline: 2px solid #fff; outline-offset: .2rem; }
.site-footer { position: relative; z-index: 2; padding: 3rem 0 1.3rem; background: #08050e; }.site-footer__top { display: grid; grid-template-columns: .8fr 1fr .8fr; gap: 2rem; align-items: center; padding-bottom: 3rem; }.site-footer__top > p { max-width: 330px; color: var(--muted); font-size: .78rem; }.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: .8rem 1.1rem; color: #ada0bc; font-family: var(--mono); font-size: .65rem; }.footer-links a:not(.footer-contact):hover { color: var(--lilac); }.footer-contact { color: var(--lilac); }.footer-contact span { margin-left: .4rem; }.site-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid rgba(218, 181, 255, .15); color: #8e819d; font-family: var(--mono); font-size: .61rem; }.site-footer__bottom div { display: flex; gap: 1rem; }.site-footer__bottom a:hover { color: var(--lilac); }

/* Privacy page */
.privacy-page { min-height: 100svh; padding: clamp(9rem, 15vw, 12rem) 0 clamp(5rem, 10vw, 8rem); background: radial-gradient(ellipse 80% 60% at 92% 8%, rgba(112, 52, 173, .23), transparent 60%), linear-gradient(135deg, #0d0817, #171025); }.site-header--simple { position: absolute; }.privacy-page__content { max-width: 760px; }.privacy-page__content h1 { margin-top: 1.2rem; font-size: clamp(3rem, 7.5vw, 6.4rem); }.privacy-page__copy { margin-top: 2.2rem; padding: clamp(1.4rem, 3vw, 2.3rem); border: 1px solid var(--line); background: rgba(23, 16, 36, .68); box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .18); }.privacy-page__copy h2 { margin: 2rem 0 .6rem; color: var(--lilac); font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -.035em; }.privacy-page__copy h2:first-child { margin-top: 0; }.privacy-page__copy p { max-width: 650px; color: #d1c3dd; }.privacy-page__copy p + p { margin-top: 1rem; }.privacy-page__footer { padding: 1.6rem 0 2rem; background: #08050e; }.privacy-page__footer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; color: #a99ab9; font-family: var(--mono); font-size: .72rem; }

/* Animated / responsive states */
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes rotate { to { transform: rotate(360deg); } } @keyframes float { 50% { transform: translateY(-17px); } } @keyframes pulse { 50% { transform: translateX(-50%) scale(.94); opacity: .6; } }
@media (max-width: 1120px) {
  .service-map__list { grid-template-columns: repeat(4, 1fr); }.service-map__list a { min-height: 188px; }.service-map__detail { max-height: 80px; margin-top: .55rem; opacity: 1; }
  .site-cases { width: min(100%, 320px); }
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr .82fr; }.hero__visual { min-height: 510px; }.solution { grid-template-columns: .48fr 1.1fr .8fr; }.solution__graphic { width: min(100%, 260px); }.site-cases { width: min(100%, 300px); }.authority__portrait { min-height: 530px; }.authority__portrait img { bottom: 0; }
}
@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 34px)); }.section { padding: 5rem 0; }.site-header { width: calc(100% - 28px); margin: .7rem auto; padding: .55rem .7rem; }.site-header.is-scrolled { width: calc(100% - 22px); padding: .55rem .65rem; }.brand { height: 2.45rem; }.brand img { width: 5.8rem; }.menu-toggle { display: block; }.main-nav { position: absolute; top: -.7rem; right: -.3rem; left: -.3rem; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; gap: 0; padding: 5rem 1.2rem 1.1rem; border: 1px solid rgba(83, 43, 117, .18); border-radius: 14px; opacity: 0; background: rgba(255, 255, 255, .99); color: #2b173d; transform: translateY(-1rem); transition: opacity .25s, transform .25s, visibility .25s; backdrop-filter: blur(18px); }.main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }.main-nav > a:not(.button) { padding: .85rem 0; border-bottom: 1px solid rgba(83, 43, 117, .12); font-size: .95rem; }.main-nav .button { align-self: start; margin-top: 1.1rem; }.solutions-menu { width: 100%; border-bottom: 1px solid rgba(83, 43, 117, .12); }.solutions-menu summary { padding: .85rem 0; font-size: .95rem; }.solutions-dropdown { position: static; display: grid; min-width: 0; margin: 0 0 .75rem; padding: .3rem 0 .25rem .75rem; border: 0; border-left: 1px solid rgba(123, 73, 169, .28); border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }.solutions-dropdown a { padding: .55rem 0; color: #4d345e; font-size: .82rem; }
  .hero { min-height: 850px; padding: 7.4rem 0 1.5rem; }.hero__grid { grid-template-columns: 1fr; gap: 0; }.hero__copy { padding: 0; }.hero h1 { font-size: clamp(3rem, 12vw, 4.7rem); }.hero__lead { max-width: 600px; }.hero__actions { align-items: flex-start; flex-direction: column; gap: .8rem; }.hero__actions .text-link { margin-left: 1.4rem; }.hero__signals { margin-top: 2.1rem; }.hero__visual { min-height: min(108vw, 550px); margin-top: 1.25rem; }.hero__portrait-frame { right: 0; bottom: -2rem; width: min(93%, 470px); }.hero__halo { top: 9%; right: 4%; width: 88vw; }.hero__rings { top: 18%; right: -5%; width: 95vw; }.hero__graph { bottom: 15%; right: -4%; width: 73%; }.graph-tag { right: 1rem; }.portrait-caption { right: 2%; bottom: .9rem; }.hero__baseline { display: none; }
  .service-map__heading { display: block; }.service-map__list { grid-template-columns: 1fr; margin-top: 2rem; }.service-map__list a { min-height: 0; padding: 1rem 2.3rem 1rem .95rem; }.service-map__icon { margin: .85rem 0 .35rem; }.service-map__list strong { margin-top: .75rem; font-size: .95rem; }.service-map__detail { max-height: 90px; margin-top: .5rem; font-size: .78rem; opacity: 1; }.service-map__list a::before { opacity: .65; transform: scale(1); }
  .manifesto__grid, .section-heading, .method__grid, .faq__grid, .authority__grid { grid-template-columns: 1fr; }.manifesto__copy { max-width: 570px; }.journey-words { grid-template-columns: 1fr 1fr; }.journey-words li { min-height: 180px; }.journey-words strong { margin-top: 1.8rem; }.section-heading { padding-bottom: 2.5rem; }.section-heading .section-intro { grid-column: auto; }.solution { grid-template-columns: 1fr; gap: 1.5rem; min-height: auto; padding: 3.2rem 0; }.solution__index span { display: inline; margin-left: .6rem; }.solution__graphic { justify-self: center; width: min(100%, 330px); margin: 1rem auto .35rem; }.solution::after { width: 75vw; }.method__intro { position: static; }.method__steps { padding-top: 2.8rem; }.tools__heading, .results__heading { display: block; }.tools__grid { grid-template-columns: 1fr; margin-top: 2.5rem; }.tool-card { min-height: 560px; }.tool-card--scanner .scanner-visual { height: 13rem; }.results__board { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2.5rem; }.results__statement { max-width: 530px; }.authority__portrait { width: min(100%, 450px); min-height: 600px; margin: 0 auto; }.authority__portrait img { bottom: 0; width: min(100%, 420px); }.authority__content { padding: 2rem 0 0; }.authority__bio { grid-template-columns: 1fr; margin-top: 2rem; }.culture__minimal { grid-template-columns: 1fr; gap: 1rem; }.culture__minimal-card { padding: 2rem .4rem; }.culture__minimal-card + .culture__minimal-card::before { top: 0; right: 20%; bottom: auto; left: 20%; width: auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(217, 179, 255, .32), transparent); }.final-cta h2 { font-size: clamp(2.8rem, 11vw, 4.7rem); }.site-footer__top { grid-template-columns: 1fr; gap: 1.4rem; }.footer-links { justify-content: start; }.site-footer__bottom { flex-direction: column; }
}
@media (max-width: 760px) {
  .site-cases { width: min(100%, 360px); aspect-ratio: auto; transform: none; }.search-mindmap { width: min(100%, 330px); }
}
@media (max-width: 430px) {
  .site-cases { width: min(100%, 340px); aspect-ratio: auto; }.search-mindmap { width: min(100%, 320px); }
  .hero { min-height: 800px; }.hero__actions { align-items: flex-start; flex-direction: column; gap: .8rem; }.hero__signals { gap: .5rem .85rem; }.hero__visual { min-height: 97vw; }.portrait-caption { font-size: .48rem; }.journey-words { grid-template-columns: 1fr; }.journey-words li { min-height: 145px; }.journey-words strong { margin-top: 1rem; }.results__axes { grid-template-columns: 1fr; }.tool-card { min-height: 535px; }.ideas-visual { transform: scale(.92); transform-origin: top left; width: 110%; }.culture__values { grid-template-columns: 1fr; }.final-cta__actions { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } #field { display: none; }.reveal { opacity: 1; transform: none; }
}
