:root {
  --ink: #0b1526;
  --ink-soft: #152238;
  --paper: #f6f5f0;
  --white: #fff;
  --lime: #c8f135;
  --lime-dark: #9fc500;
  --coral: #ff704d;
  --blue: #6b8cff;
  --muted: #657083;
  --line: rgba(11, 21, 38, .13);
  --dark-line: rgba(255, 255, 255, .13);
  --shadow: 0 24px 70px rgba(11, 21, 38, .12);
  --radius: 20px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 10px 16px; color: var(--ink); background: var(--lime); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; color: var(--white); border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header.scrolled { color: var(--ink); background: rgba(246, 245, 240, .92); border-color: var(--line); box-shadow: 0 8px 30px rgba(11, 21, 38, .06); backdrop-filter: blur(16px); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 9px 9px 9px 2px; font-size: 21px; line-height: 1; box-shadow: inset -7px -7px 0 rgba(11, 21, 38, .08); }
.brand-name { font-size: 20px; line-height: 1; }
.brand-name > span { display: block; margin-top: 4px; font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: 0; text-transform: uppercase; opacity: .66; }
.primary-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.primary-nav > a:not(.nav-cta), .nav-dropdown > a { position: relative; opacity: .82; }
.primary-nav > a:not(.nav-cta)::after, .nav-dropdown > a::after { content: ""; position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .2s; }
.primary-nav > a:not(.nav-cta):hover::after, .nav-dropdown:hover > a::after, .nav-dropdown:focus-within > a::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; padding: 28px 0; margin: -28px 0; }
.nav-menu { position: absolute; top: calc(100% - 2px); left: 50%; width: min(820px, calc(100vw - 48px)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; padding: 24px; color: var(--ink); background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity .2s, transform .2s, visibility .2s; backdrop-filter: blur(16px); }
.nav-dropdown:hover .nav-menu, .nav-dropdown:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-menu strong { display: block; margin-bottom: 12px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.nav-menu a { display: block; padding: 7px 0; color: #172235; font-size: 13px; line-height: 1.35; }
.nav-menu a:hover { color: var(--coral); }
.nav-menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; }
.nav-contact { color: var(--lime); }
.site-header.scrolled .nav-contact { color: var(--ink); }
.nav-cta { padding: 11px 17px; color: var(--ink); background: var(--lime); border-radius: 8px; transition: transform .2s, background .2s; }
.nav-cta:hover { background: var(--white); transform: translateY(-2px); }
.site-header.scrolled .nav-cta:hover { color: var(--white); background: var(--ink); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: auto; padding: 148px 0 0; color: var(--white); background: var(--ink); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 84%); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(10px); opacity: .16; }
.glow-one { width: 420px; height: 420px; right: 2%; top: 80px; background: var(--blue); }
.glow-two { width: 360px; height: 360px; right: 26%; bottom: 20px; background: var(--lime); opacity: .08; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: 74px; align-items: start; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--lime); }
.eyebrow.dark { color: var(--muted); }
.eyebrow.dark > span { background: var(--coral); }
.eyebrow.light { color: rgba(255,255,255,.62); }
.hero h1 { max-width: 700px; margin: 0; font-size: 78px; line-height: .98; letter-spacing: 0; }
.hero h1 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 13px 22px; border: 0; border-radius: 9px; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 12px 28px rgba(200, 241, 53, .16); }
.button-primary:hover { background: var(--white); box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--lime); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; }
.text-link span { color: var(--lime); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 42px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.58); font-size: 12px; }
.trust-list span { margin-right: 5px; color: var(--lime); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 650px; margin-top: 34px; overflow: hidden; border: 1px solid var(--dark-line); border-radius: 14px; background: var(--dark-line); }
.hero-proof div { min-height: 124px; padding: 20px 18px; background: rgba(255,255,255,.045); }
.hero-proof strong { display: block; margin-bottom: 14px; color: var(--lime); font-family: var(--mono); font-size: 22px; line-height: 1; }
.hero-proof span { display: block; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.55; }

