:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5e646b;
  --line: #dedede;
  --soft: #f4f4f4;
  --page: #ffffff;
  --dark: #101114;
  --dark-2: #1a1b20;
  --red: #c4192d;
  --red-dark: #8f0f1f;
  --gold: #f4c55f;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(16, 17, 20, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  font-size: 1.5rem;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: #b9bcc3;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.top-nav a {
  color: #fff;
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--gold);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 13, 0.94) 0%, rgba(9, 10, 13, 0.7) 38%, rgba(9, 10, 13, 0.2) 72%),
    linear-gradient(0deg, rgba(9, 10, 13, 1) 0%, rgba(9, 10, 13, 0.1) 38%),
    url("/images/flick.jpg") center / cover;
}

.hero__content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

p,
li,
address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero p {
  color: #eef0f3;
}

.lede {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.primary-links,
.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-decoration: none;
}

.button--primary {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button--primary:hover {
  border-color: var(--red-dark);
  color: #fff;
  background: var(--red-dark);
}

.ticker-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--red);
  color: #fff;
}

.ticker-band div {
  min-height: 108px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.ticker-band strong,
.ticker-band span {
  display: block;
}

.ticker-band strong {
  margin-bottom: 7px;
  font-size: 1rem;
  text-transform: uppercase;
}

.ticker-band span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.section-heading h2 {
  max-width: 640px;
}

.intro-copy {
  border-left: 6px solid var(--red);
  padding-left: clamp(20px, 3vw, 34px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.feature-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--dark);
  text-decoration: none;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background: url("/images/flick.jpg") center / cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 12, 0.98) 0%, rgba(10, 10, 12, 0.24) 72%);
}

.feature-card:hover::before {
  opacity: 0.42;
  transform: scale(1.04);
}

.feature-card--red {
  background: var(--red-dark);
}

.feature-card--red::before {
  opacity: 0.18;
}

.feature-card--image::before {
  opacity: 0.64;
}

.feature-card--dark {
  background: #18191e;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.card-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card strong {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.04;
}

.feature-card span:last-child {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: stretch;
  background: linear-gradient(180deg, #fff 0, #fff 46%, var(--soft) 46%, var(--soft) 100%);
}

.resource-block {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.resource-block--primary {
  grid-row: span 2;
  border-top: 8px solid var(--red);
}

.resource-block--dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.resource-block--dark p,
.resource-block--dark li,
.resource-block--dark a {
  color: #d8dbe1;
}

.channel-list {
  display: grid;
  gap: 12px;
}

.channel-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}

.channel-list a:hover,
.link-list a:hover,
.text-links a:hover {
  color: var(--red);
}

.channel-list strong,
.channel-list span {
  display: block;
}

.channel-list img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.channel-list span span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  font-weight: 850;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  width: auto;
  padding: clamp(36px, 5vw, 58px) clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--dark-2);
}

.trust-band h2,
.trust-band p,
.trust-band address {
  color: #fff;
}

.trust-band p {
  max-width: 720px;
  color: #d6d9df;
}

address {
  margin: 0;
  font-style: normal;
}

.text-links a {
  color: #fff;
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .top-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .ticker-band,
  .intro-section,
  .feature-grid,
  .resource-layout,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .ticker-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .resource-block--primary {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 640px;
  }

  .hero__content,
  .section {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .primary-links,
  .button {
    width: 100%;
  }

  .feature-card {
    min-height: 260px;
    padding: 24px;
  }

  .channel-list a {
    align-items: flex-start;
  }

  .trust-band {
    padding-right: 14px;
    padding-left: 14px;
  }
}
