:root {
  --navy-950: #070b1d;
  --navy-900: #0a1028;
  --navy-850: #0e1532;
  --navy-800: #111a3a;
  --navy-700: #1c2854;
  --blue: #5d7cff;
  --cyan: #62d7ff;
  --purple: #9b5cff;
  --ink: #101936;
  --muted: #65708d;
  --line: #e5e9f3;
  --soft: #f5f7fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(29, 43, 88, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 13px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-light { background: var(--white); }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 10000; padding: 12px 16px; background: var(--white); color: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 78px;
  display: flex;
  align-items: center;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { height: 70px; background: rgba(7, 11, 29, .91); backdrop-filter: blur(18px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 21px; line-height: 1; font-weight: 800; letter-spacing: -.55px; }
.brand-mark { width: 38px; height: 38px; }
.primary-nav { display: flex; align-items: center; gap: 31px; }
.primary-nav > a { font-size: 14px; font-weight: 650; color: rgba(255,255,255,.77); transition: color .2s ease; }
.primary-nav > a:hover, .primary-nav > a.active { color: var(--white); }
.primary-nav .nav-cta { padding: 10px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); color: var(--white); }
.primary-nav .nav-cta:hover { background: rgba(255,255,255,.14); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 12px; background: rgba(255,255,255,.08); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--white); transition: transform .25s ease, opacity .25s ease; }

