.company-site {
  --company-ink: #10110e;
  --company-paper: #f4f4f0;
  --company-cobalt: #4d5cff;
  --company-aqua: #4ce4c0;
  --company-signal: #9cff3f;
  background: var(--company-paper);
}

.company-page-content {
  overflow: clip;
}

.company-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(440px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  overflow: hidden;
  padding: 80px clamp(32px, 5vw, 82px);
  background:
    radial-gradient(circle at 83% 15%, rgba(77, 92, 255, 0.14), transparent 30%),
    radial-gradient(circle at 47% 92%, rgba(76, 228, 192, 0.1), transparent 28%),
    var(--company-paper);
}

.company-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 17, 14, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 14, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  content: '';
  mask-image: linear-gradient(90deg, transparent 2%, #000 50%, #000 100%);
  pointer-events: none;
}

.company-hero-word {
  position: absolute;
  right: -0.06em;
  bottom: -0.18em;
  color: transparent;
  font-family: var(--font-geist-sans, Inter), sans-serif;
  font-size: clamp(130px, 17vw, 290px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(16, 17, 14, 0.075);
  pointer-events: none;
  white-space: nowrap;
}

.company-hero-copy {
  position: relative;
  z-index: 2;
}

.company-eyebrow,
.company-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.company-eyebrow > span {
  width: 32px;
  height: 2px;
  background: var(--company-cobalt);
}

.company-hero h1 {
  max-width: 850px;
  margin: 34px 0 0;
  font-size: clamp(58px, 6.2vw, 104px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1.06;
}

.company-hero h1 em {
  background: linear-gradient(95deg, var(--company-cobalt), #5aa9da 48%, #22bd92 92%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.company-hero-lead {
  margin: 36px 0 0;
  color: #5e6058;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 570;
  line-height: 1.9;
}

.company-hero-note {
  display: flex;
  gap: 34px;
  margin-top: 58px;
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.company-hero-note span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-hero-note span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--company-signal);
  content: '';
}

.company-identity {
  --company-shift: 0px;
  position: relative;
  z-index: 2;
  width: min(43vw, 680px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(77, 92, 255, 0.28), transparent 17%),
    linear-gradient(145deg, #181a17, #090a09 72%);
  color: white;
  box-shadow: 0 35px 90px rgba(16, 17, 14, 0.2);
  transform: translateY(var(--company-shift));
  transition: transform 100ms linear;
}

.company-identity::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  content: '';
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.company-identity-code {
  position: absolute;
  top: 30px;
  left: 32px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.company-identity-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.company-identity-ring--outer {
  width: 76%;
  height: 76%;
  animation: company-spin 22s linear infinite;
  border-style: dashed;
  transform: translate(-50%, -50%) rotate(17deg) scaleY(0.78);
}

.company-identity-ring--inner {
  width: 50%;
  height: 50%;
  animation: company-spin-reverse 15s linear infinite;
  border-color: rgba(156, 255, 63, 0.45);
  transform: translate(-50%, -50%) rotate(-28deg) scaleY(0.88);
}

.company-identity-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 34%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: white;
  color: var(--company-ink);
  box-shadow: 0 0 0 18px rgba(77, 92, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.company-identity-core strong {
  font-size: clamp(30px, 3.2vw, 55px);
  font-weight: 620;
  letter-spacing: -0.07em;
}

.company-identity-core span {
  margin-top: 9px;
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: clamp(5px, 0.55vw, 8px);
  font-weight: 750;
  letter-spacing: 0.22em;
}

.company-identity-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: clamp(7px, 0.72vw, 10px);
  font-weight: 750;
  letter-spacing: 0.14em;
}

.company-identity-label span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--company-signal);
  font-size: 7px;
}

.company-identity-label--field { top: 22%; left: 15%; }
.company-identity-label--voice { top: 31%; right: 10%; }
.company-identity-label--growth { right: 18%; bottom: 18%; }

.company-identity > p {
  position: absolute;
  right: 28px;
  bottom: 26px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 7px;
  line-height: 1.65;
  letter-spacing: 0.14em;
  text-align: right;
}

.company-reel {
  position: relative;
  padding: clamp(90px, 10vw, 150px) clamp(28px, 5vw, 80px);
  background: var(--company-ink);
  color: white;
}

.company-reel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.company-reel-heading > span {
  color: var(--company-signal);
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.company-reel-heading p {
  margin: 0;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.company-reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.company-reel-card {
  position: relative;
  min-height: clamp(430px, 56vw, 760px);
  overflow: hidden;
  border-radius: 26px;
  background: #282b26;
}

.company-reel-card:nth-child(2) {
  transform: translateY(34px);
}

.company-reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transition: filter 600ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.company-reel-card:nth-child(1) img { object-position: 52% 48%; }
.company-reel-card:nth-child(2) img { object-position: 51% 50%; }
.company-reel-card:nth-child(3) img { object-position: 50% 44%; }

.company-reel-card:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.035);
}

.company-reel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 8, 7, 0.82) 100%);
}

