@font-face {
  font-family: "Titillium Web";
  src: url("/assets/fonts/titillium-web-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("/assets/fonts/titillium-web-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

:root {
  --black: #070707;
  --panel: #111112;
  --panel-light: #1a1a1c;
  --white: #fff;
  --muted: #b8b4b1;
  --orange: #ff4b14;
  --orange-light: #ff6a32;
  --cta: #d93c10;
  --cta-hover: #c9340d;
  --line: rgba(255, 255, 255, .13);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 75, 20, .15), transparent 27rem),
    var(--black);
  font-family: "Titillium Web", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(7, 7, 7, .98) 0%, rgba(7, 7, 7, .8) 45%, rgba(7, 7, 7, .32) 100%),
    image-set(
      url("/assets/images/hero.avif") type("image/avif"),
      url("/assets/images/hero.webp") type("image/webp")
    );
  background-position: center, center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .58;
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .16;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .85) .65px, transparent .7px);
  background-size: 27px 27px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #111;
  background: var(--white);
  border-radius: 8px;
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.page-shell {
  width: min(1480px, 100%);
  min-height: 100vh;
  margin-inline: auto;
  overflow-x: clip;
  padding: 24px clamp(20px, 4vw, 64px) 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: 188px;
  transition: opacity .2s ease;
}

.brand:hover {
  opacity: .78;
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #dad7d4;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.topbar-status span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 75, 20, .13);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.topbar-status b {
  color: var(--orange);
}

.maintenance-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .85fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
  min-height: min(740px, calc(100vh - 96px));
  padding-block: clamp(64px, 8vw, 116px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(70px, 7.4vw, 116px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .84;
  text-transform: uppercase;
  -webkit-text-stroke: 1.35px currentColor;
}

h1 span {
  display: block;
  margin-bottom: .14em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .82);
}

.lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: #e8e5e2;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.3;
}

.promise {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
  -webkit-text-stroke: .45px currentColor;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  gap: 24px;
  color: var(--white);
  background: var(--cta);
  box-shadow: 0 18px 45px rgba(217, 60, 16, .27);
}

.button-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 22px 52px rgba(217, 60, 16, .34);
}

.button-primary span {
  font-size: 20px;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .085);
}

.artwork {
  position: relative;
  justify-self: center;
  width: min(480px, 38vw);
  aspect-ratio: 1;
  isolation: isolate;
}

.art-card {
  position: absolute;
  z-index: 2;
  inset: 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 44px);
  color: #090909;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), transparent 38%),
    linear-gradient(145deg, var(--orange-light), var(--orange) 54%, #d82d00);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 34px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .42), 0 18px 50px rgba(255, 75, 20, .2);
  transform: rotate(-4deg);
}

.art-card::before {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(0, 0, 0, .035), 0 0 0 62px rgba(0, 0, 0, .025);
}

.art-card img {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 31%;
  filter: saturate(.15) brightness(.2);
  opacity: .72;
  transform: rotate(4deg);
}

.art-label {
  position: absolute;
  top: 9%;
  left: 9%;
  padding: 7px 12px;
  border: 1px solid rgba(8, 8, 8, .25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.art-card p {
  margin-bottom: -4px;
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
}

.art-card strong {
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .84;
  text-transform: uppercase;
  -webkit-text-stroke: .75px currentColor;
}

.art-progress {
  height: 5px;
  margin-top: 32px;
  overflow: hidden;
  background: rgba(0, 0, 0, .2);
  border-radius: 20px;
}

.art-progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: #090909;
  border-radius: inherit;
  animation: progress-breathe 3.2s ease-in-out infinite;
}

.art-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .21);
  border-radius: 50%;
}

.art-orbit::before {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--orange);
}

.art-orbit-one {
  inset: 3%;
  transform: rotate(28deg);
  animation: orbit-spin 24s linear infinite;
}

.art-orbit-two {
  inset: -5% 16%;
  transform: rotate(74deg);
  animation: orbit-spin-reverse 30s linear infinite;
}

