:root {
  --color-ink: #242626;
  --color-deep: #1a2933;
  --color-lime: #f2e66d;
  --color-bone: #f4f0df;
  --color-paper: #fbf8ea;
  --color-muted: #647071;
  --color-line: rgba(36, 38, 38, 0.14);
  --color-white: #ffffff;
  --shadow-soft: 0 22px 70px rgba(19, 28, 34, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
  --font-main: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-main);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--color-lime);
  outline-offset: 4px;
}

::selection {
  color: var(--color-deep);
  background: var(--color-lime);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(64px, 8vw, 118px);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--color-deep);
  background: var(--color-lime);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 234, 0.9);
  border-bottom: 1px solid rgba(36, 38, 38, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 48px;
}

.brand-logo {
  width: clamp(42px, 5vw, 64px);
  max-height: 56px;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(36, 38, 38, 0.78);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-panel a:not(.btn) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-panel a:not(.btn):hover {
  color: var(--color-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--color-lime);
  border-radius: var(--radius);
  color: var(--color-deep);
  background: var(--color-lime);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.btn-ghost {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  color: var(--color-deep);
  background: var(--color-paper);
  border-color: var(--color-paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--color-deep);
}

.eyebrow.keep-case {
  text-transform: none;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(30px, 5vw, 52px);
  text-align: center;
  margin-inline: auto;
}

.section-head h2,
.intro h2,
.pricing h2,
.team h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(36, 38, 38, 0.76);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 0 4px rgba(242, 230, 109, 0.25);
}

.site-footer {
  color: var(--color-bone);
  background: var(--color-deep);
  padding-block: 26px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: rgba(244, 240, 223, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

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

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--color-lime);
}

.footer-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) - 4px);
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(36, 38, 38, 0.1);
    border-radius: var(--radius);
    background: var(--color-paper);
    box-shadow: var(--shadow-soft);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    width: 100%;
  }

  .nav-panel .btn {
    margin-top: 4px;
  }

  .footer-grid {
    align-items: center;
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
