.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  padding: 140px 0 48px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 15, 0.9) 75%);
  z-index: -1;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__video,
.hero__placeholder,
.progressive-media__asset,
.progressive-media__placeholder {
  position: absolute;
  inset: 0;
}

.hero__video video,
.progressive-media__asset img,
.progressive-media__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  opacity: 0;
  transition: opacity 400ms ease;
}

.hero__media.is-video-ready .hero__video {
  opacity: 1;
}

.hero__placeholder {
  filter: saturate(0.88);
  transform: scale(1.03);
  transition: opacity 360ms ease;
}

.hero__media.is-video-ready .hero__placeholder {
  opacity: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}

.hero__inner,
.section,
.site-footer__inner {
  width: var(--content-width);
  margin-inline: auto;
}

.hero__inner {
  display: grid;
  gap: 32px;
}

.hero__copy {
  max-width: 580px;
}

.hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0.06em;
}

.hero__tagline {
  margin: 14px 0 0;
  color: var(--color-text-soft);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.hero__statusbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero__status-line {
  width: 32px;
  height: 1px;
  background: rgba(0, 212, 255, 0.2);
  flex: 0 0 auto;
}

.hero__statusbar::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  padding: 96px 0;
}

.service-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.story-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(14, 17, 24, 0.78);
}


.service-card h3,
.story-card h3 {
  margin: 0;
}

.service-card p,
.story-card p,
.lead-copy {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  min-height: 340px;
}

.service-card__content,
.story-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 10px;
  height: 100%;
  padding: 24px;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.08), rgba(5, 6, 10, 0.82));
}

.service-card__logo {
  width: auto;
  max-height: 34px;
}

.story-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.story-card {
  min-height: 420px;
}

.progressive-media {
  position: absolute;
  inset: 0;
}

.progressive-media__placeholder {
  filter: blur(0);
  transform: scale(1.04);
  transition: opacity 320ms ease;
}

[data-progressive-frame].is-loaded .progressive-media__placeholder {
  opacity: 0;
}

.story-card__content {
  justify-content: end;
}

.story-card__meta {
  font-family: var(--font-mono);
  color: rgba(0, 212, 255, 0.7);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.home-page .hero {
  padding: 120px 0 44px;
}

.home-page .hero__inner {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-inner-reveal 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms forwards;
}

@keyframes hero-inner-reveal {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .hero__copy {
  max-width: 640px;
}

.home-page .hero__eyebrow {
  margin-bottom: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: rgba(0, 212, 255, 0.6);
}

.home-page .hero h1 {
  font-size: clamp(1.2rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-page .hero__tagline {
  margin-top: 8px;
  font-size: clamp(0.72rem, 1.8vw, 0.92rem);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
}

.home-page .hero__statusbar {
  gap: 16px;
}

.home-page .hero__statusbar::before {
  width: 6px;
  height: 6px;
}

.home-page .hero__status {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.hero__scroll-indicator {
  display: none;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.68), transparent);
  animation: hero-scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-line {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.home-page .section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.66rem;
  color: rgba(0, 212, 255, 0.64);
}

.home-page .section-heading__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(0, 212, 255, 0.42);
}


.home-page .section-heading h2 {
  font-size: 48px;
  letter-spacing: 0.1em;
  margin: 8px 0 0;
}

.home-page .section-heading__sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  padding: 0;
  margin: 0;
}

.home-page .section__about {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background: linear-gradient(180deg, rgba(6, 9, 16, 0.58), rgba(10, 10, 15, 0.86));
}

.home-page .section__about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 160, 198, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 160, 198, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
}

.home-page .section__about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 15, 0.9) 75%);
  pointer-events: none;
}

.home-page .section__about .section-container {
  position: relative;
  z-index: 2;
}


.home-page .about-grid {
  display: grid;
  margin-top: 35px;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
}

.home-page .about-card {
  min-height: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 30px;
  border: 0;
  border: 1px solid rgba(0, 212, 255, 0.5);
  background: rgba(10, 11, 16, 0.65);
}

.home-page .about-card:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.55);
}

.home-page .about-card h3 {
  font-size: clamp(1rem, 2.2vw, 1.24rem);
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin: 0;
}

.home-page .about-card p {
  margin: 4px 0 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(0, 212, 255, 0.72);
}