.company-reel-meta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: 30px 34px 1fr;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  padding-top: 17px;
}

.company-reel-meta > span {
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.company-reel-meta strong,
.company-reel-meta small {
  display: block;
}

.company-reel-meta strong {
  font-size: 16px;
  font-weight: 650;
}

.company-reel-meta small {
  margin-top: 5px;
  color: var(--company-signal);
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.company-mission,
.company-profile {
  padding: clamp(100px, 11vw, 170px) clamp(28px, 6vw, 94px);
}

.company-section-label {
  gap: 16px;
  border-top: 1px solid rgba(16, 17, 14, 0.16);
  padding-top: 14px;
  color: #70726b;
}

.company-section-label span:first-child {
  color: var(--company-cobalt);
}

.company-mission-intro {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 40px;
  margin-top: 80px;
}

.company-mission-intro > p,
.company-profile-title > p {
  margin: 10px 0 0;
  color: var(--company-cobalt);
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.company-mission-intro h2 {
  margin: 0;
  font-size: clamp(50px, 6.4vw, 102px);
  font-weight: 590;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.company-mission-intro h2 em {
  color: var(--company-cobalt);
  font-style: normal;
}

.company-name-list {
  margin-top: 88px;
  border-top: 1px solid rgba(16, 17, 14, 0.16);
}

.company-name-row {
  display: grid;
  min-height: 142px;
  grid-template-columns: 48px minmax(160px, 0.75fr) minmax(170px, 0.68fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(16, 17, 14, 0.16);
  padding: 26px 0;
}

.company-name-row > span {
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 8px;
}

.company-name-row h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 620;
  letter-spacing: -0.065em;
}

.company-name-row strong {
  font-size: 14px;
}

.company-name-row p {
  max-width: 490px;
  margin: 0;
  color: #686a63;
  font-size: 12px;
  line-height: 1.9;
}

.company-profile {
  background:
    radial-gradient(circle at 10% 0%, rgba(76, 228, 192, 0.12), transparent 30%),
    #e9eae5;
}

.company-profile-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(54px, 9vw, 140px);
  margin-top: 78px;
}

.company-profile-title h2 {
  margin: 18px 0 0;
  color: transparent;
  font-size: clamp(65px, 8vw, 132px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.85;
  -webkit-text-stroke: 1px rgba(16, 17, 14, 0.3);
}

.company-profile-title > span {
  display: block;
  margin-top: 44px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.company-profile-list {
  margin: 0;
  border-top: 1px solid rgba(16, 17, 14, 0.2);
}

.company-profile-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  border-bottom: 1px solid rgba(16, 17, 14, 0.2);
  padding: 27px 0;
}

.company-profile-list dt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6b6d66;
  font-size: 11px;
  font-weight: 650;
}

.company-profile-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 590;
  line-height: 1.9;
}

.company-profile-list dd > span {
  display: inline-flex;
  align-items: center;
  margin: 0 6px 7px 0;
  border: 1px solid rgba(16, 17, 14, 0.18);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
}

.company-access {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.05fr 0.95fr;
  background: white;
}

.company-access-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(77, 92, 255, 0.16), transparent 7%),
    linear-gradient(145deg, #dadbd6, #f4f4f0);
}

.company-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 17, 14, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 14, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.company-map-line {
  position: absolute;
  border: 2px solid rgba(77, 92, 255, 0.42);
  border-radius: 50%;
}

.company-map-line--one {
  inset: 12% -18% 18% 8%;
  transform: rotate(19deg);
}

.company-map-line--two {
  inset: 33% 5% -20% -15%;
  border-color: rgba(76, 228, 192, 0.58);
  border-style: dashed;
  transform: rotate(-24deg);
}

.company-map-pin {
  position: absolute;
  top: 50%;
  left: 52%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: var(--company-ink);
  color: white;
  box-shadow: 0 0 0 17px rgba(77, 92, 255, 0.14), 0 22px 46px rgba(16, 17, 14, 0.22);
  transform: translate(-50%, -50%);
}

.company-map-pin::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--company-signal);
  content: '';
  transform: translate(20px, -19px);
}

