: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; }
}

/* Minimal brand lockup and mobile menu control. */
.brand__mark { padding-right: 0; border-right: 0; }

@media (max-width: 700px) {
  .site-header { height: 56px; padding: 0 8px 0 14px; border-radius: 15px; }
  .site-header::before { display: none; }
  .brand__logo { width: 92px !important; }
  .menu-btn,
  .menu-btn:hover,
  .menu-btn:focus {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2) !important;
    border-radius: 12px;
    background: transparent;
    color: var(--chrome-white);
  }
  .menu-btn__label { display: none; }
  .menu-btn__icon { flex: 0 0 18px; }
  .menu-btn[aria-expanded=true] {
    border-color: var(--chrome-white) !important;
    background: var(--chrome-white);
    color: var(--chrome-navy);
  }
}

/* Use the recognizable WhatsApp brand color across contact controls. */
.fab__chat {
  background: #25d366;
  color: #fff;
}
.socials a[href*="wa.me"] { color: #25d366; }
.socials a[href*="wa.me"]:hover { background: #25d366; color: #fff; }
.mbar__wa {
  background: #25d366;
  color: #fff !important;
}

/* Keep the anti-spam field available to the backend without exposing it in
   any visual form layout. */
.form-honeypot {
  display: none !important;
}

/* The footer card is light, so clock information must not inherit the pale
   text color used by dark landing-page sections. */
.footer .clocks {
  min-width: 0;
  align-items: flex-start;
}

.footer .clock {
  flex: 0 0 66px;
  color: var(--chrome-navy);
}

.footer .clock svg {
  width: 66px;
  height: 66px;
}

.footer .clock figcaption,
.footer .clock time {
  color: var(--chrome-navy);
  opacity: 1;
}

.footer .clock time {
  min-height: 14px;
  margin-top: 2px;
  color: #526072;
  line-height: 1.4;
}

/* Keep the shared footer fluid on legacy pages whose content styles use
   fixed widths or broad element selectors. */
.footer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer > *,
.footer__cta > *,
.footer__top > *,
.footer__launchAction a,
.footer__launchAction a > span,
.footer__col,
.footer__connect {
  min-width: 0;
}

.footer__mail,
.footer__launchAction a > span,
.footer__col a,
.footer__col li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__launchAction i {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .footer__cta {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .footer__headline {
    max-width: 11ch;
    margin-top: 38px;
    font-size: clamp(40px, 8vw, 68px);
  }

  .footer__launchAction {
    width: 100%;
    align-self: auto;
  }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }

  .footer__connect,
  .footer .clocks {
    grid-column: 1 / -1;
  }

  .footer .clocks {
    margin-top: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .footer__cta {
    min-height: 0;
  }

  .footer__launchAction a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer .clocks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
  }

  .footer .clock {
    min-width: 0;
    justify-self: center;
  }

  .footer__word {
    width: 100%;
    margin-inline: 0;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .footer {
    padding-inline: 6px;
  }

  .footer__cta {
    padding: 24px 18px;
  }

  .footer__kicker {
    align-items: flex-start;
    line-height: 1.45;
  }

  .footer__kicker span {
    flex: 0 0 9px;
    margin-top: 3px;
  }

  .footer__headline {
    max-width: none;
    margin-top: 36px;
    font-size: clamp(32px, 10vw, 44px);
  }

  .footer__launchAction a {
    gap: 12px;
    font-size: clamp(16px, 5vw, 20px);
  }

  .footer__launchAction i {
    width: 44px;
    height: 44px;
  }

  .footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 24px 18px;
  }

  .footer__connect,
  .footer .clocks {
    grid-column: auto;
  }

  .footer__col + .footer__col {
    padding-top: 24px;
    border-top: 1px solid rgba(10, 25, 47, .12);
  }

  .footer .clock,
  .footer .clock svg {
    width: 58px;
  }

  .footer .clock {
    flex-basis: 58px;
  }

  .footer__legal,
  .footer__legal > span:last-child {
    gap: 10px;
  }
}

/* Compact mobile navigation: a small, readable panel instead of a desktop
   mega menu squeezed into the viewport. */
@media (max-width: 700px) {
  .menu-btn,
  .menu-btn:hover,
  .menu-btn:focus {
    width: 34px;
    min-width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
  }

  .menu-btn__icon {
    width: 15px;
    flex-basis: 15px;
  }

  .menu-btn__icon i {
    width: 15px;
  }

  .mega {
    left: 50%;
    right: auto;
    top: 74px;
    width: min(320px, calc(100vw - 20px));
    max-height: calc(100svh - 84px);
    padding: 18px;
    border-color: rgba(255, 255, 255, .11);
    border-radius: 18px;
    background: rgba(8, 18, 33, .98);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .42);
    transform: translate(-50%, -8px) scale(.98);
    transform-origin: top center;
  }

  .mega.is-open {
    transform: translateX(-50%);
  }

  .mega__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: 100%;
  }

  .mega__col + .mega__col {
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .mega__title {
    margin: 0 0 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
  }

  .mega__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 12px;
  }

  .mega__links li {
    min-width: 0;
  }

  .mega__links a,
  .mega__links--lg a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .mega__links a:hover,
  .mega__links a:focus-visible {
    transform: none;
  }

  .mega__links--lg {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .mega__links--lg a {
    padding: 5px 0;
    color: rgba(248, 249, 250, .9);
  }

  .mega__card {
    display: none;
  }

  .mbar {
    left: 50%;
    right: auto;
    width: min(320px, calc(100vw - 28px));
    column-gap: 6px;
    transform: translateX(-50%);
  }
}

/* Match the homepage footer treatment on every template. */
.footer,
.footer :where(h2,p,a,span,li,strong,time,figcaption) {
  font-family: "Satoshi", Inter, Arial, sans-serif !important;
}

.footer__ticker {
  background: var(--chrome-navy);
  color: var(--chrome-white);
}

.footer__headline {
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .86;
  letter-spacing: -.055em;
}

.footer__headline strong {
  color: var(--chrome-white);
}

.footer__launchText {
  font-size: 15px;
  line-height: 1.55;
}

.footer__word {
  margin-top: 52px;
  font-size: clamp(76px, 15vw, 230px);
  letter-spacing: -.075em;
  transform-origin: center bottom;
}

/* Native equivalents of the homepage GSAP footer entrances. Initial states
   only apply after JavaScript opts the page into motion. */
.footer-motion .footer__word .footer__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(70%) rotateX(-95deg);
  transform-origin: 50% 100%;
  transition: opacity .75s var(--chrome-ease), transform 1.15s var(--chrome-ease);
  transition-delay: calc(var(--footer-motion-index, 0) * 50ms);
  will-change: opacity, transform;
}

