:root {
  --primary: #0b0f19;
  --accent: #ffd166;
  --background: #fafaf7;
  --neutral: #6b7280;
  --surface: #fffef8;
  --edge: #e6e7df;
  --text-soft: #283247;
  --card-bg: linear-gradient(165deg, #fffefa 0%, #f6f7f2 100%);
  --mission-bg: linear-gradient(145deg, #0b0f19 0%, #171f31 100%);
  --mission-text: #dae0ec;
  --cta-bg: linear-gradient(180deg, #ffffff 0%, #f9f8f2 100%);
  --button-muted-bg: rgb(255 255 255 / 62%);
  --button-muted-text: #0b0f19;
  --footer-text: #6b7280;
  --theme-button-bg: rgb(255 255 255 / 78%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at 12% 8%, #fff6d9 0, transparent 38%),
    radial-gradient(circle at 90% 24%, #f6f6ef 0, transparent 36%), var(--background);
  color: var(--primary);
  line-height: 1.5;
}

.page-glow {
  position: fixed;
  top: -320px;
  left: 50%;
  width: min(980px, 96vw);
  height: 760px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgb(255 209 102 / 58%) 0%,
    rgb(255 209 102 / 26%) 45%,
    rgb(255 209 102 / 0%) 78%
  );
  filter: blur(24px);
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1080px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 34px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--edge);
  border-radius: 999px;
  padding: 0.2rem;
  background: var(--theme-button-bg);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--neutral);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.76rem;
  border-radius: 999px;
  padding: 0.33rem 0.56rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.lang-btn[aria-pressed="true"] {
  background: var(--primary);
  color: var(--background);
}

main {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 4rem;
  min-height: calc(100vh - 8rem);
}

.section {
  animation: rise 720ms ease both;
}

.section:nth-child(2) {
  animation-delay: 120ms;
}

.section:nth-child(3) {
  animation-delay: 220ms;
}

.section:nth-child(4) {
  animation-delay: 320ms;
}

.section:nth-child(5) {
  animation-delay: 420ms;
}

.hero {
  padding: 6.2rem 0 4.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--neutral);
  margin: 0 0 0.8rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 6.4vw, 4.8rem);
  line-height: 0.95;
  max-width: 12ch;
}

.hero-copy {
  margin-top: 1.4rem;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.15rem;
}

.availability-note {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 209 102 / 55%);
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  background: rgb(255 209 102 / 18%);
  color: var(--primary);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
  box-shadow: 0 8px 20px rgb(11 15 25 / 18%);
}

.btn-primary:hover {
  filter: brightness(0.94);
}

.btn-ghost {
  border: 1px solid var(--edge);
  color: var(--button-muted-text);
  background: var(--button-muted-bg);
}

#values {
  padding-top: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  max-width: 18ch;
  margin-bottom: 1.3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 1.1rem;
  background: var(--card-bg);
}

.value-card h3 {
  font-size: 1.14rem;
  margin-bottom: 0.45rem;
}

.value-card p {
  color: var(--text-soft);
}

.value-card-wide {
  grid-column: span 2;
}

.mission {
  margin-top: 3.2rem;
  padding: 2rem;
  border-radius: 16px;
  background: var(--mission-bg);
  color: #f7f8f5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
}

.mission .eyebrow {
  color: rgb(255 209 102 / 82%);
}

.mission h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.07;
  max-width: 18ch;
}

.mission p {
  font-size: 1.04rem;
  color: var(--mission-text);
}

.cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.6rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--edge);
  background: var(--cta-bg);
}

.cta h2 {
  font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  margin-bottom: 0.65rem;
}

.cta p {
  max-width: 56ch;
  margin: 0 auto 1.2rem;
  color: var(--text-soft);
}

.site-footer {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
  color: var(--footer-text);
  font-size: 0.95rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .page-glow {
    top: -240px;
    height: 620px;
    filter: blur(22px);
  }

  .site-header {
    padding: 0.2rem 0;
    margin-top: 0.75rem;
    align-items: center;
  }

  .brand img {
    height: 30px;
  }

  .hero {
    padding: 4.3rem 0 2.9rem;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }

  .hero-copy {
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .availability-note {
    margin-top: 1.1rem;
    font-size: 0.95rem;
    padding: 0.5rem 0.86rem;
  }

  .lang-btn {
    font-size: 0.84rem;
    padding: 0.38rem 0.66rem;
  }

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

  .value-card-wide {
    grid-column: auto;
  }

  .mission {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .cta {
    padding: 2rem 1rem;
  }
}
