:root {
  --bg-top: #081724;
  --bg-mid: #0d2940;
  --bg-bottom: #123f61;
  --surface: rgba(11, 31, 49, 0.58);
  --surface-strong: rgba(18, 44, 66, 0.78);
  --surface-soft: rgba(106, 177, 216, 0.12);
  --text: #f4fbff;
  --muted: #b8cddd;
  --line: rgba(151, 205, 236, 0.18);
  --accent: #5fc0f0;
  --accent-strong: #2499d6;
  --accent-soft: rgba(113, 208, 242, 0.18);
  --shadow-lg: 0 24px 60px rgba(3, 10, 18, 0.44);
  --shadow-md: 0 18px 36px rgba(2, 10, 18, 0.34);
  --shadow-sm: 0 10px 22px rgba(4, 11, 18, 0.3);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(137, 215, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(80, 174, 226, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-bottom) 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(193, 237, 255, 0.16), transparent 22%),
    radial-gradient(circle at 80% 0%, rgba(100, 201, 234, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%);
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 1.5rem 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.panel {
  background: var(--surface);
  border: 1px solid rgba(196, 235, 255, 0.16);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section-header {
  margin-bottom: 1rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 800;
}

.section-title,
.cta-title,
.hero h1 {
  margin: 1rem 0 0;
  font-family: "Fraunces", serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.35rem);
  max-width: 12ch;
}

.section-copy,
.hero-copy p,
.competition-copy p,
.cta-box p {
  color: var(--muted);
  font-size: 1rem;
  margin: 1rem 0 0;
  max-width: 60ch;
}

.section-header-accent {
  width: 92px;
  height: 10px;
  margin: 0.85rem 0 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(126, 221, 255, 0.12), rgba(126, 221, 255, 0.9), rgba(126, 221, 255, 0.12));
  box-shadow: 0 0 30px rgba(95, 192, 240, 0.22);
}
