:root {
  --ink: #141414;
  --night: #101c1a;
  --night-soft: #244c45;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --soft: #eef6f4;
  --line: #e6ecec;
  --muted: #5d666f;
  --orange: #ff650f;
  --pink: #ff3f78;
  --violet: #9a34ff;
  --gradient: linear-gradient(93.85deg, #ff3f78 0%, #ff650f 100%);
  --shadow: 0 22px 70px rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.is-hidden {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 30px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.brand span {
  color: var(--orange);
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-pills a,
.header-cta {
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-pills a {
  padding: 14px 18px;
}

.nav-pills a:hover {
  background: #fff;
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 14px 20px;
  background: #fff;
  color: var(--ink);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.kicker.dark {
  color: var(--night);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.content-section {
  padding: 86px 20px;
  background: #fff;
}

.content-section:nth-of-type(even) {
  background: var(--mist);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px min(7vw, 90px);
  background: var(--night);
  color: #fff;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  padding: 14px 20px;
  border-radius: 50px;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-cta {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .nav-pills {
    width: 100%;
    overflow-x: auto;
  }

  .nav-pills a {
    padding: 13px 14px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 20px;
  }
}
