:root {
  --ufc-red: #E81D2D;
  --ufc-red-dark: #C41222;
  --ufc-black: #0A0A0A;
  --ufc-ink: #111111;
  --ufc-white: #FFFFFF;
  --ufc-gold: #D2AE4B;
  --ufc-grey: #CCCCCC;
  --font-display: "Oswald", "Cairo", sans-serif;
  --font-body: "Barlow", "Cairo", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ufc-white);
  background:
    linear-gradient(115deg, rgba(10, 10, 10, 0.92) 35%, rgba(232, 29, 45, 0.45) 100%),
    radial-gradient(ellipse at 20% 20%, #1a1a1a 0%, var(--ufc-black) 55%);
  background-color: var(--ufc-black);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
}

.logo {
  height: 40px;
  width: auto;
  display: block;
}

.hero {
  padding: clamp(3rem, 12vh, 7rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 44rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--ufc-gold);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lead {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ufc-grey);
  max-width: 36rem;
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  background: var(--ufc-red);
  color: var(--ufc-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--ufc-red);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cta:hover {
  background: var(--ufc-red-dark);
  border-color: var(--ufc-red-dark);
}

.cta-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ufc-white);
}

.strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.strip-inner {
  max-width: 44rem;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
}

.strip h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ufc-gold);
  font-size: 1.1rem;
}

.strip p {
  margin: 0;
  color: var(--ufc-grey);
  line-height: 1.7;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.foot a {
  color: var(--ufc-white);
  text-decoration: none;
}

.foot a:hover {
  color: var(--ufc-gold);
}

@media (max-width: 560px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