.home-page .section--service {
  width: 100%;
  max-width: none;
  padding-bottom: 48px;
  padding-top: 82px;
}

.home-page .section--service .section-heading {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 80px;
}

.home-page .service-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
}

.home-page .service-grid::before,
.home-page .service-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.24), transparent);
}

.home-page .service-grid::before {
  top: 0;
}

.home-page .service-grid::after {
  bottom: 0;
}

.home-page .service-card {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.home-page .service-card .progressive-media__placeholder img,
.home-page .service-card .progressive-media__asset img {
  transition: transform 700ms ease;
}

.home-page .service-card:hover .progressive-media__placeholder img,
.home-page .service-card:hover .progressive-media__asset img {
  transform: scale(1.08);
}

.home-page .service-card--featured .service-card__content::before {
  background: rgba(232, 132, 60, 0.5);
}

.home-page .service-card__content {
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 18px;
  background: transparent;
}

.home-page .service-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background-color 240ms ease;
  z-index: -1;
}

.home-page .service-card:hover .service-card__content::before {
  background: rgba(0, 0, 0, 0.3);
}

.home-page .service-card__eyebrow {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.62);
}

.home-page .service-card__logo {
  align-self: center;
  justify-self: center;
  max-height: 54px;
  width: auto;
  max-width: 78%;
}

.home-page .service-card__company {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

.home-page .service-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 0.8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.home-page .service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

.service-more {
  width: var(--content-width);
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.home-page .home-recruit {
  position: relative;
  overflow: hidden;
  background: rgba(10, 11, 16, 0.95);
}

.home-page .home-recruit__glow {
  position: absolute;
  top: 50%;
  right: 20%;
  width: clamp(280px, 42vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 160, 198, 0.12);
  filter: blur(120px);
  transform: translateY(-50%);
  pointer-events: none;
}

.home-page .home-recruit__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
}

.home-page .home-recruit__media {
  position: relative;
  min-height: 300px;
}

.home-page .home-recruit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .home-recruit__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 16, 0.1), rgba(10, 11, 16, 0.88));
}

.home-page .home-recruit__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 46px clamp(24px, 5vw, 78px) 54px;
}

.home-page .home-recruit__heading {
  display: grid;
  gap: 8px;
}

.home-page .home-recruit__heading .section-heading__eyebrow {
  justify-self: start;
}

.home-page .home-recruit__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: 0.1em;
}

.home-page .home-recruit .button-link {
  width: fit-content;
}

.home-page .home-news {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  background: rgba(8, 10, 16, 0.96);
  padding-top: 120px;
  padding-bottom: 120px;
}

.home-page .home-news__inner {
  width: var(--content-width);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.home-page .home-news__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(0, 160, 198, 0.1);
}

.home-page .home-news__glow--top {
  top: -100px;
  right: 12%;
  width: clamp(260px, 34vw, 500px);
  aspect-ratio: 1;
  filter: blur(150px);
}

.home-page .home-news__glow--bottom {
  bottom: -140px;
  left: -80px;
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1;
  filter: blur(140px);
}

.home-page .home-news__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.home-page .home-news__heading {
  display: grid;
  justify-items: start;
  gap: 8px;
}

/* .home-page .home-news__heading .section-heading__eyebrow::before,
.home-page .home-news__heading .section-heading__eyebrow::after {
  display: none;
} */

.home-page .home-news__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: 0.1em;
}

.home-page .home-news__more {
  width: fit-content;
  color: rgba(0, 212, 255, 0.92);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.home-page .home-news__more:hover {
  color: rgba(132, 232, 255, 0.95);
}

.home-page .home-news__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 25px;
}

.home-page .news-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgb(22 22 31);
  overflow: hidden;
  transition: border-color 240ms ease, box-shadow 240ms ease;
  border-radius: 8px;
}

.home-page .news-card:hover {
  border-color: rgba(0, 212, 255, 0.34);
  box-shadow: 0 0 30px rgba(0, 160, 198, 0.16);
}

.home-page .news-card__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.home-page .news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease;
}

.home-page .news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.home-page .news-card__body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.home-page .news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-page .news-card__date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: 0.08em;
}

.home-page .news-card__tag {
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  color: #fff;
  padding: 3px 9px;
}

