:root {
  --bg: #080a0d;
  --bg-soft: #0d1014;
  --surface: #11151a;
  --surface-2: #171c22;
  --surface-3: #20262d;
  --text: #f4f5f1;
  --muted: #9ba3ab;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.16);
  --accent: #b8ff68;
  --accent-soft: #d8ffae;
  --ink: #11170c;
  --white: #ffffff;
  --radius-xl: 36px;
  --radius-lg: 27px;
  --radius-md: 20px;
  --shadow: 0 32px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "DM Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--accent); }

.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 10px 14px; background: var(--accent); color: var(--ink); border-radius: 10px; font-weight: 800; transition: top .2s ease; }
.skip-link:focus { top: 16px; }
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.section { position: relative; padding: 118px 0; }

.noise { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04; 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='.85'/%3E%3C/svg%3E"); }
.ambient { position: fixed; z-index: -2; width: 620px; height: 620px; border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: .12; }
.ambient-one { right: -250px; top: -290px; background: #9dff36; }
.ambient-two { left: -350px; bottom: -360px; background: #6b42ff; opacity: .08; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; background: rgba(8,10,13,.70); backdrop-filter: blur(22px); transition: border-color .25s ease, background .25s ease; }
.site-header.scrolled { border-color: var(--line); background: rgba(8,10,13,.88); }
.nav-shell { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { display: block; width: auto; height: 44px; }
.site-header .brand-logo { height: 28px; }
.site-nav { display: flex; align-items: center; gap: 32px; color: #c6cbd0; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--accent); transition: right .2s ease; }
.site-nav > a:not(.button):hover { color: var(--white); }
.site-nav > a:not(.button):hover::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 99px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 23px; border: 1px solid var(--accent); border-radius: 999px; color: var(--ink); background: var(--accent); font-weight: 800; font-size: 14px; box-shadow: 0 12px 34px rgba(184,255,104,.13); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: #c8ff8b; box-shadow: 0 16px 38px rgba(184,255,104,.19); }
.button-small { min-height: 44px; padding: 0 18px; }
.button-dark { width: 100%; border-color: #151a10; background: #151a10; color: var(--white); box-shadow: none; }
.button-dark:hover { background: #22291c; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #e1e5e8; font-weight: 700; font-size: 14px; }
.text-link span { color: var(--accent); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.large { margin-top: 28px; font-size: 16px; }

h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; line-height: 1.05; letter-spacing: -.05em; }
h1 { max-width: 690px; font-size: clamp(48px, 4.4vw, 70px); font-weight: 700; }
.hero-copy h1 { max-width: 650px; font-size: clamp(42px, 3.4vw, 54px); line-height: 1.05; }
h1 em { color: var(--accent); font-style: normal; }
h2 { font-size: clamp(42px, 4.1vw, 62px); font-weight: 700; }
h3 { font-size: 24px; font-weight: 700; }
p { color: var(--muted); }
.section-kicker { display: inline-block; margin-bottom: 18px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }

.hero { min-height: calc(100svh - 84px); display: grid; align-items: center; padding: 82px 0 96px; }
.hero-grid { display: grid; grid-template-columns: .97fr 1.03fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 27px; color: #bcc2c8; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(184,255,104,.11); }
.hero-lead { max-width: 650px; margin: 27px 0 0; color: #abb2b9; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 35px; color: #b9c0c6; font-size: 12px; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points i { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid rgba(184,255,104,.32); border-radius: 50%; color: var(--accent); font-size: 10px; font-style: normal; }

.hero-media { position: relative; min-height: 610px; }
.hero-image-frame { position: absolute; inset: 0 18px 50px 45px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 34px; background: var(--surface); box-shadow: var(--shadow); }
.hero-image-frame::before { content: ""; position: absolute; inset: 0; z-index: 2; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); border-radius: inherit; pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; transform: scale(1.01); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,13,.02) 30%, rgba(8,10,13,.88) 100%), linear-gradient(90deg, rgba(8,10,13,.16), transparent 45%); }
.hero-image-label { position: absolute; z-index: 3; left: 34px; bottom: 31px; display: grid; gap: 5px; }
.hero-image-label span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-image-label strong { max-width: 360px; font-family: "Manrope", sans-serif; font-size: 25px; letter-spacing: -.035em; }
.floating-panel { position: absolute; z-index: 5; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(14,18,22,.92); backdrop-filter: blur(18px); box-shadow: 0 24px 60px rgba(0,0,0,.38); }
.performance-panel { right: -14px; top: 28px; bottom: auto; width: 286px; padding: 18px; }
.panel-top { display: flex; justify-content: space-between; align-items: center; color: #8f969d; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.panel-top b { color: var(--accent); font-size: 9px; }
.sparkline { height: 66px; margin: 10px 0 5px; color: var(--accent); }
.sparkline svg { width: 100%; height: 100%; }
.panel-bottom { display: grid; gap: 2px; }
.panel-bottom strong { font-size: 13px; }
.panel-bottom span { color: #7f878e; font-size: 10px; }
.partner-panel { left: 0; top: 52px; display: flex; align-items: center; gap: 12px; padding: 13px 16px 13px 13px; }
.partner-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--ink); background: var(--accent); font-family: "Manrope"; font-weight: 900; }
.partner-panel div { display: grid; }
.partner-panel small { color: #8f969e; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.partner-panel strong { margin-top: 1px; font-size: 12px; }

.signal-strip { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.signal-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; white-space: nowrap; color: #a8afb5; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.signal-inner i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); opacity: .65; }

.section-heading { display: grid; grid-template-columns: 1.15fr .62fr; align-items: end; gap: 80px; margin-bottom: 56px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { margin: 0 0 3px; font-size: 16px; line-height: 1.75; }
.section-heading.compact { grid-template-columns: 1fr; margin-bottom: 42px; }
.services-section { padding-top: 130px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.service-card { position: relative; min-height: 540px; overflow: hidden; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(24,29,35,.95), rgba(13,16,20,.96)); transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(184,255,104,.28); }
.service-card-featured { background: linear-gradient(145deg, #b8ff68 0%, #94eb3f 100%); color: var(--ink); }
.service-card-featured p { color: rgba(17,23,12,.78); }
.service-card-featured li { color: #000000 !important; -webkit-text-fill-color: #000000; opacity: 1; background: rgba(255,255,255,.30); text-shadow: none; }
.service-card-featured .service-number { color: rgba(17,23,12,.52); }
.service-card-featured .service-icon { border-color: rgba(17,23,12,.13); color: var(--ink); background: rgba(255,255,255,.28); }
.service-head { display: flex; align-items: center; justify-content: space-between; }
.service-number { color: #717981; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 15px; color: var(--accent); background: rgba(255,255,255,.025); }
.service-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { max-width: 470px; margin-top: 36px; font-size: 29px; }
.service-card > p { max-width: 530px; margin: 16px 0 22px; font-size: 15px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-card li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #aeb5bb; font-size: 10px; font-weight: 700; }
.service-card-featured li { border-color: rgba(17,23,12,.22); }
.service-visual { position: absolute; left: 35px; right: 35px; bottom: 30px; height: 150px; }
.website-visual { display: grid; place-items: center; }
.mini-browser { position: relative; width: 88%; height: 138px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 15px; background: #0b0e11; box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.mini-browser::before { content: ""; display: block; height: 26px; border-bottom: 1px solid var(--line); background: #15191f; }
.mini-browser > span { position: absolute; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: #545b63; }
.mini-browser > span:nth-child(1) { left: 12px; }
.mini-browser > span:nth-child(2) { left: 23px; }
.mini-browser > span:nth-child(3) { left: 34px; }
.mini-browser b { position: absolute; left: 25px; top: 50px; width: 39%; height: 12px; border-radius: 5px; background: #eef2eb; box-shadow: 0 22px 0 #eef2eb; }
.mini-browser i { position: absolute; top: 45px; width: 80px; height: 62px; border-radius: 13px; background: linear-gradient(135deg, #b8ff68, #476323); }
.mini-browser i:nth-of-type(1) { right: 114px; }
.mini-browser i:nth-of-type(2) { right: 25px; background: linear-gradient(135deg, #5c6571, #1a1e24); }
.ads-visual { display: grid; place-items: end center; }
.ad-chart { position: relative; width: 88%; height: 133px; display: flex; align-items: flex-end; gap: 12px; padding: 18px 20px; border-radius: 16px; background: rgba(17,23,12,.10); border: 1px solid rgba(17,23,12,.12); }
.ad-chart::before { content: "Campaign performance"; position: absolute; left: 18px; top: 13px; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ad-chart i { flex: 1; height: 28%; border-radius: 7px 7px 2px 2px; background: rgba(17,23,12,.26); }
.ad-chart i:nth-child(2) { height: 43%; }
.ad-chart i:nth-child(3) { height: 55%; }
.ad-chart i:nth-child(4) { height: 71%; }
.ad-chart i:nth-child(5) { height: 91%; background: #151a10; }
.ad-chart span { position: absolute; left: 18px; right: 18px; bottom: 17px; height: 1px; background: rgba(17,23,12,.17); }
.social-visual { display: flex; justify-content: center; align-items: flex-end; gap: 15px; }
.social-card { width: 145px; height: 142px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #0c0f13; transform: rotate(-5deg); box-shadow: 0 15px 38px rgba(0,0,0,.25); }
.social-card.second { transform: translateY(8px) rotate(6deg); }
.social-card i { display: block; height: 77px; border-radius: 11px; background: linear-gradient(145deg, #667079, #20262d 54%, #b8ff68); }
.social-card.second i { background: linear-gradient(145deg, #b8ff68, #415125 55%, #14181d); }
.social-card span { display: block; width: 62%; height: 6px; margin-top: 13px; border-radius: 99px; background: #747c84; }
.social-card b { display: inline-block; width: 20%; height: 4px; margin: 8px 6px 0 0; border-radius: 99px; background: #3d444b; }
.strategy-visual { position: absolute; left: 50%; bottom: 30px; width: 310px; height: 145px; transform: translateX(-50%); }
.strategy-visual::before, .strategy-visual::after, .strategy-visual i, .strategy-visual b { content: ""; position: absolute; height: 1px; background: linear-gradient(90deg, rgba(184,255,104,.08), rgba(184,255,104,.7), rgba(184,255,104,.08)); transform-origin: left center; }
.strategy-visual::before { width: 122px; left: 67px; top: 69px; transform: rotate(-27deg); }
.strategy-visual::after { width: 130px; left: 67px; top: 70px; transform: rotate(27deg); }
.strategy-visual i { width: 93px; left: 160px; top: 40px; transform: rotate(21deg); }
.strategy-visual b { width: 93px; left: 160px; top: 100px; transform: rotate(-22deg); }
.node { position: absolute; z-index: 2; width: 38px; height: 38px; border: 8px solid #15191e; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px rgba(184,255,104,.25); }
.node-one { left: 30px; top: 52px; }
.node-two { left: 154px; top: 10px; }
.node-three { left: 154px; bottom: 8px; }
.node-four { right: 23px; top: 52px; }

.system-section { padding-top: 38px; }
.system-card { overflow: hidden; display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; padding: 62px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, #171c22, #0d1014 72%); }
.system-copy h2 { max-width: 560px; }
.system-copy > p { max-width: 530px; margin: 23px 0 31px; }
.system-list { display: grid; gap: 0; }
.system-list > div { display: grid; grid-template-columns: 36px 1fr; gap: 13px; padding: 17px 0; border-top: 1px solid var(--line); }
.system-list span { color: var(--accent); font-size: 10px; font-weight: 900; }
.system-list p { margin: 0; font-size: 13px; }
.system-list strong { color: var(--white); }
.system-dashboard { align-self: center; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px; background: #090c0f; box-shadow: 0 30px 70px rgba(0,0,0,.35); transform: rotate(1.2deg); }
.dashboard-header { min-height: 75px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--line); }
.dashboard-header div { display: grid; }
.dashboard-header small { color: #707880; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.dashboard-header strong { font-size: 14px; }
.dashboard-header > span { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: #9da5ac; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.dashboard-header > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(184,255,104,.09); }
.dashboard-main { display: grid; grid-template-columns: 1fr 175px; gap: 12px; padding: 14px; }
.chart-card, .metric-box { border: 1px solid var(--line); border-radius: 17px; background: #11151a; }
.chart-card { padding: 17px; }
.chart-title { display: flex; justify-content: space-between; color: #899198; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.large-chart { position: relative; height: 195px; margin-top: 16px; overflow: hidden; }
.grid-lines { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 100% 38px, 72px 100%; }
.large-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.dashboard-side { display: grid; gap: 10px; }
.metric-box { display: flex; flex-direction: column; justify-content: center; padding: 14px; }
.metric-box span { color: #7b838a; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.metric-box strong { margin: 4px 0 14px; font-size: 11px; line-height: 1.3; }
.metric-box i { position: relative; height: 5px; overflow: hidden; border-radius: 99px; background: #252b31; }
.metric-box i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--value); border-radius: inherit; background: var(--accent); }
.dashboard-footer { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 14px; }
.dashboard-footer span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 8px; color: #788088; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }

.outcomes-section { padding-bottom: 80px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.outcome-card { min-height: 310px; padding: 31px; border-top: 1px solid var(--line-strong); background: linear-gradient(180deg, rgba(255,255,255,.025), transparent); }
.outcome-card > span { color: var(--accent); font-size: 10px; font-weight: 900; }
.outcome-card h3 { margin-top: 92px; font-size: 27px; }
.outcome-card p { max-width: 330px; margin: 16px 0 0; font-size: 14px; }

.audience-section { padding-top: 70px; }
.audience-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 85px; }
.audience-image { position: relative; height: 650px; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; }
.audience-image img { width: 100%; height: 100%; object-fit: cover; }
.audience-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,10,13,.75)); }
.audience-badge { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 23px; display: grid; gap: 3px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(10,13,16,.77); backdrop-filter: blur(14px); }
.audience-badge strong { font-size: 14px; }
.audience-badge span { color: #969ea5; font-size: 11px; }
.audience-copy h2 { max-width: 720px; }
.audience-copy > p { max-width: 650px; margin: 23px 0 29px; font-size: 16px; }
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.industry-grid span { padding: 14px 15px; border: 1px solid var(--line); border-radius: 13px; color: #c6cbd0; background: rgba(255,255,255,.02); font-size: 12px; font-weight: 700; }
.industry-grid span::before { content: "↗"; margin-right: 8px; color: var(--accent); }

.process-section { background: rgba(255,255,255,.017); }
.process-heading { display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 80px; margin-bottom: 61px; }
.process-heading > p { margin: 0; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-track::before { content: ""; position: absolute; left: 9%; right: 9%; top: 39px; height: 1px; background: var(--line-strong); }
.process-step { position: relative; padding: 0 26px 0 0; }
.process-step > span { color: #737b82; font-size: 10px; font-weight: 900; }
.process-dot { position: relative; z-index: 2; width: 15px; height: 15px; margin: 21px 0 34px; border: 4px solid var(--bg-soft); border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px rgba(184,255,104,.35); }
.process-step h3 { font-size: 23px; }
.process-step p { max-width: 250px; margin: 13px 0 0; font-size: 13px; }

.about-section { padding-top: 92px; }
.about-card { overflow: hidden; display: grid; grid-template-columns: 1.08fr .92fr; min-height: 590px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); }
.about-image { position: relative; min-height: 520px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 64%, rgba(17,21,26,.5)); }
.photo-credit { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(8,10,13,.6); backdrop-filter: blur(10px); color: #d6dade; font-size: 10px; font-weight: 700; }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.about-copy > p { margin: 20px 0 0; }
.about-copy > p + p { margin-top: 12px; }
.company-note { display: grid; gap: 4px; margin-top: 32px; padding-top: 25px; border-top: 1px solid var(--line); }
.company-note span { color: #747c83; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.company-note strong { max-width: 520px; font-size: 14px; line-height: 1.55; letter-spacing: 0; }

.faq-section { padding-top: 98px; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro p { max-width: 420px; margin-top: 23px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 89px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--accent); font-size: 28px; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; margin: -4px 55px 29px 0; }

.contact-section { padding-top: 55px; }
.contact-card { display: grid; grid-template-columns: .86fr 1.14fr; gap: 68px; padding: 68px; border-radius: var(--radius-xl); color: var(--ink); background: var(--accent); }
.contact-copy .section-kicker { color: #4e6635; }
.contact-copy h2 { font-size: clamp(43px, 4.5vw, 65px); }
.contact-copy > p { max-width: 520px; margin-top: 25px; color: rgba(17,23,12,.69); }
.contact-details { display: grid; gap: 5px; margin-top: 39px; }
.contact-details a { font-family: "Manrope", sans-serif; font-size: 19px; font-weight: 800; }
.contact-details span { color: rgba(17,23,12,.53); font-size: 10px; }
.company-description { max-width: 520px; margin: 15px 0 2px; color: rgba(17,23,12,.72); font-size: 13px; line-height: 1.55; }
.company-description strong { color: var(--ink); }
.contact-form { display: grid; gap: 14px; padding: 29px; border-radius: 25px; color: var(--white); background: #0f130d; box-shadow: 0 25px 65px rgba(24,44,6,.20); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: #989f92; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid rgba(255,255,255,.10); border-radius: 12px; outline: none; color: var(--white); background: #1a1f17; transition: border-color .2s ease, background .2s ease; }
.contact-form textarea { resize: vertical; min-height: 125px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(184,255,104,.7); background: #1e251a; }
.form-note { margin: 0; color: #6d7568; font-size: 9px; line-height: 1.45; text-align: center; }

.site-footer { padding: 79px 0 29px; }
.footer-main { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; padding-bottom: 54px; }
.footer-brand p { max-width: 410px; margin: 19px 0 0; color: #777f86; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: #666e75; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { color: #bec4c9; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid var(--line); color: #646c73; font-size: 10px; }
.footer-company { max-width: 720px; text-align: right; line-height: 1.65; }
.footer-company strong { color: #aeb5bb; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; }
.legal-hero { padding: 100px 0 45px; }
.legal-hero h1 { font-size: clamp(48px, 6vw, 76px); }
.legal-hero p { max-width: 680px; margin-top: 22px; }
.legal-content { padding: 35px 0 110px; }
.legal-content article { max-width: 820px; }
.legal-content h2 { margin-top: 48px; font-size: 27px; }
.legal-content h3 { margin-top: 31px; font-size: 20px; }
.legal-content p, .legal-content li { color: #a8afb5; }
.legal-content a { color: var(--accent); }
.legal-content ul { padding-left: 20px; }

@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 900px; }
  .hero-media { width: min(820px, 100%); margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 700px; }
  .system-card { grid-template-columns: 1fr; }
  .system-copy { max-width: 780px; }
  .system-dashboard { max-width: 800px; width: 100%; margin: 0 auto; }
  .audience-grid { gap: 55px; }
  .about-card { grid-template-columns: 1fr; }
  .about-image { min-height: 560px; }
  .about-image::after { background: linear-gradient(180deg, transparent 70%, rgba(17,21,26,.35)); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-copy { max-width: 790px; }
}

@media (max-width: 850px) {
  .section { padding: 88px 0; }
  .nav-shell { height: 74px; }
  .site-header .brand-logo { height: 30px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; left: 20px; right: 20px; top: 86px; display: grid; gap: 3px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(13,16,20,.98); box-shadow: var(--shadow); transform: translateY(-13px); opacity: 0; visibility: hidden; transition: .22s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 11px 10px; }
  .site-nav .button { margin-top: 7px; }
  .hero { padding-top: 58px; }
  .hero-image-frame { inset: 0 0 48px 25px; }
  .performance-panel { right: -3px; top: 18px; }
  .signal-inner { overflow: hidden; justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 520px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 240px; }
  .outcome-card h3 { margin-top: 58px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-image { height: 600px; }
  .process-heading { grid-template-columns: 1fr; gap: 22px; }
  .process-track { grid-template-columns: repeat(2,1fr); gap: 42px 0; }
  .process-track::before { display: none; }
  .process-dot { margin-bottom: 22px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .contact-card { padding: 45px 32px; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 590px) {
  .container { width: min(100% - 26px, 1200px); }
  .site-nav { left: 13px; right: 13px; top: 78px; }
  .site-header .brand-logo { height: 28px; }
  h1 { font-size: 43px; }
  .hero-copy h1 { max-width: 100%; font-size: 37px; line-height: 1.06; }
  h2 { font-size: 39px; }
  .hero { padding: 46px 0 76px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .text-link { justify-content: center; }
  .hero-points { display: grid; }
  .hero-media { min-height: 500px; }
  .hero-image-frame { inset: 0 0 52px 0; border-radius: 25px; }
  .hero-image-frame img { object-position: 53% center; }
  .hero-image-label { left: 21px; bottom: 21px; }
  .hero-image-label strong { max-width: 250px; font-size: 20px; }
  .partner-panel { left: -3px; top: 21px; }
  .performance-panel { right: -3px; top: 12px; bottom: auto; width: 238px; padding: 15px; }
  .sparkline { height: 50px; }
  .signal-inner { min-height: 62px; }
  .services-section { padding-top: 91px; }
  .service-card { min-height: 500px; padding: 26px; }
  .service-card h3 { margin-top: 28px; font-size: 26px; }
  .service-visual { left: 26px; right: 26px; }
  .mini-browser, .ad-chart { width: 100%; }
  .social-card { width: 125px; }
  .system-card { padding: 31px 20px; border-radius: 25px; }
  .dashboard-main { grid-template-columns: 1fr; }
  .dashboard-side { grid-template-columns: repeat(3,1fr); }
  .metric-box { min-height: 105px; padding: 10px; }
  .metric-box strong { font-size: 9px; }
  .dashboard-footer { display: none; }
  .outcome-card { padding: 25px; }
  .audience-image { height: 510px; border-radius: 25px; }
  .industry-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 38px; }
  .process-step { padding-right: 0; }
  .process-dot { margin: 13px 0 19px; }
  .about-card { border-radius: 25px; }
  .about-image { min-height: 360px; }
  .about-copy { padding: 34px 23px; }
  .accordion summary { min-height: 82px; font-size: 16px; }
  .accordion details p { margin-right: 15px; }
  .contact-card { padding: 34px 20px; border-radius: 25px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 21px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-company { max-width: none; text-align: left; }
}

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

/* Legal identity and contact-form confirmation */
.company-note address,
.contact-details address {
  margin: 5px 0 0;
  color: #747c83;
  font-size: 10px;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: .02em;
}
.contact-details address { color: rgba(17,23,12,.58); }
.form-fields { display: grid; gap: 14px; }
.form-success {
  min-height: 438px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 36px 24px;
  text-align: center;
}
.form-success[hidden],
.form-fields[hidden] { display: none; }
.success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 7px;
  border: 1px solid rgba(184,255,104,.28);
  border-radius: 50%;
  color: #10140d;
  background: #b8ff68;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0 0 0 10px rgba(184,255,104,.07);
}
.form-success h3 {
  max-width: 420px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.form-success p {
  max-width: 430px;
  margin: 0 0 8px;
  color: #9ca394;
  font-size: 14px;
  line-height: 1.65;
}
.success-reset {
  padding: 8px 0;
  border: 0;
  color: #b8ff68;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 700px) {
  .form-success { min-height: 360px; padding: 25px 8px; }
  .footer-bottom span:last-child { line-height: 1.55; }
}
