: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;
}

[hidden] {
  display: none !important;
}

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);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 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);
}

body.menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.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-shell,
.nav-panel-body {
  display: inherit;
  align-items: inherit;
  gap: inherit;
}

.nav-panel-head,
.nav-close,
.nav-item-arrow {
  display: none;
}

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

.nav-panel a: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);
}

body.menu-open {
  overflow: hidden;
}

.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,
.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 {
  position: relative;
  color: var(--color-bone);
  background: var(--color-deep);
  padding-block: 26px;
}

.footer-legal-edge-link {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: 26px;
  color: var(--color-lime);
  font-size: 0.92rem;
  font-weight: 800;
}

.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-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-grid-legal-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-grid-legal-page .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-grid-legal-page .footer-links a {
  color: var(--color-lime);
}

.footer-built-by,
.footer-legal-link {
  color: rgba(244, 240, 223, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-built-by {
  justify-self: end;
  text-align: right;
}

.footer-built-by a,
.footer-legal-link {
  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;
}

.footer-icon--instagram,
.footer-icon--instagram svg {
  width: 26px;
  height: 26px;
}

.footer-icon--youtube,
.footer-icon--youtube svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 2.6vw, 28px);
  bottom: clamp(16px, 2.6vw, 28px);
  z-index: 14;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 20px 38px rgba(18, 140, 126, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 42px rgba(18, 140, 126, 0.34);
  filter: saturate(1.04);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

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

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 41;
  }

  .nav-toggle[aria-expanded="true"] {
    opacity: 0;
    pointer-events: none;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    z-index: 40;
    display: block;
    padding: 0;
    background: var(--color-paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel-shell {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    min-height: 100dvh;
    align-items: stretch;
    justify-items: stretch;
    gap: 0;
    background: var(--color-paper);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .nav-panel.is-open .nav-panel-shell {
    transform: translateX(0);
  }

  .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 0;
    margin: 0;
    padding: 0 24px 0;
    background: var(--color-paper);
    border-bottom: 0;
  }

  .nav-panel-head::before,
  .nav-panel-head::after,
  .nav-panel-body::before,
  .nav-panel-body::after {
    content: none !important;
  }

  .brand-panel {
    min-height: 0;
  }

  .brand-panel .brand-logo {
    width: clamp(58px, 18vw, 82px);
    max-height: none;
  }

  .nav-close {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    color: #242626;
    cursor: pointer;
  }

  .nav-close span {
    position: absolute;
    width: 28px;
    height: 2px;
    background: currentColor;
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-panel-body {
    display: grid;
    align-content: start;
    align-items: start;
    justify-items: stretch;
    gap: 0;
    margin-top: -1px;
    padding: 12px 24px 32px;
    background: var(--color-paper);
    overflow-y: auto;
  }

  .nav-panel a {
    width: 100%;
    min-height: 78px;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid rgba(36, 38, 38, 0.08);
    color: #182236;
    font-size: clamp(1.45rem, 5vw, 1.9rem);
    font-weight: 850;
  }

  .nav-panel-body > a:first-child {
    border-top: 0;
    border-bottom: 1px solid rgba(36, 38, 38, 0.08);
  }

  .nav-item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(24, 34, 54, 0.88);
    font-size: 2rem;
    line-height: 1;
  }

  .nav-panel-cart {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: stretch;
    align-self: stretch;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(36, 38, 38, 0.08);
    border-radius: 0;
    color: #182236;
    background: var(--color-paper);
    box-shadow: none;
  }

  .nav-panel-cart:hover {
    transform: none;
    box-shadow: none;
  }

  .nav-panel-cart svg {
    width: 40px;
    height: 40px;
    margin-right: 0;
    flex: 0 0 auto;
  }

  .nav-panel-cart .nav-item-arrow {
    margin-left: auto;
  }

  .nav-panel-cart .cart-count {
    top: 14px;
    right: auto;
    left: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .footer-legal-edge-link {
    position: static;
    display: block;
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-built-by,
  .footer-legal-link {
    text-align: center;
    justify-self: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

@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;
  }
}