.company-map-label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: right;
}

.company-access-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(60px, 8vw, 120px);
}

.company-access-copy h2 {
  margin: 50px 0 0;
  font-size: clamp(48px, 5.5vw, 86px);
  font-weight: 590;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.company-access-copy > p {
  margin: 38px 0 0;
  font-size: 13px;
  font-weight: 590;
  line-height: 2;
}

.company-access-copy > small {
  margin-top: 15px;
  color: #777970;
  font-size: 10px;
  line-height: 1.7;
}

.company-access-copy > a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  border-bottom: 1px solid rgba(16, 17, 14, 0.42);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 700;
}

.company-contact {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 80%, rgba(77, 92, 255, 0.56), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(76, 228, 192, 0.38), transparent 30%),
    var(--company-ink);
  color: white;
  text-align: center;
}

.company-contact::before,
.company-contact::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: '';
  transform: translate(-50%, -50%);
}

.company-contact::before { width: 56vw; height: 56vw; }
.company-contact::after { width: 78vw; height: 38vw; border-style: dashed; transform: translate(-50%, -50%) rotate(-18deg); }

.company-contact-word {
  position: absolute;
  color: transparent;
  font-size: clamp(140px, 25vw, 430px);
  font-weight: 700;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
}

.company-contact-copy {
  position: relative;
  z-index: 2;
}

