:root {
  --om-blue: #7ec8f2;
  --white: #f7f7f7;
  --black: #080808;
  --concrete: #2d2d2d;
  --soft: rgba(255,255,255,.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(126,200,242,.22), transparent 36rem),
    linear-gradient(180deg, #050505, #161616);
  color: var(--white);
  font-family: Inter, Helvetica, Arial, sans-serif;
}

main {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 22px 16px 56px;
}

section {
  margin-bottom: 56px;
}

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--om-blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}

h1, h2, h3 {
  line-height: .95;
  margin: 0;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(3.2rem, 16vw, 7rem);
  font-weight: 950;
  text-transform: uppercase;
}

h1 span {
  color: var(--om-blue);
}

h2 {
  font-size: clamp(2.1rem, 9vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

blockquote {
  margin: 32px 0 0;
  padding: 20px;
  border-left: 5px solid var(--om-blue);
  background: rgba(255,255,255,.06);
  font-size: clamp(1.4rem, 6vw, 2.4rem);
  font-weight: 850;
  line-height: 1.08;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  color: var(--soft);
  font-size: 1rem;
  font-style: normal;
}

.carousel-section {
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel img {
  flex: 0 0 92%;
  width: 92%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  scroll-snap-align: center;
  border: 3px solid rgba(126,200,242,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  background: #050505;
}

.texts article,
.video-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
}

.texts p {
  white-space: pre-line;
  color: rgba(255,255,255,.84);
  line-height: 1.62;
  font-size: 1rem;
}

video {
  width: 100%;
  border-radius: 18px;
  background: #000;
}

.link-grid {
  display: grid;
  gap: 16px;
}

.youtube-button {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  padding: 18px 20px;
  border-radius: 999px;
  transition: transform 300ms ease, opacity 300ms ease, background 300ms ease;
  background: var(--om-blue);
  color: #001927;
  box-shadow: 0 16px 40px rgba(126,200,242,.24);
}

.youtube-button:active {
  transform: scale(.98);
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
}

.icon-link:hover {
  background: rgba(126,200,242,.13);
  border-color: rgba(126,200,242,.45);
}

.icon-link:active {
  transform: scale(.98);
}

.link-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--om-blue);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 679px) {
  main {
    padding-inline: 14px;
  }

  .carousel img {
    flex-basis: 94%;
    width: 94%;
    aspect-ratio: 16 / 10;
    max-height: 62vh;
  }
}

@media (min-width: 680px) {
  main {
    padding-inline: 28px;
  }

  .carousel img {
    flex-basis: 78%;
    width: 78%;
    aspect-ratio: 16 / 9;
    max-height: 620px;
  }
}

@media (min-width: 1024px) {
  .carousel img {
    flex-basis: 72%;
    width: 72%;
    aspect-ratio: 16 / 9;
    max-height: 560px;
  }
}
