:root {
  --chrome-navy: #0a192f;
  --chrome-blue: #007cff;
  --chrome-white: #f8f9fa;
  --chrome-teal: #00f6ed;
  --chrome-gray: #343a40;
  --chrome-gold: #f5b700;
  --chrome-line: rgba(255, 255, 255, .12);
  --chrome-muted: rgba(248, 249, 250, .64);
  --chrome-gutter: clamp(20px, 4vw, 68px);
  --chrome-ease: cubic-bezier(.2, .75, .25, 1);
}

.site-unified-font,
.site-unified-font :where(h1,h2,h3,h4,h5,h6,p,a,span,li,button,input,textarea,select,label,small,strong,em,dt,dd,blockquote,address,time) {
  font-family: "Satoshi", Inter, Arial, sans-serif !important;
}

.site-header, .site-header *, .footer, .footer *, .fab, .fab *, .mbar, .mbar * { box-sizing: border-box; }
.site-header ul, .footer ul { margin: 0; padding: 0; list-style: none; }
.site-header a,
.site-header a:link,
.site-header a:visited,
.site-header a:hover,
.site-header a:focus,
.site-header a:active,
.footer a,
.fab a,
.mbar a {
  color: inherit;
  text-decoration: none !important;
}
.site-header button, .fab button { appearance: none; border: 0; font: inherit; cursor: pointer; }
.site-header img, .footer img, .site-header svg, .footer svg, .fab svg, .mbar svg { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 300; left: 16px; top: -80px; padding: 12px 18px; border-radius: 999px; background: var(--chrome-teal); color: var(--chrome-navy); font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; left: 16px; right: 16px; top: 14px; width: auto !important; max-width: calc(100vw - 32px); min-width: 0; height: 74px; margin: 0 !important; display: grid; grid-template-columns: auto minmax(420px, 1fr) auto; align-items: center; padding: 0 10px 0 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: linear-gradient(110deg,rgba(12,16,24,.96),rgba(16,23,34,.88)); color: var(--chrome-white); box-shadow: 0 18px 55px rgba(0,0,0,.34); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.site-header::before { content: ""; position: absolute; left: 22px; right: 22px; top: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--chrome-teal),var(--chrome-teal),transparent); opacity: .7; }
.site-header > * { min-width: 0; }
.brand { display: flex; align-items: center; gap: 14px; width: max-content; max-width: 100%; }
.brand__mark { display: flex; align-items: center; padding-right: 15px; border-right: 1px solid var(--chrome-line); }
.brand__logo { width: 112px !important; height: auto !important; padding: 0 !important; filter: none !important; }
.brand__logo--dark { display: none !important; }
.brand__logo--light { display: block !important; }
.brand__meta { color: #858e9d; font-size: 9px; font-weight: 600; line-height: 1.35; text-transform: uppercase; letter-spacing: .13em; }
.brand__meta b { color: #e5e9ef; font-weight: 700; }
.site-nav { justify-self: center; min-width: 0; max-width: 100%; }
.site-nav ul { display: flex; align-items: center; gap: 6px; padding: 4px; border: 1px solid var(--chrome-line); border-radius: 999px; background: rgba(255,255,255,.025); }
.site-nav a { display: block; padding: 8px 14px; border-radius: 999px; color: #b5bdc9; font-size: 13px; font-weight: 600; transition: .25s; white-space: nowrap; }
.site-nav a:hover, .site-nav a.is-active { background: var(--chrome-teal); color: var(--chrome-navy); }
.header-actions { justify-self: end; min-width: max-content; display: flex; align-items: center; gap: 7px; }
.header-cta { height: 46px; display: flex; align-items: center; gap: 14px; padding: 0 7px 0 18px; border-radius: 14px; background: var(--chrome-teal); color: var(--chrome-navy) !important; font-size: 13px; font-weight: 800; transition: transform .25s var(--chrome-ease), background .25s; white-space: nowrap; }
.header-cta i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--chrome-navy); color: var(--chrome-teal); font-size: 17px; font-style: normal; transition: transform .3s var(--chrome-ease); }
.header-cta:hover { transform: translateY(-2px); background: #fff; }
.header-cta:hover i { transform: rotate(45deg); }
.menu-btn { display: flex; align-items: center; gap: 10px; height: 46px; padding: 0 14px; border: 1px solid var(--chrome-line) !important; border-radius: 14px; background: rgba(255,255,255,.055); color: #fff; font-weight: 700; }
.menu-btn:hover { border-color: rgba(0,246,237,.55) !important; color: var(--chrome-teal); }
.menu-btn__icon { position: relative; width: 18px; height: 12px; }
.menu-btn__icon i { position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; transition: .3s; }
.menu-btn__icon i:first-child { top: 2px; }
.menu-btn__icon i:last-child { top: 8px; }
.menu-btn[aria-expanded=true] i:first-child { top: 5px; transform: rotate(45deg); }
.menu-btn[aria-expanded=true] i:last-child { top: 5px; transform: rotate(-45deg); }
.mega { position: fixed; z-index: 99; left: 18px; right: 18px; top: 96px; padding: clamp(24px,4vw,54px); border: 1px solid var(--chrome-line); border-radius: 28px; background: var(--chrome-navy); color: var(--chrome-white); box-shadow: 0 40px 90px rgba(0,0,0,.5); opacity: 0; transform: translateY(-12px); transition: .35s var(--chrome-ease); }
.mega.is-open { opacity: 1; transform: none; }
.mega__inner { display: grid; grid-template-columns: .8fr 1.15fr 1fr; gap: 44px; max-width: 1300px; margin: auto; }
.mega__title { margin: 0 0 18px; color: var(--chrome-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.mega__links a { display: inline-block; padding: 4px 0; font-size: 20px; font-weight: 600; transition: color .2s, transform .2s; }
.mega__links a:hover { color: var(--chrome-teal); transform: translateX(5px); }
.mega__links--lg a { font-size: clamp(28px,3vw,50px); font-weight: 700; letter-spacing: -.04em; line-height: 1.12; }
.mega__card { position: relative; min-height: 250px; border-radius: 22px; overflow: hidden; }
.mega__card img { position: absolute; width: 100%; height: 100% !important; object-fit: cover; filter: saturate(.7); }
.mega__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent,rgba(0,0,0,.85)); }
.mega__cardText { position: absolute; z-index: 1; left: 20px; bottom: 18px; }
.mega__cardText strong { display: block; color: var(--chrome-teal); font-size: 28px; }
.mega-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }

.footer { position: relative; z-index: 2; padding: 12px 12px 24px; background: var(--chrome-white); color: var(--chrome-navy); border-top: 0; }
.footer__ticker { height: 54px; margin-bottom: 12px; overflow: hidden; border-radius: 18px; background: var(--chrome-teal); color: var(--chrome-navy); }
.footer__ticker > div { width: max-content; height: 100%; display: flex; align-items: center; gap: 24px; padding-left: 24px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; animation: chromeTicker 22s linear infinite; }
.footer__ticker i { width: 7px; height: 7px; border-radius: 50%; background: var(--chrome-blue); }
.footer__cta { position: relative; min-height: 460px; margin: 0 0 12px; padding: clamp(30px,4vw,56px); display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.55fr); gap: 44px; overflow: hidden; border-radius: 30px; background: var(--chrome-blue); color: #fff; }
.footer__launchCopy { position: relative; z-index: 2; display: flex; flex-direction: column; }
.footer__kicker { display: flex; align-items: center; gap: 10px; margin: 0 auto auto 0; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.footer__kicker span { width: 9px; height: 9px; border-radius: 50%; background: var(--chrome-teal); box-shadow: 0 0 0 6px rgba(0,246,237,.13); }
.footer__headline { max-width: 10.5ch; margin: 52px 0 0; padding: 0; color: #fff; font-size: clamp(42px,5.4vw,78px); font-weight: 800; line-height: .86; letter-spacing: -.055em; text-transform: uppercase; }
.footer__headline strong { display: block; color: var(--chrome-teal); font-weight: 800; }
.footer__launchText { max-width: 48ch; margin: 22px 0 0; color: #d7defe; font-size: 15px; }
.footer__launchAction { position: relative; z-index: 2; align-self: end; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); }
.footer__launchAction > p { margin: 0 0 13px; color: #c9d1f8; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.footer__launchAction a { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: clamp(20px,2.1vw,30px); font-weight: 700; letter-spacing: -.04em; }
.footer__launchAction i { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--chrome-teal); color: var(--chrome-navy); font-size: 25px; font-style: normal; transition: transform .35s var(--chrome-ease); }
.footer__launchAction a:hover i { transform: rotate(45deg); }
.footer__radar { position: absolute; right: -90px; top: -160px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; animation: chromeOrbit 18s linear infinite; }
.footer__radar i { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.footer__radar i:nth-child(1) { inset: 70px; }.footer__radar i:nth-child(2) { inset: 145px; }.footer__radar i:nth-child(3) { inset: 220px; }
.footer__radar b { position: absolute; left: 12%; top: 51%; width: 16px; height: 16px; border-radius: 50%; background: var(--chrome-teal); box-shadow: 0 0 0 10px rgba(0,246,237,.15); }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3,.6fr) 1fr; gap: 40px; padding: clamp(28px,3vw,44px); border: 1px solid rgba(10,25,47,.14); border-radius: 28px; background: var(--chrome-white); color: var(--chrome-navy); }
.footer__logo { width: 150px !important; height: auto !important; filter: none !important; }
.footer__mail { display: inline-block; margin-top: 16px; color: var(--chrome-blue) !important; font-weight: 600; }
.socials { display: flex; gap: 8px; margin-top: 20px !important; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(10,25,47,.18); border-radius: 50%; background: rgba(255,255,255,.45); }
.socials a:hover { background: var(--chrome-teal); }.socials svg { width: 18px; }
.footer__col p { margin: 0 0 14px; color: var(--chrome-navy); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.footer__col li { color: var(--chrome-gray); font-size: 14px; }.footer__col li + li { margin-top: 7px; }.footer__col a:hover { color: var(--chrome-blue); }
.clocks { display: flex; gap: 10px; }.clock { margin: 0; text-align: center; }.clock svg { width: 66px; }.clock line { stroke: var(--chrome-navy); stroke-linecap: round; transform-origin: 50px 50px; }.clock .h { stroke-width: 4; }.clock .m { stroke-width: 2.7; }.clock .s { stroke: var(--chrome-blue); stroke-width: 1.5; }.clock figcaption { margin-top: 7px; font-size: 11px; }.clock time { display: block; color: #626a74; font-size: 10px; }
.footer__word { position: relative; max-width: none; margin: 52px 2vw 30px; color: var(--chrome-navy); font-size: clamp(76px,15vw,230px); font-weight: 800; line-height: .66; letter-spacing: -.075em; white-space: nowrap; }
.footer__legal { display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; border-top: 1px solid rgba(8,11,18,.15); color: #626a74; font-size: 12px; }.footer__legal a { margin-left: 16px; }.footer__legal a:hover { color: var(--chrome-navy); }

.fab { position: fixed; z-index: 60; right: 20px; bottom: 20px; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.fab__chat, .fab__mail { position: relative; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--chrome-teal); color: var(--chrome-navy); box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.fab__mail { background: var(--chrome-white); }.fab svg { width: 21px; }.fab__dot { position: absolute; right: 1px; top: 1px; width: 10px; height: 10px; border: 2px solid var(--chrome-navy); border-radius: 50%; background: var(--chrome-gold); }
.fab__bubble { position: absolute; right: 62px; top: 11px; margin: 0; padding: 8px 12px; border-radius: 10px; background: var(--chrome-white); color: var(--chrome-navy); font-size: 12px; white-space: nowrap; }
.fab__panel { width: 250px; padding: 16px; border: 1px solid var(--chrome-line); border-radius: 18px; background: var(--chrome-gray); color: var(--chrome-white); box-shadow: 0 20px 50px rgba(0,0,0,.4); }.fab__panel p { margin: 0 0 10px; color: var(--chrome-muted); font-size: 12px; }.fab__panel a { display: block; padding: 8px 0; border-top: 1px solid var(--chrome-line); font-size: 13px; }.fab__panel a:hover { color: var(--chrome-teal); }
.mbar, .cursor { display: none; }

@keyframes chromeTicker { to { transform: translateX(-50%); } }
@keyframes chromeOrbit { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  .site-nav { display: none; }.site-header { grid-template-columns: 1fr auto; }.mega__inner { grid-template-columns: 1fr 1fr; }.mega__card { grid-column: 1/-1; min-height: 170px; }
  .footer__top { grid-template-columns: 1.2fr repeat(3,.7fr); }.clocks { grid-column: 1/-1; margin-top: 20px; }
}

@media (max-width: 700px) {
  .site-header { display: flex; justify-content: space-between; gap: 10px; left: 10px; right: 10px; top: 10px; max-width: calc(100vw - 20px); height: 60px; padding: 0 10px 0 14px; overflow: hidden; border-radius: 17px; }.brand { min-width: 0; flex: 0 1 auto; gap: 0; }.brand__mark { padding-right: 0; border-right: 0; }.brand__meta, .header-cta { display: none; }.brand__logo { width: 98px !important; }.header-actions { min-width: 0; margin-left: auto; }.menu-btn { min-width: 76px; height: 40px; justify-content: center; padding-inline: 11px; background: var(--chrome-teal); color: var(--chrome-navy); border-color: var(--chrome-teal) !important; }.mega { left: 10px; right: 10px; top: 79px; max-height: calc(100svh - 90px); overflow: auto; }.mega__inner { grid-template-columns: 1fr; gap: 28px; }.mega__card { grid-column: auto; }.mega__links--lg a { font-size: 30px; }
  .footer { padding: 8px 8px 90px; }.footer__ticker { height: 46px; border-radius: 14px; }.footer__ticker > div { gap: 18px; font-size: 10px; }.footer__cta { min-height: 500px; margin-bottom: 8px; padding: 24px 18px; grid-template-columns: 1fr; gap: 28px; border-radius: 20px; }.footer__headline { max-width: none; margin-top: 46px; font-size: clamp(33px,9.5vw,44px); line-height: .9; }.footer__launchText { margin-top: 18px; font-size: 13px; }.footer__launchAction a { font-size: 19px; }.footer__launchAction i { width: 50px; height: 50px; }.footer__radar { width: 380px; height: 380px; right: -190px; top: -130px; }.footer__top { grid-template-columns: 1fr 1fr; padding: 26px 20px; border-radius: 22px; }.footer__connect { grid-column: 1/-1; }.clocks { overflow-x: auto; }.footer__word { margin-top: 42px; font-size: 22vw; }.footer__legal { display: grid; }.footer__legal span:last-child { display: flex; flex-wrap: wrap; gap: 12px; }.footer__legal a { margin: 0; }
  .fab { display: none; }.mbar { position: fixed; z-index: 65; left: 10px; right: 10px; bottom: 10px; height: 56px; display: grid; grid-template-columns: 1fr 1fr; padding: 5px; border: 1px solid var(--chrome-line); border-radius: 16px; background: rgba(8,11,18,.9); backdrop-filter: blur(16px); }.mbar a { display: flex; align-items: center; justify-content: center; min-width: 0; padding-inline: 8px; border-radius: 11px; font-size: 12px; font-weight: 700; white-space: nowrap; }.mbar__wa { color: #fff !important; }.mbar__wa svg { width: 18px; margin-right: 7px; }.mbar__brief { background: var(--chrome-teal); color: var(--chrome-navy) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .footer__ticker > div, .footer__radar { animation: none; }
}
