:root {
  --red: #c21e1e;
  --navy: #142649;
  --coral: #fa7e57;
  --white-muted: rgba(255, 255, 255, 0.48);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  font-size: 13pt;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: #fff;
  background: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.16)),
    url("assets/images/background.jpg") center / cover no-repeat;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  padding: 3rem 0;
  align-items: center;
}

.feature {
  width: 100%;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' width='512' height='512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.875'/%3E%3CfeColorMatrix type='matrix' values='.121 0 0 0 0 0 .121 0 0 0 0 0 .121 0 0 0 0 0 .168 0'/%3E%3C/filter%3E%3Crect filter='url(%23n)' width='512' height='512' fill='transparent'/%3E%3C/svg%3E");
  background-size: 512px;
  animation: reveal .75s ease-out both;
}

.feature__inner {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem;
}

.layout {
  display: grid;
  grid-template-columns: 15.75rem 22.34rem 15.75rem;
  gap: 6rem;
  align-items: center;
  justify-content: center;
}

.logo-frame {
  width: 15.75rem;
  padding: .52rem;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 1.1rem rgba(20,38,73,.45);
  line-height: 0;
}

.logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.copy-panel h1 {
  margin: 0 0 1.625rem;
  font-family: "Assistant", Arial, sans-serif;
  font-size: 3.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025rem;
}

.tagline {
  margin: 1.625rem 0;
  color: var(--coral);
  font-family: "Inter", Arial, sans-serif;
  font-size: .875rem;
  line-height: 1.25;
  letter-spacing: .284rem;
  text-transform: uppercase;
}

.intro {
  margin: 1.625rem 0 0;
  color: var(--white-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.875;
}

.social-panel { min-width: 0; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 15.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-link {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background-image: linear-gradient(128deg, rgba(255,255,255,.16), rgba(89,97,105,.01));
  transition: transform .2s ease, filter .2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.social-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.social-link svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: currentColor;
}

.youtube { background-color: #f00; }
.instagram { background-color: #000; }
.facebook { background-color: #4267b2; }
.twitter { background-color: #53c2ef; }
.rumble { background-color: #8ebf54; }

@keyframes reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1100px) and (min-width: 737px) {
  .feature__inner { padding-inline: 2rem; }
  .layout {
    grid-template-columns: 13rem minmax(17rem, 22rem) 13rem;
    gap: 3rem;
  }
  .logo-frame,
  .social-links { width: 13rem; }
}

@media (max-width: 736px) {
  html { font-size: 12pt; }

  .page-shell {
    min-height: 100vh;
    padding: 3rem 0;
  }

  .feature__inner { padding: 3.5rem 2rem; }

  .layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(100%, 19.44rem);
    margin: 0 auto;
    text-align: center;
  }

  .logo-panel,
  .copy-panel,
  .social-panel { width: 100%; }

  .logo-panel {
    padding-bottom: .65rem;
    border-bottom: 2px solid rgba(250,126,87,.12);
  }

  .logo-frame {
    width: 14rem;
    margin: 0 auto;
    padding: .45rem;
  }

  .copy-panel { padding-top: 3.25rem; }

  .copy-panel h1 {
    margin-bottom: 1.421875rem;
    font-size: 3.5rem;
    line-height: 1;
  }

  .tagline { margin: 1.421875rem 0; }

  .intro { margin-top: 1.421875rem; }

  .social-panel {
    margin-top: .65rem;
    padding-top: 2.6rem;
    border-top: 2px solid rgba(250,126,87,.12);
  }

  .social-links {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-shell { padding: 6rem 0; }
}

@media (max-width: 360px) {
  .page-shell { padding: 5.5rem 0; }
  .feature__inner { padding: 2.625rem 1.5rem; }
  .social-links { gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .feature { animation: none; }
  .social-link { transition: none; }
}
