:root {
  --ink: #07111f;
  --navy: #0b192a;
  --muted: #607084;
  --line: #dbe2e9;
  --surface: #f4f7f9;
  --white: #ffffff;
  --blue: #0050a4;
  --cyan: #0087ca;
  --red: #cc2e28;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
}

.brand span,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: .02em;
}

.brand small {
  margin-top: 5px;
  color: #9fb0c2;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .28em;
}

.location {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b8c4d0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.location-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 135, 202, .15);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 25%, rgba(0, 80, 164, .25), transparent 33%),
    linear-gradient(135deg, #07111f 0%, #091827 62%, #06101b 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 35%, black);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -220px;
  width: 850px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  width: 350px;
  height: 350px;
  right: 4%;
  top: 13%;
  background: rgba(0, 135, 202, .11);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  right: 26%;
  bottom: 6%;
  background: rgba(204, 46, 40, .08);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 780px;
  padding-top: 114px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  padding: 64px 0 88px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #91a5b8;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--cyan);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 680px;
  margin: 24px 0 26px;
  font-size: clamp(3.6rem, 6.2vw, 6.2rem);
  font-weight: 730;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero-intro {
  max-width: 600px;
  margin: 0;
  color: #b7c4d0;
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.text-link {
  width: fit-content;
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: .86rem;
  font-weight: 750;
  letter-spacing: .035em;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

.hero-art {
  min-width: 0;
}

.tech-visual {
  width: min(100%, 690px);
  margin-left: auto;
  overflow: visible;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .3));
}

.floating-card {
  animation: float-card 6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.floating-card.delay {
  animation-delay: -3s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.intro-section {
  padding: 116px 0 108px;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: .32fr 1fr;
  gap: 65px;
}

.intro-content {
  max-width: 880px;
}

.intro-content h2,
.section-heading h2,
.principles-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 680;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.intro-content p {
  max-width: 745px;
  margin: 33px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.solutions-section {
  padding: 115px 0 128px;
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 18px;
}

.solutions-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cad4dd;
  border-left: 1px solid #cad4dd;
}

.solution-card {
  position: relative;
  min-height: 350px;
  padding: 42px 44px 40px;
  background: rgba(255,255,255,.58);
  border-right: 1px solid #cad4dd;
  border-bottom: 1px solid #cad4dd;
  transition: background .2s ease, transform .2s ease;
}

.solution-card:hover {
  background: var(--white);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 32px;
  color: #8a99a7;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.solution-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #e6eef5;
  border-radius: 16px;
}

.solution-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.solution-card:nth-child(4n + 2) .solution-icon {
  color: var(--red);
  background: #f7e7e6;
}

.solution-card:nth-child(4n + 3) .solution-icon {
  color: var(--cyan);
  background: #e1f1f7;
}

.solution-card h3 {
  margin: 58px 0 15px;
  font-size: 1.48rem;
  letter-spacing: -.03em;
}

.solution-card p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.principles-section {
  padding: 118px 0;
  color: var(--white);
  background: var(--blue);
}

.section-label.light {
  color: #b8ddf1;
}

.principles-section h2 {
  margin-top: 19px;
}

.principles-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.principles-list {
  border-top: 1px solid rgba(255,255,255,.25);
}

.principles-list > div {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.principles-list span {
  color: #9ed4ef;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.principles-list p {
  margin: 0;
  color: #eef6fb;
  font-size: 1.08rem;
}

.site-footer {
  padding: 42px 0;
  color: #516274;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: .91rem;
}

.footer-brand small {
  margin-top: 4px;
  font-size: .72rem;
}

.footer-inner > p {
  margin: 0;
  font-size: .78rem;
}

.copyright {
  white-space: nowrap;
}

.error-hero {
  min-height: 560px;
}

.error-hero .hero-layout {
  min-height: 560px;
}

.hero-layout.error-layout {
  grid-template-columns: 1fr;
  justify-items: start;
}

.error-layout .hero-copy {
  padding: 0;
  max-width: 640px;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .hero-copy {
    padding: 60px 0 18px;
  }

  .hero-art {
    width: min(720px, 100%);
    margin: 0 auto -4px;
  }

  .intro-grid,
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .location {
    font-size: 0;
  }

  .location::after {
    content: "Las Vegas";
    font-size: .75rem;
  }

  .hero-layout {
    padding-top: 95px;
  }

  .hero-copy {
    padding: 50px 0 0;
  }

  h1 {
    margin-top: 20px;
    font-size: clamp(3.15rem, 16vw, 4.5rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-art {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .intro-section,
  .solutions-section,
  .principles-section {
    padding: 82px 0;
  }

  .intro-grid {
    gap: 25px;
  }

  .solutions-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
    padding: 34px 30px 35px;
  }

  .solution-card h3 {
    margin-top: 42px;
  }

  .principles-grid {
    gap: 50px;
  }
}

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

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