:root {
  --navy: #0b1f3a;
  --steel: #1b2f55;
  --crimson: #b22234;
  --scarlet: #d64550;
  --ivory: #f7f4ee;
  --warm-white: #fffaf2;
  --gold: #c9a227;
  --shadow: rgba(6, 15, 30, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Oswald", "Segoe UI", sans-serif;
  color: var(--navy);
  background: radial-gradient(circle at 20% 20%, #f9f3e9 0%, #f1e7d9 45%, #e7ded1 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #132b4f 55%, #0a1a33 100%);
  color: var(--warm-white);
  padding: 64px 8vw 80px;
}

.hero__flag {
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    var(--crimson) 0,
    var(--crimson) 40px,
    var(--warm-white) 40px,
    var(--warm-white) 80px
  );
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow);
  margin-bottom: 40px;
}

.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero__title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
}

.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cta__pill {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  opacity: 0.45;
  z-index: 1;
  animation: drift 18s linear infinite;
}

.main {
  padding: 64px 8vw 80px;
}

.welcome {
  background: var(--warm-white);
  border-radius: 28px;
  box-shadow: 0 24px 40px rgba(13, 25, 45, 0.12);
  padding: 48px clamp(24px, 5vw, 64px);
  border: 1px solid rgba(11, 31, 58, 0.1);
}

.welcome__header {
  border-left: 6px solid var(--crimson);
  padding-left: 18px;
  margin-bottom: 32px;
}

.welcome__header h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 6px;
  color: var(--navy);
}

.welcome__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--steel);
}

.welcome__copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 18px;
}

.welcome__signature {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.2rem;
  margin-top: 24px;
  color: var(--crimson);
}

.footer {
  padding: 24px 8vw 40px;
  text-align: center;
  color: rgba(11, 31, 58, 0.65);
  font-size: 0.9rem;
}

.footer p {
  margin: 6px 0;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-60px);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 48px 6vw 64px;
  }

  .hero__cta {
    border-radius: 20px;
  }

  .welcome {
    padding: 36px 22px;
  }
}