.company-contact-copy > p {
  margin: 0;
  color: var(--company-signal);
  font-family: var(--font-geist-mono, "Courier New"), monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.company-contact h2 {
  margin: 32px 0 0;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 580;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.company-contact a {
  display: inline-flex;
  min-width: 260px;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  margin-top: 46px;
  border-radius: 999px;
  background: white;
  color: var(--company-ink);
  padding: 0 25px 0 31px;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.company-contact a:hover,
.company-contact a:focus-visible {
  background: var(--company-signal);
  transform: translateY(-3px);
}

.company-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.company-motion-ready .company-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.company-motion-ready .company-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.company-motion-ready .company-identity.company-reveal {
  transform: translateY(calc(var(--company-shift) + 35px));
}

.company-motion-ready .company-identity.company-reveal.is-visible {
  transform: translateY(var(--company-shift));
}

@keyframes company-spin {
  from { transform: translate(-50%, -50%) rotate(17deg) scaleY(0.78); }
  to { transform: translate(-50%, -50%) rotate(377deg) scaleY(0.78); }
}

@keyframes company-spin-reverse {
  from { transform: translate(-50%, -50%) rotate(-28deg) scaleY(0.88); }
  to { transform: translate(-50%, -50%) rotate(-388deg) scaleY(0.88); }
}

@media (max-width: 1280px) {
  .company-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .company-identity {
    width: min(48vw, 610px);
  }
}

@media (max-width: 1080px) {
  .company-hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-bottom: 92px;
  }

  .company-hero-copy {
    padding-top: 40px;
  }

  .company-hero h1 {
    max-width: 800px;
    font-size: clamp(54px, 8.8vw, 82px);
  }

  .company-identity {
    width: min(82vw, 650px);
  }

  .company-reel-grid {
    gap: 10px;
  }

  .company-reel-card {
    min-height: 530px;
  }

  .company-mission-intro {
    grid-template-columns: 1fr;
  }

  .company-name-row {
    grid-template-columns: 42px 0.72fr 0.75fr 1.1fr;
  }

  .company-profile-layout {
    grid-template-columns: 1fr;
  }

  .company-profile-title > span {
    margin-top: 30px;
  }
}

@media (max-width: 720px) {
  .company-hero {
    gap: 48px;
    padding: 126px 22px 74px;
  }

  .company-hero-copy {
    padding-top: 28px;
  }

  .company-hero h1 {
    margin-top: 26px;
    font-size: clamp(43px, 12vw, 67px);
    line-height: 1.12;
  }

  .company-hero h1 br {
    display: none;
  }

  .company-hero-lead {
    margin-top: 28px;
    font-size: 14px;
  }

  .company-hero-note {
    gap: 18px;
    margin-top: 38px;
  }

  .company-identity {
    width: 100%;
    border-radius: 28px;
  }

  .company-identity-code { top: 20px; left: 22px; }
  .company-identity > p { right: 20px; bottom: 18px; }

  .company-reel {
    padding: 88px 18px 118px;
  }

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

  .company-reel-heading p {
    font-size: 29px;
  }

  .company-reel-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .company-reel-card,
  .company-reel-card:nth-child(2) {
    min-height: 470px;
    transform: none;
  }

  .company-mission,
  .company-profile {
    padding: 92px 22px;
  }

  .company-mission-intro {
    margin-top: 54px;
  }

  .company-mission-intro h2 {
    font-size: clamp(43px, 12vw, 65px);
  }

  .company-name-list {
    margin-top: 58px;
  }

  .company-name-row {
    grid-template-columns: 38px 1fr;
    gap: 10px 14px;
    padding: 25px 0 29px;
  }

  .company-name-row h3 {
    font-size: 42px;
  }

  .company-name-row strong,
  .company-name-row p {
    grid-column: 2;
  }

  .company-profile-layout {
    gap: 52px;
    margin-top: 54px;
  }

  .company-profile-list > div {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 23px 0;
  }

  .company-profile-list dd {
    font-size: 13px;
  }

  .company-access {
    grid-template-columns: 1fr;
  }

  .company-access-map {
    min-height: 430px;
  }

  .company-access-copy {
    padding: 78px 24px 90px;
  }

  .company-access-copy h2 {
    margin-top: 42px;
    font-size: 51px;
  }

  .company-contact {
    min-height: 640px;
    padding: 80px 22px;
  }

  .company-contact h2 {
    font-size: clamp(48px, 13vw, 69px);
  }

  .company-contact::before { width: 120vw; height: 120vw; }
  .company-contact::after { width: 160vw; height: 80vw; }
}

@media (max-width: 420px) {
  .company-hero h1 { font-size: 42px; }
  .company-hero-lead br { display: none; }
  .company-hero-note { align-items: flex-start; flex-direction: column; }
  .company-identity-label--field { top: 20%; left: 8%; }
  .company-identity-label--voice { top: 28%; right: 5%; }
  .company-identity-label--growth { right: 10%; bottom: 16%; }
  .company-identity-core { width: 38%; }
  .company-profile-title h2 { font-size: 64px; }
  .company-contact a { min-width: min(100%, 290px); }
}

@media (prefers-reduced-motion: reduce) {
  .company-identity,
  .company-reveal,
  .company-reel-card img {
    transition: none !important;
  }

  .company-identity-ring {
    animation: none !important;
  }
}