.hero { position: relative; min-height: 800px; padding: 160px 0 95px; overflow: hidden; }
.hero-grid-overlay { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 82%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(16px); pointer-events: none; }
.glow-one { width: 560px; height: 560px; right: -160px; top: 10px; background: radial-gradient(circle, rgba(93,124,255,.30), rgba(93,124,255,0) 70%); }
.glow-two { width: 430px; height: 430px; left: -160px; bottom: -110px; background: radial-gradient(circle, rgba(155,92,255,.20), rgba(155,92,255,0) 70%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: #b8c5f3; font-size: 12px; font-weight: 800; letter-spacing: 1.65px; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--purple)); border-radius: 5px; }
.eyebrow.dark { color: var(--blue); }
.hero h1 { max-width: 680px; margin: 0 0 25px; font-size: clamp(50px, 6vw, 78px); line-height: .99; letter-spacing: -4.2px; }
.hero h1 em { font-style: normal; color: transparent; background: linear-gradient(95deg, var(--cyan), #7b87ff 50%, #c071ff); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 640px; margin: 0 0 34px; color: #aeb8d4; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 13px 22px; border: 1px solid transparent; border-radius: 13px; font-weight: 750; font-size: 14px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(110deg, var(--blue), var(--purple)); box-shadow: 0 13px 35px rgba(93,124,255,.30); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(93,124,255,.40); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.27); }
.btn-light { color: var(--ink); background: var(--white); }
.hero-points { display: flex; flex-wrap: wrap; gap: 23px; margin-top: 30px; color: #bbc4dd; font-size: 13px; }
.hero-points span { display: flex; align-items: center; gap: 8px; }
.hero-points i { width: 18px; height: 18px; display: inline-grid; place-items: center; color: var(--cyan); border: 1px solid rgba(98,215,255,.35); border-radius: 50%; font-style: normal; font-size: 10px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(122,142,255,.16); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; }
.orbit-two { width: 380px; height: 380px; border-style: dashed; animation: spin 26s linear infinite; }
.dashboard-card { position: relative; z-index: 2; width: 100%; max-width: 535px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 25px; background: linear-gradient(145deg, rgba(24,34,72,.95), rgba(12,18,45,.96)); box-shadow: 0 38px 100px rgba(0,0,0,.36), inset 0 1px rgba(255,255,255,.06); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.dash-topbar { height: 65px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dash-brand { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #d8def1; }
.mini-mark { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--cyan), var(--purple)); font-size: 12px; font-weight: 900; color: var(--white); }
.status-pill { display: flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 999px; background: rgba(98,215,255,.08); color: #bfefff; font-size: 10px; }
.status-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(98,215,255,.10); }
.dash-body { display: grid; grid-template-columns: 49px 1fr; min-height: 375px; }
.dash-sidebar { padding: 22px 0; border-right: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; flex-direction: column; gap: 23px; }
.dash-sidebar span { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 5px; }
.dash-sidebar .side-active { border: 0; background: linear-gradient(135deg, var(--blue), var(--purple)); box-shadow: 0 0 18px rgba(93,124,255,.34); }
.dash-content { padding: 23px; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 19px; }
.dash-heading small { display: block; margin-bottom: 4px; color: #707da6; font-size: 8px; font-weight: 800; letter-spacing: 1.3px; }
.dash-heading h3 { margin: 0; color: #e8edff; font-size: 19px; letter-spacing: -.4px; }
.dash-avatar { width: 37px; height: 37px; display: grid; place-items: center; color: #e9ecff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 50%; font-size: 9px; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-grid article { padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.035); }
.metric-grid span { display: block; color: #8995b8; font-size: 8px; }
.metric-grid strong { display: block; margin: 2px 0 9px; color: #ebefff; font-size: 13px; }
.progress { height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--purple)); }
.activity-panel { margin-top: 13px; padding: 15px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.025); }
.activity-head { display: flex; justify-content: space-between; padding-bottom: 11px; color: #cbd3eb; font-size: 11px; }
.activity-head span { color: var(--cyan); }
.service-row { display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 9px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.055); color: #9faac7; font-size: 10px; }
.service-row b { color: #657193; font-size: 9px; }
.service-dot { width: 7px; height: 7px; border-radius: 2px; }
.service-dot.blue { background: var(--blue); }.service-dot.purple { background: var(--purple); }.service-dot.cyan { background: var(--cyan); }
.floating-chip { position: absolute; z-index: 3; padding: 11px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(17,26,58,.84); backdrop-filter: blur(15px); box-shadow: 0 17px 38px rgba(0,0,0,.26); color: #dce4ff; font-size: 12px; font-weight: 750; animation: float 5s ease-in-out infinite; }
.chip-code { left: -15px; top: 103px; }.chip-growth { right: -10px; bottom: 80px; animation-delay: -2.4s; }

.proof-strip { position: relative; z-index: 4; margin-top: -1px; border-top: 1px solid rgba(255,255,255,.07); background: #0b112a; color: var(--white); }
.proof-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 120px) 1fr; align-items: center; gap: 28px; }
.proof-grid > div:not(.proof-note) { display: flex; flex-direction: column; }
.proof-grid strong { font-size: 22px; letter-spacing: -.5px; }
.proof-grid span { color: #808caf; font-size: 11px; }
.proof-note { justify-self: end; max-width: 320px; color: #8995b7; font-size: 11px; text-align: right; }
.proof-note a { color: #d9e3ff; font-weight: 700; }

.section-heading { max-width: 650px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .solutions-copy h2, .contact-copy h2, .upwork-copy h2 { margin: 0 0 18px; font-size: clamp(37px, 4vw, 54px); line-height: 1.09; letter-spacing: -2.3px; }
.section-heading p, .solutions-copy > p, .contact-copy > p, .upwork-copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 390px; padding: 28px 25px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #ced6f5; box-shadow: var(--shadow); }
.icon-box { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 15px; background: linear-gradient(145deg, #eef3ff, #f7f3ff); color: var(--blue); }
.icon-box svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 12px; font-size: 20px; letter-spacing: -.5px; }
.service-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card ul { list-style: none; margin: auto 0 0; padding: 17px 0 0; border-top: 1px solid var(--line); }
.service-card li { position: relative; padding: 4px 0 4px 15px; color: #4f5b78; font-size: 12px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 13px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.solutions-section { background: var(--soft); overflow: hidden; }
.solutions-layout { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 92px; }
.solutions-copy > p { max-width: 590px; }
.check-list { display: grid; gap: 19px; margin: 35px 0 27px; }
.check-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; }
.check-list i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #e8edff; color: var(--blue); font-style: normal; font-size: 10px; font-weight: 800; }
.check-list span { color: var(--muted); font-size: 14px; }
.check-list strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 14px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }.text-link:hover span { transform: translateX(4px); }
.solution-stack { position: relative; display: grid; gap: 14px; }
.solution-stack::before { content: ""; position: absolute; width: 500px; height: 500px; right: -230px; top: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(93,124,255,.12), transparent 68%); }
.solution-card { position: relative; display: grid; grid-template-columns: 50px 1fr 38px; align-items: center; gap: 18px; padding: 26px; border: 1px solid #dde2f0; border-radius: 20px; background: rgba(255,255,255,.87); box-shadow: 0 13px 40px rgba(37,51,91,.07); transition: transform .25s ease; }
.solution-card:hover { transform: translateX(-5px); }
.solution-card.featured { color: var(--white); border-color: transparent; background: linear-gradient(120deg, #192755, #242158 58%, #44276d); }
.solution-number { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid #d9dfef; border-radius: 13px; color: var(--blue); font-size: 11px; font-weight: 800; }
.featured .solution-number { border-color: rgba(255,255,255,.15); color: var(--cyan); }
.solution-card small { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: 1.2px; }.featured small { color: var(--cyan); }
.solution-card h3 { margin: 3px 0 5px; font-size: 20px; letter-spacing: -.5px; }
.solution-card p { margin: 0; color: var(--muted); font-size: 13px; }.featured p { color: #aeb8d8; }
.arrow-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #eff2fa; color: var(--blue); }.featured .arrow-icon { background: rgba(255,255,255,.08); color: var(--cyan); }

.process-section { color: var(--white); background: var(--navy-950); position: relative; overflow: hidden; }
.process-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(93,124,255,.16), transparent 35%); }
.process-section .container { position: relative; }
.process-section .section-heading p { color: #97a3c4; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { position: relative; min-height: 280px; padding: 31px 29px; border: 1px solid rgba(255,255,255,.08); border-right: 0; background: rgba(255,255,255,.02); }
.process-step:first-child { border-radius: 20px 0 0 20px; }
.process-step:last-child { border-right: 1px solid rgba(255,255,255,.08); border-radius: 0 20px 20px 0; }
.process-step > span { color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: 1px; }
.process-step h3 { margin: 77px 0 10px; font-size: 22px; letter-spacing: -.4px; }
.process-step p { margin: 0; color: #8f9abd; font-size: 13px; }
.process-step::after { content: ""; position: absolute; left: 29px; top: 72px; width: calc(100% - 58px); height: 1px; background: linear-gradient(90deg, var(--blue), transparent); opacity: .55; }

.upwork-section { background: var(--white); }
.upwork-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; padding: 70px; color: var(--white); border-radius: var(--radius-lg); background: linear-gradient(125deg, #111a3a, #172551 52%, #45286f); box-shadow: 0 30px 80px rgba(30,42,87,.22); }
.upwork-card::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -120px; top: -150px; background: radial-gradient(circle, rgba(98,215,255,.19), transparent 67%); }
.upwork-copy, .upwork-summary { position: relative; z-index: 1; }
.platform-label { display: inline-flex; margin-bottom: 19px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #b8c4e5; font-size: 9px; font-weight: 900; letter-spacing: 1.2px; }
.upwork-copy > p { color: #aeb8d7; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 31px; }
.profile-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.10); border-radius: 8px; background: rgba(255,255,255,.05); color: #c3cce5; font-size: 10px; }
.upwork-summary { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 21px; background: rgba(8,13,34,.42); backdrop-filter: blur(14px); }
.summary-logo { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 19px; border-radius: 16px; background: linear-gradient(135deg, var(--cyan), var(--purple)); font-size: 16px; font-weight: 900; }
.upwork-summary h3 { margin: 0; font-size: 23px; }.upwork-summary > p { margin: 2px 0 25px; color: #8e9abc; font-size: 12px; }
.summary-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.summary-stats div { padding: 17px 8px; border-right: 1px solid rgba(255,255,255,.08); }.summary-stats div:last-child { border: 0; }
.summary-stats strong { display: block; font-size: 18px; }.summary-stats span { color: #8490b1; font-size: 9px; }
.review-note { display: grid; grid-template-columns: 27px 1fr; gap: 10px; margin-top: 20px; color: #8f9abb; font-size: 10px; line-height: 1.5; }
.review-note span { color: var(--cyan); font-size: 16px; }.review-note p { margin: 0; }

.contact-section { color: var(--white); background: var(--navy-950); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 85px; }
.contact-copy > p { color: #95a0c1; }
.contact-options { display: grid; gap: 12px; margin-top: 34px; }
.contact-options > a, .contact-options > div { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 14px; padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.025); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(93,124,255,.14); color: var(--cyan); font-weight: 800; }
.contact-options strong { display: block; font-size: 13px; }.contact-options small { color: #7f8aaa; font-size: 10px; }
.contact-form { padding: 35px; border: 1px solid rgba(255,255,255,.09); border-radius: 24px; background: #0e1531; box-shadow: 0 25px 70px rgba(0,0,0,.24); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 17px; color: #c3cbe0; font-size: 11px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--white); border: 1px solid rgba(255,255,255,.09); outline: 0; border-radius: 11px; background: rgba(255,255,255,.035); font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #687392; }
.contact-form select { color-scheme: dark; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(93,124,255,.12); }
.contact-form .invalid { border-color: #ff7087; }
.form-submit { width: 100%; border: 0; }
.form-status { margin: 13px 0 0; color: #6f7b9d; font-size: 9px; text-align: center; }
.form-status.success { color: #bfefff; }
.form-status.error { color: #ff94a5; }

.site-footer { color: var(--white); background: #060a19; border-top: 1px solid rgba(255,255,255,.06); }
.footer-top { display: grid; grid-template-columns: 1fr 180px 180px; gap: 60px; padding: 60px 0 42px; }
.brand-footer { width: max-content; }
.footer-brand p { max-width: 420px; margin: 18px 0 0; color: #7782a2; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 4px; color: #d5dbed; font-size: 12px; }
.footer-links a { color: #7782a2; font-size: 12px; }.footer-links a:hover { color: var(--white); }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.06); color: #5f6987; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 1050px) {
  .hero-layout { gap: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 350px; }
  .solutions-layout { gap: 50px; }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-note { display: none; }
  .upwork-card { gap: 40px; padding: 55px; }
}

@media (max-width: 850px) {
  .section { padding: 88px 0; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 70px 16px auto; display: grid; gap: 0; padding: 15px; border: 1px solid rgba(255,255,255,.10); border-radius: 17px; background: rgba(9,14,34,.97); backdrop-filter: blur(18px); box-shadow: 0 25px 60px rgba(0,0,0,.34); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav > a { padding: 14px 13px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .primary-nav > a:last-child { margin-top: 7px; border: 0; text-align: center; }
  .hero { min-height: auto; padding: 135px 0 80px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-points { justify-content: center; }
  .hero-lead, .hero h1 { margin-inline: auto; }
  .hero-visual { min-height: 480px; margin-top: 15px; }
  .dashboard-card { max-width: 575px; transform: none; }
  .chip-code { left: 5%; }.chip-growth { right: 4%; }
  .solutions-layout, .upwork-card, .contact-layout { grid-template-columns: 1fr; }
  .solutions-layout { gap: 55px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-step, .process-step:first-child, .process-step:last-child { border: 1px solid rgba(255,255,255,.08); border-radius: 18px; }
  .upwork-card { padding: 50px; }
  .contact-layout { gap: 50px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .site-header { height: 70px; }
  .brand { font-size: 18px; }.brand-mark { width: 34px; height: 34px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 48px; letter-spacing: -2.8px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-points { display: grid; gap: 9px; }
  .hero-visual { min-height: 405px; }
  .orbit-one { width: 350px; height: 350px; }.orbit-two { width: 290px; height: 290px; }
  .dashboard-card { border-radius: 18px; }
  .dash-topbar { height: 54px; }.dash-body { grid-template-columns: 36px 1fr; min-height: 300px; }.dash-content { padding: 14px; }.dash-sidebar { gap: 16px; }.dash-sidebar span { width: 14px; height: 14px; }
  .metric-grid { grid-template-columns: 1fr; }.metric-grid article:nth-child(n+2) { display: none; }
  .chip-code, .chip-growth { padding: 8px 10px; font-size: 9px; }
  .proof-grid { min-height: 100px; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 20px 0; text-align: center; }
  .section-heading { margin-bottom: 39px; }
  .section-heading h2, .solutions-copy h2, .contact-copy h2, .upwork-copy h2 { font-size: 37px; letter-spacing: -1.7px; }
  .section-heading p, .solutions-copy > p, .contact-copy > p, .upwork-copy > p { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .solution-card { grid-template-columns: 42px 1fr; padding: 21px; }.solution-card .arrow-icon { display: none; }.solution-card h3 { font-size: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 220px; }.process-step h3 { margin-top: 55px; }
  .upwork-card { padding: 33px 24px; border-radius: 21px; }
  .summary-stats { grid-template-columns: 1fr; }.summary-stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }.summary-stats div:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; justify-content: center; gap: 4px; }
}

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