*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

body {
  margin: 0;
  background: var(--color-5);
  color: rgba(255, 255, 255, 0.9);
}

.company-hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #fff;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 520px at 18% 18%,
      rgba(0, 183, 214, 0.22),
      transparent 60%
    ),
    radial-gradient(
      700px 420px at 78% 26%,
      rgba(27, 159, 79, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 540px at 62% 88%,
      rgba(42, 98, 172, 0.22),
      transparent 62%
    );
  filter: saturate(120%);
  pointer-events: none;
}

.company-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-1), var(--color-4));
  opacity: 0.6;
}

body::before {
  content: "";
  position: fixed;
  inset: -40%;
  background: radial-gradient(
      900px 520px at 18% 18%,
      rgb(from var(--color-4) r g b / 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 420px at 78% 26%,
      rgb(from var(--color-1) r g b / 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 540px at 62% 88%,
      rgb(from var(--color-2) r g b / 0.18),
      transparent 62%
    );
  filter: saturate(120%);
  pointer-events: none;
}

.shell {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.brand {
  margin-left: 0;
  justify-content: center;
}

.brand-logo {
  height: 80px;
  width: auto;
  left: 10px;
  margin-left: 19px;
  margin: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgb(from var(--color-5) r g b / 0.55));
  opacity: 0.95;
}

.brand:hover .brand-logo {
  opacity: 1;
}

.eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.headline {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-5);
}

.subhead {
  margin: 0 0 20px;
  max-width: 58ch;
  line-height: 1.65;
  color: var(--color-5);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease,
    background 160ms ease, box-shadow 160ms ease;
}

.btn.primary {
  background: linear-gradient(90deg, var(--color-1), var(--color-4));
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 50px rgb(from var(--color-5) r g b / 0.55);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgb(from var(--color-5) r g b / 0.65);
}

.btn.ghost {
  background: var(--color-5);
  color: rgba(255, 255, 255, 0.86);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  background: rgb(from var(--color-6) r g b / 0.38);
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgb(from var(--color-4) r g b / 0.16);
  background: rgb(from var(--color-6) r g b / 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.card {
  text-decoration: none;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgb(from var(--color-4) r g b / 0.14);
  background: var(--color-5);
  box-shadow: var(--color-5);
  transition: transform 160ms ease, border-color 160ms ease,
    background 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgb(from var(--color-4) r g b / 0.26);
  background: linear-gradient(
    180deg,
    rgb(from var(--color-6) r g b / 0.32),
    rgb(from var(--color-5) r g b / 0.42)
  );
}

.card-title {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.card-desc {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-cta {
  color: rgb(from var(--color-4) r g b / 0.95);
}

.footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgb(from var(--color-4) r g b / 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.foot-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.foot-link {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.72);
}

.foot-link:hover {
  border-color: rgb(from var(--color-4) r g b / 0.16);
  background: rgb(from var(--color-6) r g b / 0.22);
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 980px) {
  .company-hero {
    place-items: start center;
    padding: 22px 16px max(22px, env(safe-area-inset-bottom));
  }

  .shell {
    width: min(720px, 100%);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .hero-copy {
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row,
  .hero-actions {
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 520px;
  }

  .hero-links {
    grid-template-columns: 1fr;
  }
  .company-hero::after {
    background: none;
  }
}

@media (max-width: 420px) {
  .headline {
    font-size: 1.85rem;
  }

  .card {
    padding: 14px;
    border-radius: 16px;
  }
}
