:root {
  --bg: #07080d;
  --panel: rgba(15, 19, 31, 0.88);
  --panel-border: rgba(255, 255, 255, 0.1);
  --text: #f7f8fb;
  --muted: #cfd2de;
  --brand-red: #ff3b3b;
  --brand-orange: #ff9f1a;
  --brand-gold: #ffd166;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, #2a1f1f 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, #1f2238 0%, transparent 38%),
    linear-gradient(160deg, #05060a, #0d1120 55%, #0f1118);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: -25vh -20vw;
  background:
    radial-gradient(circle, rgba(255, 59, 59, 0.2) 0%, rgba(255, 59, 59, 0) 62%),
    radial-gradient(circle at 70% 60%, rgba(255, 159, 26, 0.14) 0%, rgba(255, 159, 26, 0) 66%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

main {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
  padding: 2.2rem 0 4rem;
}

article {
  display: grid;
  gap: 1.15rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: linear-gradient(130deg, rgba(13, 17, 33, 0.94), rgba(12, 13, 19, 0.94));
  padding: clamp(1.3rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(120deg, rgba(5, 8, 16, 0.78), rgba(11, 14, 26, 0.48) 45%, rgba(7, 8, 13, 0.72)),
    url("banner.webp"); */
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 55%, rgba(0, 0, 0, 0.42)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px);
  z-index: -1;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.72);
}

.brand-logo {
  width: clamp(95px, 15vw, 150px);
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.4));
}

.brand-tag {
  margin: 0;
  color: var(--brand-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Oswald", "Impact", sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.95rem);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.22;
  font-family: "Oswald", "Franklin Gothic Medium", sans-serif;
  letter-spacing: 0.012em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  text-wrap: balance;
}

.hero > p {
  margin: 1rem 0 0;
  max-width: 78ch;
  color: var(--muted);
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  margin-top: 1.35rem;
  padding: 0.95rem 1.6rem;
  cursor: pointer;
  color: #0f1117;
  font-family: "Montserrat", "Avenir Next", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(92deg, var(--brand-orange), #ffc857 40%, #ffd166);
  box-shadow: 0 10px 30px rgba(255, 155, 0, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 65%);
  transform: translateX(-145%);
  transition: transform 460ms ease;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 36px rgba(255, 155, 0, 0.55);
  filter: saturate(1.07);
}

.cta-button:hover::before {
  transform: translateX(145%);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(255, 209, 102, 0.8);
  outline-offset: 2px;
}

.primary-cta {
  animation: cta-pulse 2.6s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 155, 0, 0.42);
  }

  50% {
    box-shadow: 0 16px 45px rgba(255, 76, 76, 0.58);
  }
}

aside,
section {
  border-radius: 22px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.2rem clamp(1rem, 2.3vw, 1.8rem);
  animation: reveal 0.55s ease both;
}

aside {
  border-left: 4px solid var(--brand-red);
}

h2 {
  color: #ffd9a3;
  font-size: clamp(1.24rem, 2.3vw, 1.8rem);
}

h3 {
  margin-top: 0.6rem;
  color: #ffcf8a;
  font-size: clamp(1.06rem, 1.8vw, 1.35rem);
}

p {
  margin: 0.75rem 0 0;
  color: #e6e8f1;
}

ul,
ol {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

li {
  margin: 0.46rem 0;
  color: #d9dceb;
}

a {
  color: #9bd2ff;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.9rem;
  font-size: 0.96rem;
}

caption {
  text-align: left;
  margin-bottom: 0.45rem;
  color: #ffc778;
  font-weight: 700;
}

th,
td {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.64rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: #ffe4b0;
  background: rgba(255, 59, 59, 0.18);
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  main {
    width: min(100% - 1rem, 1100px);
    padding-top: 1rem;
  }

  .hero {
    border-radius: 20px;
  }

  aside,
  section {
    border-radius: 16px;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .brand-lockup {
    gap: 0.6rem;
    padding: 0.42rem 0.66rem;
  }

  .brand-tag {
    letter-spacing: 0.06em;
  }

  .cta-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
