/* ============================================================
   A MESA — Design System & Styles
   Premium landing page inspired by B55 Conference aesthetics
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter+Tight:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES — Design Tokens
   ============================================================ */
:root {
  /* Colors */
  --color-bg-primary: #000000;
  --color-bg-secondary: #080808;
  --color-bg-accent: #0E0E0E;
  --color-bg-light: #F5F2EC;
  --color-bg-light-alt: #EDE8DF;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.65);
  --color-text-muted: rgba(255, 255, 255, 0.40);
  --color-text-dark: #1A1A1A;
  --color-text-dark-secondary: #555555;
  --color-accent-gold: #6175B3;
  --color-accent-gold-light: #7E91CB;
  --color-accent-gold-dark: #4C5F96;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-gold: rgba(97, 117, 179, 0.30);
  --color-overlay: rgba(0, 0, 0, 0.65);

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter Tight', 'Helvetica Neue', sans-serif;

  /* Font Sizes — Fluid */
  --fs-hero: clamp(2.8rem, 6vw, 5.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.8rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.8rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --fs-label: 0.75rem;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);
  --section-px: clamp(1.25rem, 5vw, 4rem);
  --container-max: 1200px;
  --container-narrow: 880px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition-fast: 0.3s var(--ease-smooth);
  --transition-mid: 0.6s var(--ease-smooth);
  --transition-slow: 1s var(--ease-smooth);

  /* Z-index layers */
  --z-bg: 0;
  --z-content: 1;
  --z-overlay: 5;
  --z-nav: 100;
  --z-modal: 200;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-accent-gold); }
.text-muted { color: var(--color-text-secondary); }

/* ---- Reveal Animation Base ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-mid), transform var(--transition-mid);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.heading-display {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.heading-2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.2;
}

.heading-3 {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

.body-text {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.body-text--dark {
  color: var(--color-text-dark-secondary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-accent-gold);
  color: #000;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn--primary:hover {
  background: var(--color-accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(97, 117, 179, 0.35);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
}

/* Pulse animation for main CTA */
.btn--pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(97, 117, 179, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(97, 117, 179, 0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.5rem 0;
  transition: all var(--transition-fast);
}

.navbar.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition-fast);
}

.navbar.is-scrolled .navbar__logo img {
  height: 36px;
}

.navbar__cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.7rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

/* Background layers */
.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.5px);
  background-size: 18px 18px;
  background-position: center top;
}

.hero__floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220%;
  height: 44%;
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%) perspective(520px) rotateX(73deg);
  transform-origin: bottom center;
  background-image: radial-gradient(rgba(97, 117, 179, 0.3) 1px, transparent 1.6px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 74%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 74%);
  opacity: 0.45;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    radial-gradient(120% 90% at 50% 8%, transparent 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 22%, transparent 55%, rgba(0, 0, 0, 0.9) 100%);
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero__label {
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent-gold);
}

.hero__subtitle {
  max-width: 560px;
  margin-bottom: 0.5rem;
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.hero__tagline {
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */
.highlights {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlights__item {
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
}

.highlights__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--color-border);
}

.highlights__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent-gold);
}

.highlights__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.highlights__desc {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* ============================================================
   NAMES / SOCIAL PROOF
   ============================================================ */
.names {
  background: var(--color-bg-primary);
}

.names__header {
  margin-bottom: 4rem;
}

.names__subtitle {
  color: var(--color-text-secondary);
  margin-top: 0.75rem;
  font-style: italic;
  font-family: var(--font-display);
}

.names__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.names__card {
  text-align: center;
  transition: transform var(--transition-fast);
}

.names__card:hover {
  transform: translateY(-4px);
}

.names__card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.names__card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.names__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.names__card:hover .names__card-img img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.names__card-name {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-primary);
}

.names__card-role {
  font-size: var(--fs-label);
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */
.manifesto {
  position: relative;
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.manifesto__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.7) 100%);
}

.manifesto__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.manifesto__text {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--color-text-primary);
  border-left: 3px solid var(--color-accent-gold);
  padding-left: 2rem;
}

/* ============================================================
   PILLARS SECTION
   ============================================================ */
.pillars {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pillars__header {
  margin-bottom: 4rem;
}

.pillars__label {
  color: var(--color-accent-gold);
}

.pillars__title {
  color: var(--color-text-primary);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid var(--color-border);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(97, 117, 179, 0.08);
  border-color: var(--color-border-gold);
}

.pillar-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(97, 117, 179, 0.1);
  border: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-accent-gold);
}

.pillar-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pillar-card__text {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.pillar-card__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

/* ============================================================
   JOURNEY SECTION
   ============================================================ */
.journey {
  background: var(--color-bg-primary);
}

.journey__header {
  margin-bottom: 4rem;
}

.journey__subtitle {
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: var(--fs-body);
}

.journey__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.journey__column-title {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border-gold);
}

.journey__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.journey__item-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.journey__item-desc {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* Gallery strip between sections */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0;
}

.gallery-strip__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-mid);
}

.gallery-strip__img:hover img {
  transform: scale(1.06);
}

/* ============================================================
   PRICING / INVESTMENT
   ============================================================ */
.investment {
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.investment::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(97, 117, 179, 0.05) 1px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.investment__header {
  margin-bottom: 2rem;
}

.investment__benefits {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.investment__benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.investment__benefit-icon {
  color: var(--color-accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.investment__benefit-text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
}

.investment__card {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(97, 117, 179, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.investment__card-label {
  margin-bottom: 1.5rem;
}

.investment__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--color-accent-gold);
  margin-bottom: 0.5rem;
}

.investment__price-sub {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.investment__form-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.investment__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus {
  border-color: var(--color-accent-gold);
  background: rgba(97, 117, 179, 0.06);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn--full {
  width: 100%;
  margin-top: 0.5rem;
}

.investment__card .btn {
  padding: 1.15rem 2.5rem;
}

.investment__note {
  max-width: 650px;
  margin: 2rem auto 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

.investment__includes {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer__inner {
  text-align: center;
}

.footer__logo img {
  height: 60px;
  margin: 0 auto 1.5rem;
  opacity: 0.6;
}

.footer__text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-style: italic;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  transform: translateY(-2px);
}

.footer__copy {
  font-size: var(--fs-label);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .names__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights__item:nth-child(2)::after {
    display: none;
  }

  .highlights__item:nth-child(odd)::after {
    display: block;
  }

  .highlights__item:nth-child(3)::after {
    display: block;
  }

  .highlights__item:last-child::after {
    display: none;
  }

  .names__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .journey__columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding-bottom: 3rem;
    padding-top: 6rem;
  }

  .hero__floor {
    opacity: 0.3;
  }

  .manifesto__quote {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    padding-left: 1.25rem;
  }

  .investment__card {
    padding: 2rem 1.5rem;
  }

  .navbar__logo img {
    height: 36px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .highlights__grid {
    grid-template-columns: 1fr 1fr;
  }

  .names__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.7rem;
  }
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero entrance animations */
.hero__content .hero__label {
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero__content .hero__title {
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.hero__content .hero__subtitle {
  animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero__content .hero__tagline {
  animation: fadeInUp 0.8s var(--ease-smooth) 0.75s both;
}

.hero__content .btn {
  animation: fadeInUp 0.8s var(--ease-smooth) 0.9s both;
}