.home-page .news-card__title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #fff;
}

.home-page .news-card__summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
  font-size: 0.76rem;
}

.home-page .home-contact {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  background: rgba(10, 11, 16, 0.96);
}

.home-page .home-contact__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-size: 34px 34px;
}

.home-page .home-contact__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(320px, 52vw, 760px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgb(28, 34, 54);
  filter: blur(150px);
  pointer-events: none;
}

.home-page .home-contact__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 760px);
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;
}

.home-page .home-contact__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(0, 212, 255, 0.62);
}

.home-page .home-contact__eyebrow::before,
.home-page .home-contact__eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(0, 212, 255, 0.4);
}

.home-page .home-contact h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 5.4vw, 3.5rem);
  letter-spacing: 0.08em;
}

.home-page .home-contact__subtitle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.home-page .home-contact .button-link {
  margin-top: 34px;
  padding: 15px 34px;
  font-weight: 700;
}

.home-page .story-grid {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .home-page .hero {
    align-items: flex-end;
    padding: 112px 0 30px;
  }

  .home-page .hero__cta {
    display: none;
  }

  .home-page .hero__statusbar {
    display: none;
  }

  .home-page .hero__copy {
    max-width: 320px;
  }

  .home-page .hero h1 {
    font-size: 1.22rem;
  }

  .home-page .hero__tagline {
    margin-top: 6px;
    font-size: 0.7rem;
  }

  .home-page .about-grid {
    border: 1px solid rgba(0, 212, 255, 0.26);
  }

  .home-page .about-card {
    border-right: 0;
    aspect-ratio: auto;
    min-height: 84px;
  }

  .home-page .about-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(0, 212, 255, 0.24);
  }

  .home-page .about-card:last-child {
    border-bottom: 0;
  }

  .home-page .service-card {
    aspect-ratio: 16 / 10;
  }

  .hero__scroll-indicator {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 7px;
    z-index: 5;
  }

  .home-page .hero__scroll {
    font-size: 0.52rem;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.56);
  }

  .site-header {
    padding-top: 16px;
  }

  .page-hero {
    padding-top: 136px;
  }

  .hero {
    padding-bottom: 32px;
  }

  .hero__inner {
    gap: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .home-page .home-recruit__media {
    min-height: 240px;
  }

  .home-page .home-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-page .home-contact__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    gap: 9px;
  }

  .home-page .home-contact__eyebrow::before,
  .home-page .home-contact__eyebrow::after {
    width: 24px;
  }

  .home-page .home-contact .button-link {
    width: 100%;
    max-width: 320px;
  }

  .home-page .section__about {
    padding-top: 6rem;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 6rem;
  }

  .home-page .section--service .section-heading {
    padding-left: 24px;
  }

  .home-page .home-recruit__content {
    padding: 64px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero__inner {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (min-width: 768px) {
  .home-page .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(238px, 18vw, 320px);
  }

  .home-page .home-recruit__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 520px;
  }

  .home-page .home-recruit__media-shade {
    background: linear-gradient(90deg, rgba(10, 11, 16, 0), rgba(10, 11, 16, 0.84));
  }

  .home-page .home-recruit__content {
    padding: 56px clamp(24px, 4vw, 90px);
  }

  .home-page .home-news__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .home-page .home-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .home-page .home-contact {
    padding-top: 128px;
    padding-bottom: 116px;
  }

  .home-page .service-card {
    aspect-ratio: auto;
    height: 100%;
  }

  .home-page .service-card:nth-child(1) {
    grid-column: span 2;
  }

  .home-page .service-card:nth-child(2) {
    grid-column: 3;
  }

  .home-page .service-card:nth-child(3) {
    grid-column: 1;
  }

  .home-page .service-card:nth-child(4) {
    grid-column: 2;
  }

  .home-page .service-card:nth-child(5) {
    grid-column: 3;
  }

  .home-page .service-card:nth-child(6) {
    grid-column: 1;
  }

  .home-page .service-card:nth-child(7) {
    grid-column: 2 / span 2;
  }

  .home-page .news-card__body {
    padding: 20px;
  }

  .home-page .hero__scroll-indicator {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
  }

  .home-page .hero__scroll {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.58);
  }
}

@media (min-width: 1100px) {
  .home-page .home-news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
