:root {
  color-scheme: dark;
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  --ink: #020817;
  --text: #f3f6ff;
  --muted: #9aa4bc;
  --hairline: rgba(173, 195, 239, 0.26);
  --focus: #54d8ff;
}

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

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
}

.atmosphere {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--ink);
}

.atmosphere__image,
.atmosphere__glow {
  position: absolute;
  display: block;
  pointer-events: none;
}

.atmosphere__image {
  inset: -2%;
  background-image: url("setrox-aurora-background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  will-change: transform;
  animation: background-drift 18s ease-in-out infinite alternate;
}

.atmosphere__glow {
  right: -18%;
  bottom: -28%;
  width: 82%;
  height: 66%;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(54px);
  background: radial-gradient(ellipse, rgba(0, 210, 255, 0.55) 0%, rgba(0, 86, 219, 0.18) 36%, transparent 70%);
  will-change: transform, opacity;
  animation: glow-breathe 12s ease-in-out infinite alternate;
}

.site-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

.hero {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(64px, 9vh, 112px) 24px clamp(54px, 7vh, 82px);
}

.hero__content {
  width: min(850px, 66vw);
  text-align: center;
  transform: translateY(3.5vh);
}

.hero__logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 32px rgba(0, 20, 73, 0.68));
}

.hero__statement {
  max-width: 720px;
  margin: clamp(36px, 5.2vh, 58px) auto 0;
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 350;
  line-height: 1.34;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 14, 52, 0.86);
}

.business-footer {
  flex: 0 0 auto;
  width: min(1062px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}

.business-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.64fr);
  width: min(812px, 100%);
  min-height: 162px;
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 350;
  line-height: 1.55;
}

.business-footer__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-right: 50px;
  font-style: normal;
}

.business-footer__contact {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--hairline);
  padding-left: 64px;
}

.business-footer a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.business-footer a:hover {
  color: var(--text);
  text-decoration-color: rgba(84, 216, 255, 0.68);
}

.business-footer a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--focus);
  outline-offset: 5px;
  color: var(--text);
}

@keyframes background-drift {
  from { transform: scale(1.01) translate3d(-0.25%, -0.2%, 0); }
  to { transform: scale(1.025) translate3d(0.35%, 0.25%, 0); }
}

@keyframes glow-breathe {
  from { transform: scale(0.97); opacity: 0.14; }
  to { transform: scale(1.04); opacity: 0.24; }
}

@media (max-width: 760px) {
  .atmosphere__image {
    background-position: 73% center;
  }

  .atmosphere__glow {
    right: -66%;
    bottom: -8%;
    width: 150%;
    height: 58%;
  }

  .hero {
    min-height: 62svh;
    padding: 52px 20px 42px;
  }

  .hero__content {
    width: min(100%, 620px);
    transform: none;
  }

  .hero__statement {
    max-width: 530px;
    margin-top: 34px;
    font-size: clamp(18px, 5vw, 23px);
  }

  .hero__line-break {
    display: none;
  }

  .business-footer {
    width: calc(100% - 40px);
  }

  .business-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    padding: 27px 4px 34px;
    font-size: 15px;
  }

  .business-footer__details {
    gap: 2px;
    padding-right: 0;
  }

  .business-footer__contact {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-inline: 16px;
  }

  .business-footer {
    width: calc(100% - 32px);
  }

  .business-footer__inner {
    font-size: 14px;
  }
}

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