@charset "UTF-8";

/* =========================
   OVERSIGHT
========================= */

.oversight {
  position: relative;
  padding: 160px 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(64, 120, 145, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(120, 170, 190, 0.10), transparent 32%),
    linear-gradient(180deg, #060708 0%, #0c1013 38%, #10161a 100%);
}

/* =========================
   BACKGROUND GLOWS
========================= */

.oversight__bgGlow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}

.oversight__bgGlow--one {
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: rgba(70, 135, 170, 0.22);
}

.oversight__bgGlow--two {
  bottom: -160px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: rgba(110, 185, 210, 0.12);
}

/* =========================
   CONTAINER
========================= */

.oversight__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* =========================
   INTRO
========================= */

.oversight__intro {
  max-width: 860px;
  margin-bottom: 72px;
}

.oversight__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(185, 225, 240, 0.78);
}

.oversight__h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -2px;
  color: #f5f4f1;
  max-width: 820px;
}

.oversight__accentLine {
  width: 120px;
  height: 3px;
  margin: 30px 0 34px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
    #6ec4e8 0%,
    #bde7f5 50%,
    #5f90a5 100%);
  box-shadow: 0 0 25px rgba(110, 196, 232, 0.35);
}

.oversight__lead {
  margin: 0;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(240, 240, 235, 0.78);
}

/* =========================
   MAIN LAYOUT
========================= */

.oversight__split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

/* =========================
   LEFT SIDE
========================= */

.oversight__left {
  position: relative;
}

.oversight__contentCard {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(12px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* =========================
   CHECKLIST
========================= */

.oversight__checklist {
  display: grid;
  gap: 18px;
}

.oversight__checkItem {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 100%);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.oversight__checkItem:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 200, 230, 0.22);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.oversight__checkIcon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%,
    #dff6ff 0%,
    #7dc4e0 42%,
    #2e5464 100%);
  box-shadow:
    0 0 0 7px rgba(125, 196, 224, 0.12),
    0 0 18px rgba(125, 196, 224, 0.3);
}

.oversight__checkIcon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #091014;
  border-bottom: 2px solid #091014;
  transform: rotate(-45deg);
}

.oversight__checkContent h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #f5f4f1;
}

.oversight__checkContent p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(240, 240, 235, 0.72);
}

/* =========================
   DETAILS
========================= */

.oversight__details {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.oversight__detailBlock {
  padding: 24px 26px;
  border-radius: 22px;
  border: 1px solid rgba(125, 196, 224, 0.12);
  background:
    linear-gradient(145deg,
    rgba(125, 196, 224, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%);
}

.oversight__detailLabel {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(190, 230, 245, 0.8);
}

.oversight__detailBlock p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240, 240, 235, 0.74);
}

/* =========================
   RIGHT SIDE
========================= */

.oversight__right {
  display: grid;
  gap: 24px;
}

/* =========================
   HERO IMAGE
========================= */

.oversight__heroMedia {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #101214;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.oversight__heroImage {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.oversight__heroMedia:hover .oversight__heroImage {
  transform: scale(1.06);
}

.oversight__heroOverlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg,
    rgba(8, 10, 12, 0.72) 0%,
    rgba(8, 10, 12, 0.45) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.oversight__heroOverlay span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 245, 248, 0.84);
}

/* =========================
   MEDIA GRID
========================= */

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

.oversight__gridItem {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1 / 0.78;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #101214;
}

.oversight__gridItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.oversight__gridItem:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

/* =========================
   VIDEO
========================= */

.oversight__videoFrame {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.oversight__video {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.oversight__videoCaption {
  margin: 14px 4px 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(240, 240, 235, 0.58);
}


/* =========================
   REVEAL ANIMATION
========================= */

.oversight-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

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

/* =========================
   GRID ACTIVE STATE
========================= */

.oversight__gridItem.is-active img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* =========================
   1920px
========================= */

@media (max-width: 1920px) {
  .oversight {
    padding: 150px 32px;
  }

  .oversight__container {
    max-width: 1480px;
  }
}

/* =========================
   1200px
========================= */

@media (max-width: 1200px) {
  .oversight {
    padding: 125px 28px;
  }

  .oversight__intro {
    margin-bottom: 58px;
  }

  .oversight__h2 {
    font-size: 52px;
  }

  .oversight__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .oversight__contentCard {
    padding: 34px;
  }

  .oversight__heroMedia,
  .oversight__heroImage {
    min-height: 500px;
  }
}

/* =========================
   768px
========================= */

@media (max-width: 768px) {
  .oversight {
    padding: 95px 20px;
  }

  .oversight__intro {
    margin-bottom: 42px;
  }

  .oversight__eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .oversight__h2 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .oversight__accentLine {
    margin: 24px 0 26px;
  }

  .oversight__lead {
    font-size: 17px;
    line-height: 1.8;
  }

  .oversight__contentCard {
    padding: 24px;
    border-radius: 28px;
  }

  .oversight__checkItem {
    padding: 20px;
    gap: 16px;
  }

  .oversight__checkContent h3 {
    font-size: 17px;
  }

  .oversight__checkContent p,
  .oversight__detailBlock p {
    font-size: 14.5px;
  }

  .oversight__heroMedia,
  .oversight__heroImage {
    min-height: 420px;
  }

  .oversight__heroOverlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
  }

  .oversight__heroOverlay span {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .oversight__mediaGrid {
    gap: 12px;
  }

  .oversight__gridItem {
    border-radius: 18px;
  }
}

/* =========================
   480px
========================= */

@media (max-width: 480px) {
  .oversight {
    padding: 78px 16px;
  }

  .oversight__h2 {
    font-size: 32px;
  }

  .oversight__lead {
    font-size: 16px;
  }

  .oversight__contentCard {
    padding: 18px;
  }

  .oversight__checkItem {
    padding: 18px;
    border-radius: 18px;
  }

  .oversight__checkIcon {
    width: 16px;
    height: 16px;
    margin-top: 7px;
  }

  .oversight__details {
    margin-top: 24px;
  }

  .oversight__detailBlock {
    padding: 20px;
  }

  .oversight__heroMedia,
  .oversight__heroImage {
    min-height: 360px;
    border-radius: 24px;
  }

  .oversight__mediaGrid {
    grid-template-columns: 1fr 1fr;
  }

  .oversight__gridItem {
    aspect-ratio: 1 / 0.9;
  }

  .oversight__videoFrame {
    padding: 12px;
    border-radius: 22px;
  }

  .oversight__video {
    border-radius: 14px;
  }
}

/* =========================
   300px
========================= */

@media (max-width: 300px) {
  .oversight {
    padding: 68px 12px;
  }

  .oversight__h2 {
    font-size: 27px;
  }

  .oversight__lead {
    font-size: 15px;
  }

  .oversight__contentCard {
    padding: 14px;
  }

  .oversight__checkItem {
    flex-direction: column;
    gap: 12px;
  }

  .oversight__mediaGrid {
    grid-template-columns: 1fr;
  }

  .oversight__heroMedia,
  .oversight__heroImage {
    min-height: 300px;
  }

  .oversight__heroOverlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}