:root {
  --ink: #111528;
  --navy: #171b4d;
  --blue: #0b43e8;
  --blue-bright: #2f64ff;
  --blue-soft: #eaf0ff;
  --cream: #f7f6f2;
  --white: #fff;
  --muted: #62687b;
  --line: #dfe3ec;
  --green: #19b77b;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(16, 24, 62, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 12px 16px; border-radius: 8px; background: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; padding: 18px 0; transition: .3s ease; }
.site-header.is-scrolled { padding: 10px 0; background: rgba(255, 255, 255, .9); border-bottom: 1px solid rgba(17, 21, 40, .08); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 1.05rem; letter-spacing: .04em; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand strong { font-size: 1.16em; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; text-decoration: none; }
.main-nav > a:not(.button)::after { position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--blue); content: ""; transition: width .25s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { width: 100%; }
.menu-button { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--navy); transition: .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 24px; border: 1px solid var(--blue); border-radius: 999px; color: var(--white); background: var(--blue); box-shadow: 0 12px 30px rgba(11, 67, 232, .22); font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #0639cc; box-shadow: 0 16px 34px rgba(11, 67, 232, .3); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid #7da1ff; outline-offset: 3px; }
.button--small { min-height: 44px; padding-inline: 20px; }
.button--white { border-color: var(--white); color: var(--blue); background: var(--white); box-shadow: none; }
.button--white:hover { color: var(--white); background: transparent; }
.button--ghost { border-color: rgba(255,255,255,.35); background: transparent; box-shadow: none; }
.button--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero { position: relative; overflow: hidden; min-height: 820px; padding: 156px 0 100px; background: linear-gradient(140deg, #fbfcff 0%, #f5f7ff 55%, #edf2ff 100%); }
.hero::before { position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(#94a5d2 1px, transparent 1px); background-size: 28px 28px; content: ""; mask-image: linear-gradient(to bottom, #000, transparent 70%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); }
.hero-glow--one { top: -160px; right: -120px; width: 520px; height: 520px; background: rgba(65, 105, 255, .2); }
.hero-glow--two { bottom: -250px; left: 30%; width: 500px; height: 500px; background: rgba(85, 48, 232, .1); }
.hero-grid { position: relative; display: grid; align-items: center; gap: 70px; grid-template-columns: 1.05fr .95fr; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 23px; color: #4964c9; font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.eyebrow--blue { color: var(--blue); }
.hero h1 { max-width: 710px; margin: 0; color: var(--navy); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(3.7rem, 6vw, 6.2rem); font-weight: 750; letter-spacing: -.065em; line-height: .99; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 640px; margin: 31px 0; color: var(--muted); font-size: 1.15rem; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; gap: 8px; font-weight: 700; text-decoration: none; }
.hero-proof { display: grid; max-width: 680px; margin-top: 54px; padding-top: 28px; border-top: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.hero-proof div { padding-right: 20px; }
.hero-proof div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--navy); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 1.1rem; }
.hero-proof span { margin-top: 4px; color: var(--muted); font-size: .76rem; }

.hero-visual { position: relative; min-height: 520px; }
.performance-card { position: absolute; z-index: 2; top: 48px; right: 0; width: min(100%, 540px); overflow: hidden; padding: 28px; border: 1px solid rgba(106,128,197,.22); border-radius: 28px; background: rgba(255,255,255,.88); box-shadow: var(--shadow); backdrop-filter: blur(16px); transform: rotate(1.5deg); }
.card-top, .flow-panel__head, .flow-panel__foot { display: flex; align-items: center; justify-content: space-between; }
.mini-brand { display: flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 800; }
.live, .flow-panel__head small { display: flex; align-items: center; gap: 7px; color: #16895f; font-size: .76rem; font-weight: 700; }
.live i, .flow-panel__head i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(25,183,123,.12); }
.chart-area { position: relative; margin-top: 32px; padding: 22px 12px 0; border-top: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0 42px, rgba(55,72,118,.06) 43px); }
.chart-label small, .chart-label strong { display: block; }
.chart-label small { color: var(--muted); }
.chart-label strong { margin-top: 4px; color: var(--navy); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 2.45rem; }
.bar-chart { display: flex; height: 155px; margin-top: -22px; align-items: flex-end; gap: 10px; }
.bar-chart i { display: block; width: 100%; height: var(--height); border-radius: 8px 8px 3px 3px; background: linear-gradient(to top, rgba(47,100,255,.15), var(--blue-bright)); box-shadow: inset 0 1px rgba(255,255,255,.35); }
.metrics-row { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.metrics-row div { position: relative; padding: 15px; border-radius: 15px; background: #f5f7fc; }
.metrics-row small, .metrics-row strong { display: block; }
.metrics-row small { color: var(--muted); font-size: .68rem; }
.metrics-row strong { margin-top: 5px; color: var(--navy); font-size: .8rem; }
.trend { position: absolute; top: 13px; right: 13px; color: var(--blue); font-weight: 800; }
.float-chip { position: absolute; z-index: 3; padding: 13px 17px; border: 1px solid #dbe3f5; border-radius: 12px; background: var(--white); box-shadow: 0 15px 35px rgba(25,35,76,.12); color: var(--navy); font-size: .78rem; font-weight: 700; }
.float-chip span { margin-right: 5px; color: var(--blue); }
.float-chip--one { top: 23px; left: -28px; }
.float-chip--two { right: -24px; bottom: 76px; }
.orbit { position: absolute; border: 1px solid rgba(44,86,221,.15); border-radius: 50%; }
.orbit--one { inset: -45px -170px 5px -10px; }
.orbit--two { inset: 35px -90px 80px 60px; }

.client-strip { padding: 25px 0; color: var(--white); background: var(--navy); }
.client-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.client-strip p { margin: 0; color: #aeb8d7; font-size: .78rem; }
.client-strip__inner > div { display: flex; align-items: center; gap: 24px; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .13em; }
.client-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-bright); }

.section { padding: 120px 0; }
.section--light { background: var(--cream); }
.section-heading { display: grid; align-items: end; gap: 80px; margin-bottom: 56px; grid-template-columns: 1.3fr .7fr; }
.section h2 { margin: 0; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(2.7rem, 5vw, 4.8rem); letter-spacing: -.055em; line-height: 1.06; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.services-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.service-card { position: relative; min-height: 360px; padding: 38px; overflow: hidden; border: 1px solid #e2e2de; border-radius: var(--radius); background: var(--white); transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(28,34,65,.09); }
.service-card--featured { color: var(--white); background: var(--blue); }
.service-card--featured::after { position: absolute; right: -70px; bottom: -110px; width: 290px; height: 290px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; content: ""; box-shadow: 0 0 0 48px rgba(255,255,255,.05), 0 0 0 96px rgba(255,255,255,.04); }
.service-number { color: #9197a8; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: .78rem; font-weight: 700; }
.service-card--featured .service-number { color: #b9caff; }
.service-icon { position: absolute; top: 30px; right: 34px; display: grid; width: 49px; height: 49px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: 1.2rem; }
.service-card--featured .service-icon { border-color: rgba(255,255,255,.28); color: var(--white); }
.service-card h3 { max-width: 420px; margin: 80px 0 14px; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 2rem; letter-spacing: -.035em; }
.service-card p { max-width: 510px; margin: 0; color: var(--muted); line-height: 1.65; }
.service-card--featured p { color: #d8e1ff; }
.service-card ul { position: relative; z-index: 1; display: flex; gap: 9px; margin: 26px 0 0; padding: 0; list-style: none; flex-wrap: wrap; }
.service-card li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; color: #62687b; font-size: .72rem; }
.service-card--featured li { border-color: rgba(255,255,255,.3); color: var(--white); }

.garageflow { position: relative; overflow: hidden; color: var(--white); background: #0d1234; }
.garageflow::before { position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(31,79,255,.3), transparent 35%); content: ""; }
.garageflow-grid { position: relative; display: grid; align-items: center; gap: 95px; grid-template-columns: .9fr 1.1fr; }
.garageflow-copy h2 { font-size: clamp(4rem, 7vw, 7rem); }
.garageflow-tagline { margin: 8px 0 24px; color: #8eabff; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 1.4rem; font-weight: 700; }
.garageflow-copy > p:not(.eyebrow):not(.garageflow-tagline) { color: #bdc4da; line-height: 1.75; }
.check-list { margin: 32px 0; padding: 0; list-style: none; }
.check-list li { margin: 14px 0; color: #e5e9f5; }
.check-list span { display: inline-grid; width: 25px; height: 25px; margin-right: 10px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: .72rem; }
.flow-panel { padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.08); box-shadow: 0 30px 90px rgba(0,0,0,.25); backdrop-filter: blur(15px); }
.flow-panel__head { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.13); font-weight: 800; }
.flow-panel ol { margin: 20px 0; padding: 0; list-style: none; }
.flow-panel li { display: grid; align-items: center; gap: 16px; margin: 12px 0; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(255,255,255,.055); grid-template-columns: 40px 1fr auto; }
.flow-panel li > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: #a9bdff; background: rgba(55,96,247,.22); font-size: .72rem; font-weight: 800; }
.flow-panel li strong, .flow-panel li small { display: block; }
.flow-panel li small { margin-top: 4px; color: #929bb9; }
.flow-panel li b { color: #77a0ff; }
.flow-panel__foot { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #8f98b6; font-size: .8rem; }
.flow-panel__foot strong { color: var(--white); }

.case-study { display: grid; align-items: center; gap: 80px; grid-template-columns: .8fr 1.2fr; }
.case-intro > p:not(.eyebrow) { max-width: 520px; color: var(--muted); line-height: 1.7; }
.case-logo { display: flex; width: 190px; height: 100px; margin-top: 32px; overflow: hidden; align-items: center; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.case-logo img { width: 100%; max-width: 100%; height: 100%; margin: auto; object-fit: contain; object-position: center; transform: none; }
.result-grid { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); gap: 1px; grid-template-columns: repeat(2, 1fr); }
.result-grid article { min-height: 210px; padding: 30px; background: var(--white); }
.result-grid small, .result-grid strong, .result-grid span { display: block; }
.result-grid small { color: var(--muted); }
.result-grid strong { margin: 34px 0 6px; color: var(--navy); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 3.1rem; letter-spacing: -.05em; }
.result-grid span { color: var(--muted); font-size: .82rem; }
.result-grid .result-accent { color: var(--white); background: var(--blue); }
.result-grid .result-accent small, .result-grid .result-accent strong, .result-grid .result-accent span { color: var(--white); }
.legal-note { margin-top: 36px; color: #7a7f8e; font-size: .76rem; text-align: center; }

.about { color: var(--white); background: var(--navy); }
.about-grid { display: grid; gap: 100px; grid-template-columns: 1fr 1fr; }
.about-copy h2 { font-size: clamp(4rem, 7vw, 7rem); }
.about-lead { margin-top: 46px !important; color: var(--white) !important; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 1.65rem !important; font-weight: 600; letter-spacing: -.025em; line-height: 1.35 !important; }
.about-text > p { color: #acb5d0; font-size: 1.05rem; line-height: 1.75; }
.values { margin-top: 42px; }
.values div { display: grid; gap: 24px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.14); grid-template-columns: 38px 1fr; }
.values span { color: #7580a6; font-size: .75rem; }
.values strong { font-size: 1rem; }

.cta-section { padding: 45px 0; background: var(--cream); }
.cta-card { position: relative; overflow: hidden; padding: 95px 70px; border-radius: 34px; color: var(--white); background: var(--blue); text-align: center; }
.cta-card::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 38px 38px; content: ""; }
.cta-card > * { position: relative; }
.cta-card .eyebrow { justify-content: center; color: #c4d1ff; }
.cta-card h2 { max-width: 850px; margin-inline: auto; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -.06em; line-height: 1; }
.cta-card > p:not(.eyebrow) { max-width: 700px; margin: 28px auto; color: #d6e0ff; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.cta-orb { position: absolute; top: -200px; left: 50%; width: 700px; height: 500px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 80px rgba(255,255,255,.035), 0 0 0 160px rgba(255,255,255,.025); }

.site-footer { padding: 70px 0 24px; color: #bec5da; background: #090d25; }
.footer-main { display: grid; align-items: start; gap: 35px; padding-bottom: 56px; grid-template-columns: 1fr .9fr 1fr; }
.brand--footer { color: var(--white); }
.footer-main > p { max-width: 390px; margin: 0; line-height: 1.7; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 26px; flex-wrap: wrap; }
.footer-main nav a { color: var(--white); font-size: .88rem; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .main-nav { gap: 20px; }
  .hero-grid, .garageflow-grid, .case-study { gap: 50px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(3.5rem, 7vw, 5.2rem); }
  .float-chip--one { left: -10px; }
  .float-chip--two { right: -10px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px, 720px); }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 74px 18px auto; display: none; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 9px; }
  .hero { padding: 138px 0 80px; }
  .hero-grid, .garageflow-grid, .case-study, .about-grid, .section-heading { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .performance-card { left: 4%; width: 92%; }
  .section-heading, .garageflow-grid, .case-study, .about-grid { gap: 45px; }
  .client-strip__inner { align-items: flex-start; flex-direction: column; }
  .client-strip__inner > div { width: 100%; justify-content: space-between; gap: 12px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { justify-content: flex-start; grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 520px); }
  .site-header { padding: 10px 0; background: rgba(255,255,255,.92); backdrop-filter: blur(15px); }
  .brand img { width: 39px; height: 39px; }
  .brand { font-size: .92rem; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions, .cta-actions { align-items: stretch; flex-direction: column; }
  .text-link { justify-content: center; padding: 12px; }
  .hero-proof { gap: 18px; grid-template-columns: 1fr; }
  .hero-proof div + div { padding: 16px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .hero-visual { min-height: 475px; }
  .performance-card { top: 30px; left: 0; width: 100%; padding: 19px; transform: none; }
  .mini-brand { font-size: .75rem; }
  .live { font-size: .65rem; }
  .chart-area { padding-inline: 0; }
  .metrics-row { grid-template-columns: 1fr; }
  .metrics-row div { min-height: 62px; }
  .float-chip { display: none; }
  .orbit { display: none; }
  .client-strip__inner > div { display: grid; grid-template-columns: 1fr 1fr; }
  .client-strip i { display: none; }
  .section { padding: 82px 0; }
  .section h2 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  .services-grid, .result-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; padding: 28px; }
  .service-card h3 { margin-top: 70px; font-size: 1.7rem; }
  .garageflow-copy h2, .about-copy h2 { font-size: clamp(3.7rem, 17vw, 5.2rem); }
  .flow-panel { padding: 17px; }
  .flow-panel li { gap: 10px; padding: 13px; grid-template-columns: 38px 1fr auto; }
  .flow-panel li strong { font-size: .8rem; }
  .flow-panel li small { font-size: .65rem; }
  .flow-panel__foot { align-items: flex-start; gap: 8px; flex-direction: column; }
  .result-grid article { min-height: 175px; }
  .cta-card { padding: 74px 22px; border-radius: 24px; }
  .cta-card h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { grid-column: auto; flex-direction: column; }
  .footer-bottom { gap: 10px; flex-direction: column; }
}

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