:root {
  --color-primary: #e91e63;
  --color-primary-hover: #c2185b;
  --color-primary-light: #f8bbd9;
  --color-secondary: #0a4bff;
  --color-secondary-hover: #0839cc;
  --color-accent: #ff4081;
  --color-nav-bg: #ad1457;
  --color-footer-bg: #14213d;
  --color-neutral-light: #f9fafc;
  --color-neutral-dark: #212121;
  --color-white: #ffffff;
  --color-deep-teal: #003d5b;
  --color-midnight-navy: #001f3f;
  --color-fast: #ff6f00;

  --gradient-pulse-bridge: linear-gradient(
    45deg,
    var(--color-primary) 0%,
    var(--color-fast-primary) 45%,
    var(--color-hero-dark) 100%
  );
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --font-family:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

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

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.language-switch {
  padding: 0.75rem 2rem;
  select {
    background-color: var(--color-white);
    border: thin solid var(--color-primary-light);
    border-radius: var(--space-sm);
    padding: var(--space-sm);
    /* safari */
    -webkit-appearance: none;
    outline: none;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;

  img {
    height: 36px;
    width: auto;
  }
}

.site-header {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
}

main {
  flex: 1;
}
.hero {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
  color: var(--color-neutral-dark);
  position: relative;
  overflow: hidden;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 99, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  margin-bottom: var(--space-lg);

  .tomorrow {
    color: var(--color-primary);
  }
  .africa {
    color: #27a559;
  }
  .fast {
    color: var(--color-fast);
  }
}

.hero-description {
  font-size: 1.25rem;
  opacity: 0.6;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
}

.hero-graphic {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: linear-gradient(45deg, #e91e63 0%, #ff6f00 45%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(3deg);
}

.hero-graphic img {
  width: 60%;
  filter: brightness(0) invert(1);
}

footer {
  border-top: thin solid #e1e1e1;
  background: var(--color-white);
  color: var(--color-neutral-dark);
  padding: 2rem 2rem;
  text-align: center;
  font-size: 0.9rem;

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


  a:hover,
  a:focus {
    opacity: 0.8;
    text-decoration: underline;
  }

  p {
    margin: 0.5rem 0;
    opacity: 0.9;
  }
}

.footer-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 1.5rem auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-neutral-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    text-decoration: none;
  }

  a:hover {
    background: var(--color-primary);
    opacity: 1;
  }

  svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .container {
    padding: 0 var(--space-lg);
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .hero-visual {
    order: -1;
  }
  .hero-graphic {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .logo {
    padding: var(--space-md);
  }
  .site-header {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }

  .hero {
    padding: var(--space-2xl) 0;

    h1 {
      font-size: 1.75rem;
    }
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-graphic {
    max-width: 280px;
  }
  footer {
    padding: 1.5rem 1rem;
  }
  .footer-social {
    gap: 0.75rem;

    a {
      width: 32px;
      height: 32px;
    }
    svg {
      width: 16px;
      height: 16px;
    }
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 var(--space-md);
  }
  .hero {
    padding: var(--space-xl) 0;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
  .hero-graphic {
    max-width: 220px;
  }
}