.hero-visual { position: relative; min-height: 610px; }
.hero-media-card { position: absolute; z-index: 2; top: 0; left: 0; width: 320px; margin: 0; overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.25); border-radius: 16px; box-shadow: 0 26px 70px rgba(0,0,0,.3); transform: rotate(-4deg); }
.hero-media-card img { width: 100%; height: 205px; object-fit: cover; }
.hero-media-card figcaption { padding: 16px 18px 18px; }
.hero-media-card figcaption span { display: block; margin-bottom: 8px; color: var(--coral); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.hero-media-card figcaption b { display: block; font-size: 13px; line-height: 1.45; }
.build-card { position: absolute; z-index: 3; top: 88px; right: 0; width: 510px; max-width: 100%; overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.35); border-radius: 18px; box-shadow: 0 35px 90px rgba(0,0,0,.37); transform: rotate(2.5deg); }
.build-topbar { height: 49px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; color: #7b8491; background: #edf0f1; border-bottom: 1px solid #d9dddf; font-family: var(--mono); font-size: 9px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; background: #c6cbd0; border-radius: 50%; }
.window-dots i:first-child { background: var(--coral); }
.live-dot { justify-self: end; color: #438900; }
.live-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: #76c900; border-radius: 50%; }
.build-body { min-height: 390px; display: flex; }
.build-sidebar { width: 58px; padding: 17px 0; display: flex; align-items: center; flex-direction: column; gap: 22px; color: var(--white); background: var(--ink); }
.side-logo { width: 28px; height: 28px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 6px; font-weight: 800; }
.build-sidebar span { width: 18px; height: 4px; background: #3b4658; border-radius: 4px; }
.build-sidebar span.active { background: var(--lime); }
.build-content { position: relative; flex: 1; padding: 54px 46px 36px; overflow: hidden; background: linear-gradient(135deg, #fff 70%, #f1f5e7); }
.build-content::after { content: ""; position: absolute; width: 260px; height: 260px; right: -125px; bottom: -115px; border: 26px solid var(--lime); border-radius: 50%; opacity: .65; }
.mini-label { margin: 0 0 14px; color: #87909d; font-family: var(--mono); font-size: 9px; letter-spacing: 0; }
.build-content h2 { margin: 0; font-size: 43px; line-height: 1.05; letter-spacing: 0; }
.build-content h2 strong { color: var(--coral); font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.mock-button { width: 132px; margin-top: 24px; padding: 10px 13px; color: var(--white); background: var(--ink); border-radius: 6px; font-size: 11px; font-weight: 700; }
.mock-button b { float: right; color: var(--lime); }
.signal-row { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 48px; }
.signal-row > div { padding: 12px 9px; color: #737e8b; background: #f3f4f2; border-radius: 6px; font-size: 8px; text-align: center; }
.signal { display: block; width: 23px; height: 23px; margin: 0 auto 5px; border-radius: 50%; }
.signal-a { background: conic-gradient(var(--coral) 80%, #ddd 0); }
.signal-b { background: conic-gradient(var(--blue) 68%, #ddd 0); }
.signal-c { background: conic-gradient(var(--lime-dark) 91%, #ddd 0); }
.floating-pill { position: absolute; z-index: 5; display: flex; align-items: center; gap: 9px; color: var(--ink); background: var(--white); border-radius: 11px; box-shadow: 0 18px 40px rgba(0,0,0,.26); }
.floating-pill span { font-size: 9px; line-height: 1.35; }
.pill-performance { right: -22px; bottom: 24px; padding: 11px 17px; }
.pill-performance b { font-size: 25px; }
.pill-global { left: -24px; bottom: 82px; padding: 11px 15px; }
.pill-global .globe { width: 31px; height: 31px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 20px; }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; top: -10px; left: 25px; }
.orbit-two { width: 375px; height: 375px; top: 65px; left: 105px; border-color: rgba(200,241,53,.15); }
.capability-strip { position: relative; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 64px; padding: 24px 0; color: rgba(255,255,255,.43); border-top: 1px solid var(--dark-line); font-family: var(--mono); font-size: 10px; letter-spacing: 0; text-transform: uppercase; }
.capability-strip i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }

.section-heading { display: grid; grid-template-columns: 1.18fr .82fr; gap: 80px; align-items: end; margin-bottom: 62px; }
.section-heading h2, .faq-intro h2 { margin: 0; font-size: 58px; line-height: 1.06; letter-spacing: 0; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 435px; display: flex; flex-direction: column; padding: 34px 31px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { z-index: 2; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-8px); }
.service-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.service-number { position: absolute; top: 27px; right: 28px; color: #a7aeb8; font-family: var(--mono); font-size: 10px; }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 29px; color: var(--ink); background: var(--lime); border-radius: 13px 13px 13px 3px; font-family: var(--mono); font-size: 17px; font-weight: 500; }
.service-card:nth-child(2) .service-icon, .service-card:nth-child(5) .service-icon, .service-card:nth-child(8) .service-icon { background: #dbe2ff; }
.service-card:nth-child(3) .service-icon, .service-card:nth-child(6) .service-icon, .service-card:nth-child(9) .service-icon { background: #ffe1d9; }
.service-card:nth-child(4) .service-icon, .service-card:nth-child(7) .service-icon { background: #e9f7c2; }
.service-card h3 { margin: 0; font-size: 23px; line-height: 1.25; letter-spacing: 0; }
.service-card p { margin: 16px 0 17px; color: var(--muted); font-size: 14px; }
.service-card.featured p { color: rgba(255,255,255,.62); }
.service-card ul { margin: 0; padding: 0; list-style: none; font-size: 12px; }
.service-card li { margin: 7px 0; color: #555f6d; }
.service-card.featured li { color: rgba(255,255,255,.7); }
.service-card li::before { content: "—"; margin-right: 8px; color: var(--coral); }
.service-card a { width: fit-content; margin-top: auto; padding-top: 22px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; }
.service-card a span { margin-left: 9px; color: var(--coral); }
.service-card.featured a span { color: var(--lime); }

.approach { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.approach::before { content: ""; position: absolute; width: 740px; height: 740px; left: -370px; bottom: -440px; border: 80px solid var(--lime); border-radius: 50%; opacity: .06; }
.approach-grid { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; gap: 110px; }
.approach-copy { position: sticky; top: 145px; align-self: start; }
.approach-copy h2 { margin: 0; font-size: 60px; line-height: 1.05; letter-spacing: 0; }
.approach-copy h2 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.approach-copy > p:not(.eyebrow) { margin: 24px 0 34px; color: rgba(255,255,255,.62); font-size: 17px; }
.approach-points { border-top: 1px solid var(--dark-line); }
.approach-point { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--dark-line); }
.approach-point > span { padding-top: 5px; color: var(--lime); font-family: var(--mono); font-size: 10px; }
.approach-point h3 { margin: 0 0 9px; font-size: 21px; }
.approach-point p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.process { background: var(--white); }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 250px; padding: 28px 22px; border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); }
.process-list > li > span { color: var(--coral); font-family: var(--mono); font-size: 10px; }
.process-list h3 { margin: 65px 0 10px; font-size: 20px; }
.process-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.support-banner { position: relative; min-height: 300px; display: grid; grid-template-columns: 180px 1fr auto; gap: 34px; align-items: center; margin-top: 90px; padding: 48px 55px; color: var(--white); background: var(--ink); border-radius: var(--radius); overflow: hidden; }
.support-orbit { width: 145px; height: 145px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 25px rgba(255,255,255,.025), 0 0 0 50px rgba(200,241,53,.025); }
.support-orbit span { width: 67px; height: 67px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 16px 16px 16px 4px; font-size: 36px; font-weight: 800; transform: rotate(-8deg); }
.support-banner h2 { margin: 0; font-size: 34px; line-height: 1.2; letter-spacing: 0; }
.support-banner > div > p:last-child { margin: 14px 0 0; max-width: 610px; color: rgba(255,255,255,.6); font-size: 14px; }

.testimonials { background: var(--paper); }
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.testimonial-card { min-height: 390px; display: flex; flex-direction: column; padding: 32px 27px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 55px rgba(11, 21, 38, .06); }
.testimonial-rating { color: var(--coral); font-size: 16px; letter-spacing: 2px; }
.testimonial-card > p { margin: 28px 0 30px; color: #4f5a68; font-size: 17px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.testimonial-author > span { width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 12px 12px 12px 3px; font-weight: 800; }
.testimonial-author strong { display: block; font-size: 15px; line-height: 1.25; }
.testimonial-author small { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.faq-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 110px; }
.faq-intro { position: sticky; top: 140px; align-self: start; }
.faq-intro > p:last-child { margin-top: 26px; color: var(--muted); font-size: 14px; }
.faq-intro a { color: var(--ink); border-bottom: 1px solid var(--ink); font-weight: 700; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 27px 2px; font-size: 17px; font-weight: 700; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--coral); font-size: 24px; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -7px 50px 29px 2px; color: var(--muted); font-size: 14px; }

.contact { color: var(--white); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 140px; }
.contact-copy h2 { margin: 0; font-size: 62px; line-height: 1.02; letter-spacing: 0; }
.contact-copy > p:not(.eyebrow):not(.response-note) { max-width: 490px; color: rgba(255,255,255,.62); }
.contact-methods { margin-top: 38px; }
.contact-methods a { display: flex; align-items: center; gap: 14px; width: fit-content; margin: 18px 0; }
.contact-methods a:hover b { color: var(--lime); }
.method-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-family: var(--mono); font-weight: 500; }
.contact-methods small { display: block; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: 0; text-transform: uppercase; }
.contact-methods b { display: block; margin-top: 2px; font-size: 13px; transition: color .2s; }
.response-note { margin-top: 31px; color: rgba(255,255,255,.53); font-family: var(--mono); font-size: 10px; }
.response-note i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 4px rgba(200,241,53,.12); }
.project-form { padding: 40px; color: var(--ink); background: var(--white); border-radius: var(--radius); }
.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 31px; }
.form-heading h3 { margin: 0; font-size: 25px; letter-spacing: 0; }
.form-heading > span { color: var(--coral); font-size: 21px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.project-form label { display: block; margin-bottom: 19px; color: #3d4754; font-size: 11px; font-weight: 700; }
.project-form input, .project-form select, .project-form textarea { width: 100%; margin-top: 7px; padding: 13px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid #d7dade; border-radius: 0; outline: 0; font-size: 13px; font-weight: 500; transition: border-color .2s, box-shadow .2s; }
.project-form textarea { min-height: 105px; resize: vertical; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--ink); box-shadow: 0 1px var(--ink); }
.project-form ::placeholder { color: #9ba2aa; opacity: 1; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 5px; }
.form-footer p { max-width: 290px; margin: 0; color: #8a929c; font-size: 9px; line-height: 1.5; }
.form-footer .button { white-space: nowrap; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
.form-status { display: none; margin-top: 18px; padding: 12px 15px; border-radius: 8px; font-size: 12px; }
.form-status.success { display: block; color: #225b00; background: #ebf9dd; }
.form-status.error { display: block; color: #861d13; background: #fff0ed; }

.site-footer { color: var(--white); background: #07101e; border-top: 1px solid var(--dark-line); }
.footer-top { display: grid; grid-template-columns: 1.4fr .55fr .7fr 1fr; gap: 58px; padding-top: 70px; padding-bottom: 60px; }
.footer-brand { margin-bottom: 21px; }
.footer-top > div:first-child > p { max-width: 290px; color: rgba(255,255,255,.46); font-size: 12px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links h2 { margin: 3px 0 11px; color: rgba(255,255,255,.36); font-family: var(--mono); font-size: 9px; letter-spacing: 0; text-transform: uppercase; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.68); font-size: 11px; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--dark-line); color: rgba(255,255,255,.36); font-size: 9px; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--white); }
.whatsapp-float { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 9px; padding: 9px 13px 9px 9px; color: var(--ink); background: var(--lime); border: 1px solid rgba(11,21,38,.1); border-radius: 999px; box-shadow: 0 10px 35px rgba(11,21,38,.2); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--white); background: #25d366; border-radius: 50%; font-size: 20px; }
.whatsapp-float b { font-size: 11px; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-main { padding: 150px 0 100px; }
.legal-shell { max-width: 790px; }
.legal-shell h1 { margin: 0 0 12px; font-size: 64px; line-height: 1; letter-spacing: 0; }
.legal-updated { margin: 0 0 54px; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0; }
.legal-copy { padding-top: 12px; border-top: 1px solid var(--line); }
.legal-copy h2 { margin: 42px 0 10px; font-size: 22px; letter-spacing: 0; }
.legal-copy p, .legal-copy li { color: #596474; font-size: 14px; }
.legal-copy a { color: var(--ink); border-bottom: 1px solid currentColor; font-weight: 700; }
.legal-copy ul { padding-left: 20px; }

.service-page { background: var(--paper); }
.service-page .site-header { color: var(--ink); background: rgba(246,245,240,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.service-page .footer-top { grid-template-columns: 1.4fr .8fr 1fr; }
.service-page-hero { position: relative; padding: 148px 0 95px; overflow: hidden; }
.service-page-hero::after { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; top: 35px; right: -210px; border: 70px solid var(--lime); border-radius: 50%; opacity: .18; }
.breadcrumb { display: flex; gap: 9px; margin-bottom: 45px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0; text-transform: uppercase; }
.breadcrumb a { color: var(--ink); }
.service-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 85px; align-items: center; }
.service-page-hero h1 { max-width: 780px; margin: 0; font-size: 78px; line-height: .98; letter-spacing: 0; }
.service-page-hero h1 em { color: var(--coral); font-family: Georgia, serif; font-weight: 400; }
.service-page-hero .hero-lead { color: var(--muted); }
.service-page-hero .text-link { color: var(--ink); }
.outcome-panel { padding: 34px; color: var(--white); background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.outcome-panel > p { margin: 0 0 25px; color: rgba(255,255,255,.45); font-family: var(--mono); font-size: 9px; letter-spacing: 0; text-transform: uppercase; }
.outcome-card { display: grid; grid-template-columns: 39px 1fr; gap: 15px; padding: 20px 0; border-top: 1px solid var(--dark-line); }
.outcome-card span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 9px; font-family: var(--mono); font-size: 11px; }
.outcome-card h2 { margin: 0 0 4px; font-size: 16px; }
.outcome-card p { margin: 0; color: rgba(255,255,255,.57); font-size: 12px; }
.fit-strip { padding: 25px 0; color: rgba(255,255,255,.62); background: var(--ink); }
.fit-strip .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 13px 35px; font-family: var(--mono); font-size: 9px; letter-spacing: 0; text-transform: uppercase; }
.fit-strip b { color: var(--lime); font-weight: 500; }
.deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.deliverable-card { min-height: 255px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.deliverable-card > span { color: var(--coral); font-family: var(--mono); font-size: 10px; }
.deliverable-card h3 { margin: 32px 0 11px; font-size: 20px; letter-spacing: 0; }
.deliverable-card p { margin: 0; color: var(--muted); font-size: 13px; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industry-card { min-height: 220px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.industry-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-5px); }
.industry-card span { display: inline-grid; min-width: 42px; height: 36px; place-items: center; margin-bottom: 22px; padding: 0 9px; color: var(--ink); background: var(--lime); border-radius: 10px 10px 10px 3px; font-weight: 800; font-size: 12px; }
.industry-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.25; letter-spacing: 0; }
.industry-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.industry-card:nth-child(4n+2) span { background: #dbe2ff; }
.industry-card:nth-child(4n+3) span { background: #ffe1d9; }
.industry-card:nth-child(4n+4) span { background: #e9f7c2; }
.webapp-use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.webapp-use { min-height: 285px; padding: 30px; color: var(--white); background: var(--ink); border: 1px solid var(--dark-line); border-radius: 16px; }
.webapp-use span { color: var(--lime); font-size: 12px; font-weight: 800; }
.webapp-use h3 { margin: 34px 0 12px; font-size: 22px; letter-spacing: 0; }
.webapp-use p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.service-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; color: var(--white); list-style: none; border-top: 1px solid var(--dark-line); }
.service-flow li { padding: 32px 26px; border-right: 1px solid var(--dark-line); }
.service-flow li:first-child { border-left: 1px solid var(--dark-line); }
.service-flow span { color: var(--lime); font-family: var(--mono); font-size: 10px; }
.service-flow h3 { margin: 45px 0 9px; font-size: 20px; }
.service-flow p { margin: 0; color: rgba(255,255,255,.56); font-size: 12px; }
.dark-section { color: var(--white); background: var(--ink); }
.dark-section .section-heading > p { color: rgba(255,255,255,.57); }
.dark-section .eyebrow.dark { color: rgba(255,255,255,.5); }
.service-cta-note { margin-top: 38px; color: rgba(255,255,255,.46); font-size: 11px; text-align: center; }

body { font-size: 17px; line-height: 1.7; letter-spacing: 0; }
.brand { letter-spacing: 0; }
.brand-name > span { font-family: var(--font); font-size: 10px; letter-spacing: 0; text-transform: none; opacity: .72; }
.primary-nav { font-size: 15px; }
.eyebrow { font-family: var(--font); font-size: 13px; font-weight: 800; letter-spacing: 0; line-height: 1.45; }
.hero h1, .build-content h2, .section-heading h2, .faq-intro h2, .approach-copy h2, .support-banner h2, .contact-copy h2, .legal-shell h1, .service-page-hero h1 { letter-spacing: 0; }
.hero-lead { font-size: 19px; }
.button, .text-link { font-size: 15px; }
.trust-list, .hero-proof span, .hero-media-card figcaption b, .service-card p, .service-card ul, .approach-point p, .process-list p, .support-banner > div > p:last-child, .faq-intro > p:last-child, .accordion details p, .contact-copy > p:not(.eyebrow):not(.response-note), .legal-copy p, .legal-copy li, .deliverable-card p, .outcome-card p, .service-flow p { font-size: 15px; }
.hero-proof strong { font-family: var(--font); font-size: 24px; }
.hero-media-card figcaption span, .mini-label, .capability-strip, .contact-methods small, .footer-links h2, .legal-updated, .breadcrumb, .outcome-panel > p, .fit-strip .container { font-family: var(--font); font-size: 12px; font-weight: 800; letter-spacing: 0; }
.build-topbar { font-size: 11px; }
.mock-button { width: 148px; font-size: 13px; }
.signal-row > div, .floating-pill span { font-size: 11px; }
.service-number, .approach-point > span, .process-list > li > span, .deliverable-card > span, .service-flow span { font-family: var(--font); font-size: 12px; font-weight: 800; }
.service-card h3, .form-heading h3, .legal-copy h2, .deliverable-card h3 { letter-spacing: 0; }
.service-card a { font-size: 14px; }
.contact-methods b { font-size: 15px; }
.response-note { font-family: var(--font); font-size: 13px; }
.project-form label { font-size: 13px; }
.project-form input, .project-form select, .project-form textarea { font-size: 15px; line-height: 1.5; }
.form-footer p, .form-status, .footer-top > div:first-child > p, .footer-links a, .footer-links span, .footer-bottom, .whatsapp-float b, .service-cta-note { font-size: 13px; }

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

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-visual { transform: scale(.88); transform-origin: center right; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .hero-proof div { min-height: auto; }
  .service-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .webapp-use-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(5, minmax(190px, 1fr)); overflow-x: auto; }
  .support-banner { grid-template-columns: 130px 1fr; }
  .support-orbit { width: 105px; height: 105px; }
  .support-banner .button { grid-column: 2; justify-self: start; }
  .faq-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .section { padding: 86px 0; }
  .site-header { background: rgba(11,21,38,.92); backdrop-filter: blur(14px); }
  .site-header.scrolled { background: rgba(246,245,240,.95); }
  .nav-wrap { height: 70px; }
  .nav-toggle { display: block; color: inherit; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 70px 0 0; display: flex; align-items: flex-start; flex-direction: column; gap: 0; padding: 24px; color: var(--ink); background: var(--paper); transition: transform .25s; overflow-y: auto; }
  .js .primary-nav { transform: translateX(100%); }
  .js .primary-nav.open { transform: translateX(0); }
  html:not(.js) .primary-nav { display: none; }
  .primary-nav > a { width: 100%; padding: 18px 3px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav-dropdown { width: 100%; margin: 0; padding: 0; border-bottom: 1px solid var(--line); }
  .nav-dropdown > a { display: block; width: 100%; padding: 18px 3px; font-size: 18px; }
  .nav-menu { position: static; width: 100%; display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0 0 18px 16px; background: transparent; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; backdrop-filter: none; }
  .nav-menu-grid { grid-template-columns: 1fr; }
  .nav-menu a { padding: 7px 0; font-size: 14px; }
  .primary-nav .nav-contact { color: var(--ink); }
  .primary-nav .nav-cta { width: 100%; margin-top: 24px; padding: 16px 19px; }
  .hero { min-height: auto; padding-top: 128px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 650px; font-size: 64px; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .hero-visual { min-height: 610px; margin-top: 10px; transform: none; }
  .hero-media-card { left: 6%; }
  .build-card { top: 150px; left: 50%; transform: translateX(-50%) rotate(1deg); }
  .orbit-one { left: 50%; transform: translateX(-50%); }
  .orbit-two { left: 50%; transform: translateX(-50%); }
  .pill-performance { right: 2%; }
  .pill-global { left: 1%; }
  .capability-strip { width: 100%; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading br { display: none; }
  .approach-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 65px; }
  .approach-copy, .faq-intro, .contact-copy { position: static; }
  .support-banner { padding: 42px 35px; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .service-page .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .legal-main { padding-top: 120px; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .outcome-panel { max-width: 580px; transform: none; }
  .deliverable-grid, .industry-grid, .webapp-use-grid { grid-template-columns: repeat(2, 1fr); }
  .service-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 520px); }
  .section { padding: 72px 0; }
  .brand-mark { width: 33px; height: 33px; }
  .brand-name { font-size: 18px; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: 52px; }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; margin-top: 30px; }
  .trust-list { align-items: flex-start; flex-direction: column; margin-top: 32px; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 28px; }
  .hero-visual { min-height: 690px; margin-top: 16px; }
  .hero-media-card { left: 0; width: 280px; transform: rotate(-2deg); }
  .hero-media-card img { height: 170px; }
  .build-card { top: 230px; width: 420px; max-width: calc(100% - 12px); }
  .build-body { min-height: 306px; }
  .build-sidebar { width: 47px; }
  .build-content { padding: 38px 28px 24px; }
  .build-content h2 { font-size: 33px; }
  .signal-row { margin-top: 30px; }
  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { width: 290px; height: 290px; }
  .pill-global { bottom: 45px; }
  .pill-performance { bottom: 8px; }
  .section-heading { margin-bottom: 43px; }
  .section-heading h2, .faq-intro h2 { font-size: 41px; }
  .service-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: auto; }
  .service-card { min-height: 410px; }
  .approach-copy h2, .contact-copy h2 { font-size: 48px; }
  .approach-point { grid-template-columns: 35px 1fr; gap: 15px; }
  .support-banner { grid-template-columns: 1fr; margin-top: 62px; padding: 35px 25px; }
  .support-banner .button { grid-column: auto; }
  .support-orbit { width: 90px; height: 90px; }
  .support-orbit span { width: 51px; height: 51px; font-size: 26px; }
  .support-banner h2 { font-size: 27px; }
  .project-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .service-page .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child, .footer-top > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding: 19px 0; }
  .footer-bottom p { margin: 0; }
  .whatsapp-float { right: 12px; bottom: 12px; }
  .service-page-hero { padding: 118px 0 68px; }
  .service-page-hero h1 { font-size: 50px; }
  .breadcrumb { margin-bottom: 30px; }
  .deliverable-grid, .industry-grid, .webapp-use-grid, .service-flow { grid-template-columns: 1fr; }
  .service-flow li { min-height: 210px; border-left: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
}