.art-star {
  position: absolute;
  z-index: 3;
  color: var(--white);
  text-shadow: 0 0 24px rgba(255, 255, 255, .55);
}

.art-star-two {
  bottom: 6%;
  left: 1%;
  color: var(--orange);
  font-size: 18px;
}

.art-index {
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: 1%;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.important-links {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  padding-block: 52px 76px;
  border-top: 1px solid var(--line);
}

.links-heading {
  align-self: start;
}

.links-heading .eyebrow {
  margin-bottom: 14px;
}

.links-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .96;
  -webkit-text-stroke: .95px currentColor;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  min-height: 108px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.link-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.link-card:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .065);
  transform: translateY(-1px);
}

.link-card-featured {
  background: rgba(255, 75, 20, .07);
}

.link-number {
  align-self: start;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.link-card strong,
.link-card small {
  display: block;
}

.link-card strong {
  margin-bottom: 2px;
  font-size: 21px;
  font-weight: 700;
  -webkit-text-stroke: .55px currentColor;
}

.link-card small {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 14px;
}

.link-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 15px;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.link-card:hover .link-arrow {
  color: var(--white);
  background: var(--cta);
  border-color: var(--cta);
  transform: rotate(8deg);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 90px;
  color: #8f8b88;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .05em;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer span {
  color: var(--orange);
}

.site-footer a {
  justify-self: end;
  color: #c3bfbc;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-footer a:hover {
  color: var(--orange);
}

@keyframes status-pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(255, 75, 20, 0);
  }
}

@keyframes progress-breathe {
  0%,
  100% {
    width: 66%;
  }

  50% {
    width: 78%;
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(388deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: rotate(-286deg);
  }
}

@media (max-width: 1120px) {
  .maintenance-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: 34px;
  }

  .artwork {
    width: min(420px, 40vw);
  }

  .important-links {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  body::before {
    background-image:
      linear-gradient(180deg, rgba(7, 7, 7, .68), rgba(7, 7, 7, .94) 42%, #070707 74%),
      image-set(
        url("/assets/images/hero-mobile.avif") type("image/avif"),
        url("/assets/images/hero-mobile.webp") type("image/webp")
      );
    background-position: top center;
    background-size: 100% auto;
    opacity: .62;
  }

  .maintenance-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 76px;
  }

  .hero-copy {
    max-width: 690px;
  }

  h1 {
    font-size: clamp(64px, 12vw, 94px);
  }

  .artwork {
    width: min(480px, 76vw);
    margin-top: 24px;
  }

  .important-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .page-shell {
    padding-inline: 16px;
  }

  .topbar {
    min-height: 64px;
    padding-block: 10px 14px;
  }

  .brand {
    width: 142px;
  }

  .topbar-status {
    gap: 6px;
    font-size: 10px;
    letter-spacing: .08em;
  }

  .topbar-status span {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(255, 75, 20, .13);
  }

  .maintenance-hero {
    gap: 46px;
    padding-block: 60px 72px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .15em;
  }

  .eyebrow::before {
    width: 24px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(47px, 13vw, 55px);
    line-height: .87;
  }

  .lead {
    font-size: 20px;
  }

  .promise {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .primary-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .artwork {
    width: min(330px, 86vw);
  }

  .art-card {
    border-radius: 26px;
  }

  .art-card strong {
    font-size: clamp(52px, 20vw, 72px);
  }

  .important-links {
    gap: 30px;
    padding-block: 42px 56px;
  }

  .links-heading h2 {
    font-size: 46px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .link-card {
    min-height: 96px;
    padding-inline: 14px;
    border-right: 0 !important;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding-block: 28px;
    text-align: center;
  }

  .site-footer a {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-contrast: more) {
  .button-secondary,
  .link-card,
  .topbar,
  .important-links,
  .site-footer {
    border-color: rgba(255, 255, 255, .5);
  }
}
