:root {
  --page-bg: #050b16;
  --surface: rgba(255, 255, 255, .052);
  --surface-strong: rgba(255, 255, 255, .082);
  --line: rgba(255, 255, 255, .105);

  --text: rgba(255, 255, 255, .98);
  --text-mid: rgba(232, 240, 255, .78);
  --text-soft: rgba(232, 240, 255, .57);

  --gold: #f6c453;
  --gold-soft: rgba(246, 196, 83, .13);
  --gold-line: rgba(246, 196, 83, .30);

  --blue: #74a7ff;
  --blue-soft: rgba(69, 126, 255, .13);
  --blue-line: rgba(116, 167, 255, .27);

  --green: #8ee8ad;

  --shadow: 0 26px 75px rgba(0, 0, 0, .30);
  --focus-ring: 0 0 0 3px rgba(246, 196, 83, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(53, 108, 255, .15),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(246, 196, 83, .13),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(44, 183, 112, .07),
      transparent 32%
    ),
    var(--page-bg);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.company-shell {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 54px;
}

.company-topbar {
  position: sticky;
  top: 10px;
  z-index: 40;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 18px;
  padding: 11px 13px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(5, 11, 22, .76);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.company-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.company-brand-mark {
  display: grid;
  place-items: center;

  width: 39px;
  height: 39px;
  flex: 0 0 auto;

  border: 1px solid rgba(246, 196, 83, .22);
  border-radius: 13px;

  background:
    radial-gradient(
      circle at center,
      rgba(246, 196, 83, .24),
      rgba(246, 196, 83, .04) 55%,
      transparent 60%
    );
}

.company-brand-mark::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 14px rgba(246, 196, 83, .92),
    0 0 32px rgba(246, 196, 83, .36);
}

.company-brand-name {
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .015em;
}

.company-brand-subtitle {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.company-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.company-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 36px;
  padding: 0 11px;

  border: 1px solid transparent;
  border-radius: 11px;

  color: var(--text-mid);
  text-decoration: none;

  font-size: 11px;
  font-weight: 850;

  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease;
}

.company-nav-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-1px);
}

.company-nav-link.atlas {
  color: #ffe49b;
  border-color: var(--gold-line);
  background: var(--gold-soft);
}

.company-nav-link.oja {
  color: #d8e7ff;
  border-color: var(--blue-line);
  background: var(--blue-soft);
}

.company-hero {
  position: relative;
  overflow: hidden;

  padding: clamp(40px, 7vw, 82px);

  border: 1px solid var(--line);
  border-radius: 32px;

  background:
    radial-gradient(
      circle at 83% 15%,
      rgba(246, 196, 83, .17),
      transparent 27%
    ),
    radial-gradient(
      circle at 5% 95%,
      rgba(53, 108, 255, .16),
      transparent 31%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, .095),
      rgba(255, 255, 255, .025)
    );

  box-shadow: var(--shadow);
}

.company-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.company-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 20px;
  padding: 7px 11px;

  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;

  background: rgba(255, 255, 255, .045);
  color: var(--text-mid);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.company-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(142, 232, 173, .80);
}

.company-hero h1 {
  max-width: 950px;
  margin: 0;

  color: var(--text);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 950;
  line-height: .96;
  letter-spacing: -.06em;
}

.company-hero-lead {
  max-width: 780px;
  margin: 25px 0 0;

  color: var(--text-mid);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 620;
  line-height: 1.72;
}

.company-hero-belief {
  max-width: 730px;
  margin: 20px 0 0;

  color: #ffe49b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.company-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.company-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 46px;
  padding: 0 17px;

  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;

  color: var(--text);
  text-decoration: none;

  font-size: 12px;
  font-weight: 900;

  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

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

.company-button.atlas {
  color: #111827;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 13px 34px rgba(246, 196, 83, .18);
}

.company-button.atlas:hover {
  background: #ffd66f;
}

.company-button.oja {
  border-color: var(--blue-line);
  background: var(--blue-soft);
}

.company-button.secondary {
  background: rgba(255, 255, 255, .045);
}

.company-section {
  margin-top: 22px;
}

.company-section-header {
  max-width: 790px;
  margin-bottom: 15px;
}

.company-kicker {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: -.045em;
}

.company-description {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.68;
}

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

.company-card {
  padding: 27px;

  border: 1px solid var(--line);
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .075),
      rgba(255, 255, 255, .028)
    );

  box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
}

.company-card.atlas {
  border-color: rgba(246, 196, 83, .20);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(246, 196, 83, .14),
      transparent 32%
    ),
    rgba(255, 255, 255, .04);
}

.company-card.oja {
  border-color: rgba(116, 167, 255, .18);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(69, 126, 255, .15),
      transparent 32%
    ),
    rgba(255, 255, 255, .04);
}

.company-card-label {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-card h2,
.company-card h3 {
  margin: 13px 0 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -.045em;
}

.company-card-copy {
  margin: 14px 0 0;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.68;
}

.company-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.company-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.company-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: 950;
}

.company-card.oja .company-list li::before {
  color: var(--blue);
}

.company-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.company-principle {
  padding: 20px;

  border: 1px solid var(--line);
  border-radius: 20px;

  background: var(--surface);
}

.company-principle-number {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
}

.company-principle-title {
  margin-top: 11px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.company-principle-copy {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.company-architecture-map {
  display: grid;
  gap: 12px;
}

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

.company-node {
  padding: 24px;

  border: 1px solid var(--line);
  border-radius: 22px;

  background: var(--surface);
}

.company-node.company {
  text-align: center;
}

.company-node.atlas {
  border-color: var(--gold-line);
  background:
    radial-gradient(
      circle at right top,
      rgba(246, 196, 83, .13),
      transparent 35%
    ),
    var(--surface);
}

.company-node.oja {
  border-color: var(--blue-line);
  background:
    radial-gradient(
      circle at right top,
      rgba(69, 126, 255, .14),
      transparent 35%
    ),
    var(--surface);
}

.company-node-label {
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-node-title {
  margin-top: 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 950;
}

.company-node-copy {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.company-connector {
  display: grid;
  place-items: center;
  height: 24px;
  color: rgba(255, 255, 255, .28);
}

.company-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 24px;
  padding: 4px 3px;

  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
}

.company-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.company-footer a {
  color: var(--text-mid);
  text-decoration: none;
}

@media (max-width: 850px) {
  .company-topbar {
    position: static;
  }

  .company-product-grid,
  .company-platform-grid,
  .company-principle-grid {
    grid-template-columns: 1fr;
  }

  .company-hero {
    padding: 42px 27px;
  }
}

@media (max-width: 620px) {
  .company-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 10px;
  }

  .company-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .company-hero {
    padding: 35px 21px;
    border-radius: 25px;
  }

  .company-hero h1 {
    font-size: 45px;
  }

  .company-card,
  .company-node {
    padding: 22px;
  }

  .company-button {
    width: 100%;
  }
}
