:root {
  --lime: #B9D30E;
  --turquoise: #43CCD6;
  --white: #FFFFFF;
  --black: #2f2f2d;
  --gray: #F3F3F3;
  --dark-gray: #222222;
  --muted: #6D6D6D;
  --line: #D9D9D9;
  --display: "Outfit", sans-serif;
  --body: "DM Sans", sans-serif;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  gap: 28px;
}

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

.brand img {
  width: 170px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--dark-gray);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: none;
}

.nav-links a::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 4px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  box-shadow: 5px 5px 0 var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn::after {
  margin-left: 10px;
  content: "->";
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--lime);
}

.btn--dark:hover {
  box-shadow: 3px 3px 0 var(--lime);
}

.btn--ghost {
  background: var(--white);
  box-shadow: none;
}

.btn--light {
  background: var(--white);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--turquoise);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 44px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero::before {
  position: absolute;
  inset: auto -40px 24px auto;
  width: 260px;
  height: 210px;
  background-image: radial-gradient(var(--turquoise) 2px, transparent 2px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.55;
}

.hero--dark {
  background: var(--black);
  color: var(--white);
}

.hero--dark .eyebrow,
.hero--dark .hero__lead {
  color: var(--white);
}

.hero--catalog {
  background:
    linear-gradient(90deg, rgba(67, 204, 214, 0.13), transparent 46%),
    var(--white);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--dark-gray);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: none;
}

.eyebrow::before {
  width: 36px;
  height: 10px;
  background: var(--lime);
  content: "";
}

.hero h1,
.section-title,
.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.35rem;
}

.hero h1 span,
.section-title span,
.cta-band h2 span {
  color: var(--turquoise);
  padding: 0 0.04em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero--dark h1 span:not([class]) {
  color: var(--lime);
}

.hero__lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--dark-gray);
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__media {
  position: relative;
}

.media-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--gray);
  box-shadow: var(--shadow);
}

.hero--dark .media-stage {
  border-color: var(--white);
  background: var(--dark-gray);
}

.media-stage img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-stage--contain {
  display: grid;
  place-items: center;
  padding: 28px;
}

.media-stage--contain img {
  width: auto;
  height: auto;
  max-height: 440px;
  min-height: 0;
  object-fit: contain;
}

.stamp {
  position: absolute;
  right: -8px;
  top: 20px;
  max-width: 210px;
  padding: 14px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  transform: rotate(3deg);
}

