/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Logo-derived palette: cool midnight + violet, single warm gold accent */
  --color-bg: #0c1030;
  --color-bg-alt: #161a3d;
  --color-surface: #1f2450;
  --color-text: #dee2f5;
  --color-text-muted: #8a8db5;
  --color-cream: #eef0fa;
  --color-teal: #7fb8d6;
  --color-teal-hover: #9fcfe8;
  --color-coral: #8b8ae0;
  --color-coral-hover: #a8a7eb;
  --color-lavender: #b8b6ee;
  --color-mint: #6da8c2;
  --color-gold: #f4c862;
  --color-white: #ffffff;

  --font-body: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
  --max-width: 1100px;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-teal-hover);
}

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

/* ===== Starfield Background ===== */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(1px 1px at 10% 15%, rgba(238, 240, 250, 0.7), transparent),
    radial-gradient(1px 1px at 25% 35%, rgba(238, 240, 250, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(244, 200, 98, 0.6), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(238, 240, 250, 0.4), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(238, 240, 250, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 85% 55%, rgba(109, 168, 194, 0.5), transparent),
    radial-gradient(1px 1px at 15% 60%, rgba(238, 240, 250, 0.5), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(238, 240, 250, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 50% 70%, rgba(244, 200, 98, 0.4), transparent),
    radial-gradient(1px 1px at 65% 85%, rgba(238, 240, 250, 0.6), transparent),
    radial-gradient(1px 1px at 80% 40%, rgba(238, 240, 250, 0.4), transparent),
    radial-gradient(1px 1px at 95% 75%, rgba(184, 182, 238, 0.5), transparent),
    radial-gradient(1px 1px at 5% 90%, rgba(238, 240, 250, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 45% 25%, rgba(127, 184, 214, 0.4), transparent),
    radial-gradient(1px 1px at 75% 60%, rgba(238, 240, 250, 0.3), transparent),
    radial-gradient(1px 1px at 20% 50%, rgba(238, 240, 250, 0.5), transparent),
    radial-gradient(1px 1px at 60% 5%, rgba(238, 240, 250, 0.6), transparent),
    radial-gradient(1px 1px at 90% 30%, rgba(238, 240, 250, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 35% 95%, rgba(139, 138, 224, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(238, 240, 250, 0.3), transparent);
  animation: twinkle 8s ease-in-out infinite alternate;
}

body::after {
  background:
    radial-gradient(1px 1px at 8% 22%, rgba(238, 240, 250, 0.5), transparent),
    radial-gradient(1px 1px at 18% 72%, rgba(238, 240, 250, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 33% 48%, rgba(244, 200, 98, 0.3), transparent),
    radial-gradient(1px 1px at 48% 88%, rgba(238, 240, 250, 0.6), transparent),
    radial-gradient(1px 1px at 62% 32%, rgba(238, 240, 250, 0.4), transparent),
    radial-gradient(1px 1px at 78% 68%, rgba(109, 168, 194, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 88% 12%, rgba(238, 240, 250, 0.5), transparent),
    radial-gradient(1px 1px at 42% 58%, rgba(238, 240, 250, 0.3), transparent),
    radial-gradient(1px 1px at 72% 92%, rgba(184, 182, 238, 0.3), transparent),
    radial-gradient(1px 1px at 22% 8%, rgba(238, 240, 250, 0.6), transparent);
  animation: twinkle 12s ease-in-out infinite alternate-reverse;
}

@keyframes twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* All content above starfield */
body > * {
  position: relative;
  z-index: 1;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  text-align: center;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--color-cream);
}

.section p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(12, 16, 48, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(127, 184, 214, 0.12);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-cream);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--color-teal);
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-mark {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-cream);
}

.nav-links a.nav-active {
  color: var(--color-teal);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(12, 16, 48, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(127, 184, 214, 0.12);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}

/* ===== Hero (Home page) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(127, 184, 214, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(139, 138, 224, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at center bottom, rgba(184, 182, 238, 0.1) 0%, transparent 60%);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

/* ===== Page Header (Sub-pages) ===== */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center bottom, rgba(127, 184, 214, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(139, 138, 224, 0.05) 0%, transparent 50%);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: var(--color-coral);
  color: var(--color-white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(139, 138, 224, 0.25);
}

.btn:hover {
  background-color: var(--color-coral-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 138, 224, 0.35);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-teal);
  color: var(--color-teal);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--color-teal);
  color: var(--color-bg);
  box-shadow: 0 6px 20px rgba(127, 184, 214, 0.25);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ===== Card base style ===== */
.highlight-card,
.game-card,
.value-card,
.contact-card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(127, 184, 214, 0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.highlight-card:hover,
.game-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(127, 184, 214, 0.1);
  border-color: rgba(127, 184, 214, 0.2);
}

/* ===== Highlights Grid (Home) ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.highlight-card {
  padding: 2rem;
  text-align: left;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: none;
}

/* Retro atomic decorative dot on highlight cards */
.highlight-card::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.highlight-card:nth-child(1)::before {
  background-color: var(--color-coral);
  box-shadow: 0 0 12px rgba(139, 138, 224, 0.4);
}

.highlight-card:nth-child(2)::before {
  background-color: var(--color-mint);
  box-shadow: 0 0 12px rgba(109, 168, 194, 0.4);
}

.highlight-card:nth-child(3)::before {
  background-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(244, 200, 98, 0.4);
}

.highlight-card:nth-child(4)::before {
  background-color: var(--color-lavender);
  box-shadow: 0 0 12px rgba(184, 182, 238, 0.4);
}

/* ===== Learn Grid ===== */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.learn-card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(127, 184, 214, 0.08);
  padding: 2rem;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(127, 184, 214, 0.1);
  border-color: rgba(127, 184, 214, 0.2);
}

.learn-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  background-color: rgba(244, 200, 98, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.learn-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.learn-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: none;
  margin: 0;
}

/* ===== Games Grid ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.game-card {
  padding: 1.5rem;
  text-align: left;
}

.game-card-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(127, 184, 214, 0.1) 0%, rgba(184, 182, 238, 0.1) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.game-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-mint);
  background-color: rgba(109, 168, 194, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.game-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: none;
  margin: 0;
}

/* ===== Content Block (About) ===== */
.content-block {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.content-block h2 {
  text-align: left;
}

.content-block p {
  max-width: none;
  margin: 0 0 1rem;
  text-align: left;
}

/* ===== Values Grid (About) ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 1.75rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Retro accent stripe on value cards */
.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.value-card:nth-child(1)::after { background: var(--color-teal); }
.value-card:nth-child(2)::after { background: var(--color-coral); }
.value-card:nth-child(3)::after { background: var(--color-gold); }
.value-card:nth-child(4)::after { background: var(--color-lavender); }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: none;
  margin: 0;
}

/* ===== Team Grid (About) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  justify-items: center;
}

.team-card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(127, 184, 214, 0.08);
  padding: 2rem;
  text-align: left;
  max-width: 420px;
  width: 100%;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-lavender));
  margin: 0 auto 1.25rem;
  opacity: 0.6;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
  text-align: center;
}

.team-role {
  color: var(--color-teal);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.team-responsibilities {
  list-style: none;
  padding: 0;
}

.team-responsibilities li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.team-responsibilities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-coral);
}

.team-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===== Contact Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-card {
  padding: 2rem;
  text-align: left;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  max-width: none;
}

.contact-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-teal);
}

.contact-link:hover {
  color: var(--color-teal-hover);
}

/* ===== Social Links ===== */
.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  color: var(--color-cream);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(127, 184, 214, 0.2);
  border-radius: 50px;
  transition: all 0.2s;
}

.social-links a:hover {
  background-color: var(--color-teal);
  color: var(--color-bg);
  border-color: var(--color-teal);
}

/* ===== Footer ===== */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(127, 184, 214, 0.1);
  background-color: rgba(22, 26, 61, 0.5);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(127, 184, 214, 0.2);
  color: var(--color-text-muted);
  transition: all 0.2s;
}

.footer-social a:hover {
  background-color: var(--color-teal);
  color: var(--color-bg);
  border-color: var(--color-teal);
}

.site-footer p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-teal);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .page-header {
    padding: 6.5rem 0 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Home Page Overrides (W4-inspired) ===== */

body.home .container {
  max-width: 1200px;
}

/* Hero — fluid sizing */
body.home .hero {
  padding: 8rem 1.5rem 6rem;
}

body.home .hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}