.footer-motion .footer__word.is-visible .footer__char {
  opacity: 1;
  transform: none;
}

.footer-motion .footer__top > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s var(--chrome-ease), transform 1s var(--chrome-ease);
  transition-delay: calc(var(--footer-motion-index, 0) * 80ms);
}

.footer-motion .footer__top.is-visible > * {
  opacity: 1;
  transform: none;
}

.footer-motion .footer .clock {
  opacity: 0;
  transform: scale(0) rotate(-120deg);
  transition: opacity .55s ease, transform 1.05s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: calc(320ms + var(--footer-motion-index, 0) * 100ms);
}

.footer-motion .footer__top.is-visible .clock {
  opacity: 1;
  transform: none;
}

@media (max-width: 700px) {
  .footer__headline {
    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__word {
    margin-top: 42px;
    font-size: 22vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-motion .footer__word .footer__char,
  .footer-motion .footer__top > *,
  .footer-motion .footer .clock {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Isolate the current shared chrome from legacy element-level header/nav/footer
   rules that remain available to older page content. */
.site-header {
  width: auto !important;
  padding: 0 10px 0 18px;
  overflow: visible;
}

.site-header .site-nav {
  display: block;
  padding: 0;
}

.site-header .site-nav a {
  font-size: 13px;
  letter-spacing: normal;
  transform: none;
}

.footer {
  padding: 12px 12px 24px;
}

.footer .footer__col {
  display: block;
  justify-content: initial;
  gap: 0;
  padding: 0;
  text-align: left;
}

.footer .footer__col ul,
.footer .footer__col li {
  width: 100%;
  text-align: left;
}

.footer .footer__col a {
  display: inline-flex;
  justify-content: flex-start;
  padding: 2px 0;
  font-size: inherit;
  letter-spacing: normal;
  text-align: left;
  transform: none;
}

body.mega-open {
  overflow: hidden;
}

body.mega-open .site-header {
  z-index: 120;
}

body.mega-open .mega-scrim {
  z-index: 110;
}

@media (max-width: 1180px) {
  .site-header .site-nav {
    display: none;
  }
}

@media (max-width: 700px) {
  body:not(.landing-page) .site-header {
    display: flex;
    width: auto !important;
    max-width: calc(100vw - 20px);
    height: 56px;
    padding: 0 8px 0 14px;
    overflow: visible;
  }

  body:not(.landing-page) .header-actions {
    position: relative;
    z-index: 3;
    display: flex;
    flex: 0 0 auto;
    visibility: visible;
    opacity: 1;
  }

  body:not(.landing-page) .menu-btn,
  body:not(.landing-page) .menu-btn:hover,
  body:not(.landing-page) .menu-btn:focus {
    position: relative;
    z-index: 4;
    display: flex !important;
    width: 38px;
    min-width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
    border-color: var(--chrome-teal) !important;
    background: var(--chrome-teal);
    color: var(--chrome-navy);
  }

  body:not(.landing-page) .menu-btn__icon,
  body:not(.landing-page) .menu-btn__icon i {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  body:not(.landing-page) .menu-btn[aria-expanded="true"] {
    border-color: var(--chrome-white) !important;
    background: var(--chrome-white);
  }

  body:not(.landing-page) .mega {
    z-index: 110;
    display: block;
  }

  body:not(.landing-page) .mega[hidden] {
    display: none;
  }

  body:not(.landing-page) .mega-scrim {
    z-index: 110;
  }

  .footer {
    padding: 8px 8px 90px;
  }
}

@media (max-width: 360px) {
  body:not(.landing-page) .site-header {
    left: 6px;
    right: 6px;
    top: 6px;
    max-width: calc(100vw - 12px);
    height: 52px;
    padding: 0 7px 0 10px;
    border-radius: 13px;
  }

  body:not(.landing-page) .brand,
  body:not(.landing-page) .brand__mark {
    min-width: 0;
    max-width: calc(100vw - 70px);
  }

  body:not(.landing-page) .brand__logo {
    width: min(82px, calc(100vw - 76px)) !important;
  }

  body:not(.landing-page) .menu-btn,
  body:not(.landing-page) .menu-btn:hover,
  body:not(.landing-page) .menu-btn:focus {
    width: 34px;
    min-width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  body:not(.landing-page) .mega {
    top: 64px;
    width: calc(100vw - 12px);
    max-height: calc(100svh - 70px);
    padding: 16px;
  }

  body:not(.landing-page) .mega__links {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__top {
    padding: 22px 16px;
  }

  .footer__logo {
    width: min(130px, 72vw) !important;
  }

  .footer .clocks {
    gap: 5px;
  }

  .footer .clock,
  .footer .clock svg {
    width: 50px;
  }

  .footer .clock figcaption {
    font-size: 9px;
  }

  .footer .clock time {
    font-size: 8px;
  }

  .mbar {
    width: calc(100vw - 12px);
  }

  .mbar a {
    padding-inline: 5px;
    font-size: 10px;
  }
}