.hero--dark .stamp {
  border-color: var(--white);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stat {
  min-height: 104px;
  padding: 16px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.hero--dark .stat {
  border-color: var(--white);
  background: var(--black);
  color: var(--white);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero--dark .stat span {
  color: #DCDCDC;
}

.service-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 800;
}

.service-pill.is-active {
  background: var(--turquoise);
  color: var(--black);
}

.section {
  padding: 84px 0;
}

.section--gray {
  background: var(--gray);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--turquoise {
  background: var(--turquoise);
}

.proof-section {
  background: var(--black);
  color: var(--white);
}

.proof-section .section-title span:not([class]) {
  color: var(--lime);
  background-image: linear-gradient(transparent 63%, rgba(67, 204, 214, 0.54) 63%);
}

.proof-section .section-copy {
  color: #E8E8E8;
}

.proof-section--light {
  background: var(--white);
  color: var(--black);
}

.proof-section--light .section-title span:not([class]) {
  color: var(--turquoise);
  background-image: linear-gradient(transparent 63%, rgba(185, 211, 14, 0.58) 63%);
}

.proof-section--light .section-copy {
  color: var(--muted);
}

.proof-section--lime {
  background: var(--lime);
  color: var(--black);
}

.proof-section--lime .section-title span:not([class]) {
  color: var(--black);
  background-image: linear-gradient(transparent 63%, rgba(255, 255, 255, 0.72) 63%);
}

.proof-section--lime .section-copy {
  color: var(--dark-gray);
}

.proof-section--lime .kicker {
  border-bottom-color: var(--white);
}

.hero h1 .tone-turquoise,
.section-title .tone-turquoise,
.cta-band h2 .tone-turquoise {
  color: var(--turquoise);
  background-image: none;
}

.hero h1 .tone-lime,
.section-title .tone-lime,
.cta-band h2 .tone-lime {
  color: #9DB300;
  background-image: none;
}

.section--dark .section-title .tone-lime,
.hero--dark h1 .tone-lime,
.proof-section .section-title .tone-lime {
  color: var(--lime);
}

.hero h1 .mark-lime,
.section-title .mark-lime,
.cta-band h2 .mark-lime {
  color: inherit;
  background-image: linear-gradient(transparent 63%, rgba(185, 211, 14, 0.68) 63%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero h1 .mark-turquoise,
.section-title .mark-turquoise,
.cta-band h2 .mark-turquoise {
  color: inherit;
  background-image: linear-gradient(transparent 63%, rgba(67, 204, 214, 0.58) 63%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero h1 .fill-lime,
.section-title .fill-lime,
.cta-band h2 .fill-lime {
  padding: 0 0.12em;
  color: var(--black);
  background-image: linear-gradient(transparent 14%, rgba(185, 211, 14, 0.86) 14%, rgba(185, 211, 14, 0.86) 86%, transparent 86%);
}

.hero h1 .fill-turquoise,
.section-title .fill-turquoise,
.cta-band h2 .fill-turquoise {
  padding: 0 0.12em;
  color: var(--black);
  background-image: linear-gradient(transparent 14%, rgba(67, 204, 214, 0.72) 14%, rgba(67, 204, 214, 0.72) 86%, transparent 86%);
}

.proof-copy--wide {
  max-width: 1180px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.proof-item {
  min-height: 128px;
  padding: 18px;
  border: 2px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-section--light .proof-item,
.proof-section--lime .proof-item {
  background: rgba(255, 255, 255, 0.72);
}

.proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.05;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: inherit;
  opacity: 0.82;
  font-size: 0.94rem;
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-title {
  font-size: 3.1rem;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section-copy {
  color: #DCDCDC;
}

.kicker {
  margin: 0 0 10px;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 5px solid var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: none;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--lime);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tile {
  min-height: 218px;
  padding: 22px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.tile:nth-child(even) {
  background: var(--gray);
}

.tile img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.tile h3,
.step h3,
.price-card h3,
.case-card h3,
.mini-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.05;
}

.tile p,
.step p,
.price-card p,
.case-card p,
.mini-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section--dark .tile,
.section--dark .price-card,
.section--dark .step,
.section--dark .mini-card {
  border-color: var(--white);
  background: var(--dark-gray);
}

.section--dark .tile p,
.section--dark .price-card p,
.section--dark .step p,
.section--dark .mini-card p {
  color: #DCDCDC;
}

.section--dark .price-card__label,
.section--dark .check-list li {
  color: #E8E8E8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.step__number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--display);
  font-weight: 900;
}

.section--dark .step__number {
  border-color: var(--white);
  color: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 24px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.price-card.is-featured {
  background: var(--black);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--turquoise);
}

.price-card.is-lime {
  background: var(--lime);
}

.price-card__label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: none;
}

.price-card.is-featured .price-card__label,
.price-card.is-featured p,
.price-card.is-featured li {
  color: #E8E8E8;
}

.price {
  display: block;
  margin: 18px 0 2px;
  font-family: var(--display);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.interval {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-card.is-featured .interval {
  color: var(--lime);
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--dark-gray);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--black);
  background: var(--lime);
  content: "";
}

.price-card .btn {
  margin-top: auto;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.calculator,
.recommender {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 26px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.calculator h3,
.recommender h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.range-control label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--lime);
}

.result-box {
  min-height: 150px;
  padding: 20px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--gray);
}

.result-box strong {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.result-box span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.tabs {
  display: grid;
  gap: 24px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-button {
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  background: var(--turquoise);
}

[data-tab-panel][hidden] {
  display: none;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  min-height: 220px;
  padding: 22px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.logo-strip img {
  width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.case-card {
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.case-card:hover img {
  transform: scale(1.04);
}

.case-card__body {
  padding: 18px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.faq summary {
  min-height: 58px;
  padding: 18px 54px 18px 18px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--lime);
  content: "+";
  line-height: 20px;
  text-align: center;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: var(--black);
  color: var(--white);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent 68%, var(--lime) 68%, var(--lime) 73%, transparent 73%),
    linear-gradient(0deg, transparent 0, transparent 76%, rgba(67, 204, 214, 0.35) 76%, rgba(67, 204, 214, 0.35) 82%, transparent 82%);
  content: "";
  opacity: 0.8;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  max-width: 820px;
  font-size: 3rem;
}

.cta-band p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #E8E8E8;
}

.site-footer {
  padding: 30px 0;
  background: var(--turquoise);
  color: var(--black);
}

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

.footer-grid img {
  width: 150px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.footer-note {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .nav-shell {
    width: min(100% - 32px, 960px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    padding: 18px;
    border: 2px solid var(--black);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links a {
    justify-content: center;
    min-height: 54px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero__grid,
  .section-head,
  .split,
  .calculator,
  .recommender,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .tile-grid,
  .pricing-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid--three,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .container,
  .nav-shell {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 148px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .tab-list,
  .footer-grid,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .tab-button {
    width: 100%;
  }

  .media-stage,
  .media-stage img {
    min-height: 300px;
  }

  .stat-row,
  .proof-grid,
  .tile-grid,
  .pricing-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-title,
  .cta-band h2 {
    font-size: 2.18rem;
  }

  .stamp {
    position: static;
    margin-top: 12px;
    transform: none;
  }

  .price-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