body.home .hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body.home .hero .btn {
  padding: 1rem 2.8rem;
  font-size: 1.1rem;
}

/* Section label — uppercase teal eyebrow */
body.home .section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

/* Highlights section */
body.home .section-highlights {
  padding: 7rem 0;
  position: relative;
}

body.home .section-highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-teal), var(--color-coral), transparent);
}

body.home .section-highlights h2 {
  font-size: 2.5rem;
}

/* Highlights grid */
body.home .highlights-grid {
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Highlight cards — gradient accent bars */
body.home .highlight-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

body.home .highlight-card::before {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

body.home .highlight-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--color-coral), var(--color-gold));
  box-shadow: 0 0 12px rgba(139, 138, 224, 0.3);
}

body.home .highlight-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--color-mint), var(--color-teal));
  box-shadow: 0 0 12px rgba(109, 168, 194, 0.3);
}

body.home .highlight-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--color-gold), var(--color-coral));
  box-shadow: 0 0 12px rgba(244, 200, 98, 0.3);
}

body.home .highlight-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--color-lavender), var(--color-teal));
  box-shadow: 0 0 12px rgba(184, 182, 238, 0.3);
}

body.home .highlight-card h3 {
  font-size: 1.4rem;
}

body.home .highlight-card p {
  font-size: 1rem;
  line-height: 1.8;
}

/* CTA section */
body.home .section-cta {
  padding: 7rem 0;
}

body.home .section-cta h2 {
  font-size: 2.5rem;
}

body.home .section-cta .cta-buttons {
  gap: 1.5rem;
  margin-top: 2.5rem;
}

body.home .section-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* Responsive — home overrides */
@media (max-width: 600px) {
  body.home .hero h1 {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  body.home .hero .hero-subtitle {
    font-size: 1.15rem;
  }

  body.home .hero .btn {
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
  }

  body.home .section-highlights,
  body.home .section-cta {
    padding: 4.5rem 0;
  }

  body.home .section-highlights h2,
  body.home .section-cta h2 {
    font-size: 2rem;
  }

  body.home .highlight-card {
    padding: 2rem;
  }

  body.home .section-cta .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}
