:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #536175;
  --line: #d8e0e9;
  --paper: #ffffff;
  --soft: #f7fbff;
  --lime: #c8ff5a;
  --orange: #ff6b35;
  --blue: #00b4d8;
  --green: #22c55e;
  --pink: #ff4f9a;
  --purple: #7c3aed;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(200, 255, 90, 0.22), transparent 30%),
    linear-gradient(315deg, rgba(0, 180, 216, 0.16), transparent 26%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(216, 224, 233, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 40px rgba(20, 33, 61, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a,
.nav-cta {
  min-height: 40px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-cta:hover {
  background: var(--soft);
  color: var(--ink);
}

.nav-cta {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

main {
  overflow: hidden;
}

.hero,
.services,
.contact {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.85fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100svh - 86px);
  padding: 64px 0 72px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 0.92;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 900;
}

.hero-text,
.section-heading p,
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--ink);
}

.button.secondary {
  background: #ffffff;
}

.trust-strip,
.contact-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.contact-cues span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow), 10px 10px 0 var(--ink);
}

.hero-panel::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  z-index: -1;
  width: 118px;
  height: 118px;
  border: 18px solid var(--orange);
  border-radius: 8px;
  transform: rotate(10deg);
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: -26px;
  bottom: 22px;
  z-index: -1;
  width: 80px;
  height: 80px;
  border: 16px solid var(--blue);
  border-radius: 999px;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.task-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  margin-bottom: 12px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.task-card span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.task-card strong {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  line-height: 1.2;
}

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

.task-card-blue {
  background: #b9f4ff;
}

.task-card-orange {
  background: #ffe1d5;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.mini-metrics div {
  min-width: 0;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
  font-weight: 900;
}

.mini-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.services {
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 254px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 5px 5px 0 var(--ink);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.accent-lime .service-icon {
  background: var(--lime);
}

.accent-blue .service-icon {
  background: #b9f4ff;
}

.accent-orange .service-icon {
  background: #ffe1d5;
}

.accent-green .service-icon {
  background: #c9f7dc;
}

.accent-pink .service-icon {
  background: #ffd6e8;
}

.accent-purple .service-icon {
  background: #ded3ff;
}

.contact {
  padding: 52px 0 78px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #c8ff5a 58%, #c8ff5a 100%);
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 650px;
  margin-bottom: 0;
}

.contact-action {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.contact-button {
  width: 100%;
}

.plugin-hero,
.plugin-features,
.plugin-pro {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.plugin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 86px);
  padding: 64px 0 72px;
}

.plugin-copy {
  min-width: 0;
}

.plugin-hero h1 {
  max-width: none;
}

.plugin-text {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.plugin-card {
  position: relative;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow), 10px 10px 0 var(--ink);
}

.plugin-card::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  z-index: -1;
  width: 118px;
  height: 118px;
  border: 18px solid var(--lime);
  border-radius: 8px;
  transform: rotate(10deg);
}

.plugin-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.plugin-preview {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--soft);
}

.preview-browser {
  display: flex;
  gap: 7px;
  padding: 12px;
  border-bottom: 2px solid var(--ink);
  background: #ffffff;
}

.preview-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.preview-browser span:nth-child(2) {
  background: var(--lime);
}

.preview-browser span:nth-child(3) {
  background: var(--blue);
}

.preview-product {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
  padding: 16px;
}

.preview-image {
  min-height: 180px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.8), transparent 55%),
    linear-gradient(315deg, rgba(0, 180, 216, 0.74), transparent 48%),
    var(--lime);
}

.preview-lines {
  display: grid;
  align-content: center;
  gap: 12px;
}

.preview-lines strong {
  font-size: 1.1rem;
  line-height: 1.25;
}

.preview-lines span {
  width: 80%;
  height: 12px;
  border-radius: 999px;
  background: var(--line);
}

.preview-lines a,
.preview-lines button {
  min-height: 42px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.preview-lines a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
}

.preview-lines button {
  background: var(--orange);
  color: var(--ink);
}

.plugin-scope {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.plugin-scope span {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.plugin-features {
  padding: 72px 0;
}

/* ===== Feature showcase rows ===== */

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.feature-showcase:first-of-type {
  border-top: 0;
  padding-top: 24px;
}

.feature-showcase--reverse .feature-copy {
  order: 2;
}

.feature-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.18;
}

.feature-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.62;
}

.feature-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.feature-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: var(--lime);
}

/* Shot frame (the screenshot card) */

.feature-shot {
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}

.shot-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--ink);
  background: #f4f8ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shot-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
}

.shot-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f7a32;
  box-shadow: 0 0 0 3px rgba(31, 122, 50, 0.18);
}

.shot-tag {
  color: var(--muted);
}

.shot-frame {
  padding: 18px;
  background: var(--soft);
  display: grid;
  gap: 14px;
}

/* --- Mock browser chrome --- */

.mock-browser {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
}

.mock-browser span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.mock-browser span:nth-child(2) {
  background: var(--lime);
}

.mock-browser span:nth-child(3) {
  background: var(--blue);
}

.mock-browser em {
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
}

/* --- Storefront product mock (feature 01) --- */

.mock-product {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
}

.mock-product__image {
  min-height: 170px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.85), transparent 55%),
    linear-gradient(315deg, rgba(0, 180, 216, 0.7), transparent 48%),
    var(--lime);
}

.mock-product__info {
  display: grid;
  align-content: center;
  gap: 9px;
}

.mock-product__info strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.mock-product__price {
  font-weight: 900;
  color: var(--ink);
  font-size: 1.1rem;
}

.mock-product__line {
  height: 9px;
  border-radius: 999px;
  background: var(--line);
}

.mock-product__line.short {
  width: 60%;
}

.mock-product__buttons {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.mock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.88rem;
  text-align: center;
  background: #ffffff;
}

.mock-button--strike {
  position: relative;
  background: #f1f4f8;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.mock-button--whatsapp {
  background: #25d366;
  color: #0b3a17;
}

.mock-button--whatsapp i {
  font-style: normal;
  color: #ffffff;
  font-size: 0.7rem;
}

.mock-button--cart {
  background: var(--orange);
  color: var(--ink);
  width: 100%;
}

.mock-button--disabled {
  opacity: 0.55;
  filter: grayscale(0.4);
}

.mock-button--small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.8rem;
}

/* --- Admin form mock (feature 02) --- */

.shot-frame--admin {
  background: #ffffff;
  padding: 20px;
}

.mock-admin__title {
  font-weight: 900;
  font-size: 1.05rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mock-field {
  display: grid;
  gap: 6px;
}

.mock-field label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.mock-select,
.mock-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
}

.mock-select em {
  font-style: normal;
  color: var(--muted);
}

.mock-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mock-option {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.mock-option--active {
  border-color: var(--ink);
  background: var(--lime);
  color: var(--ink);
}

/* --- Scope cascade mock (feature 03) --- */

.shot-frame--cascade {
  padding: 22px 18px;
  background: #ffffff;
}

.mock-scope {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.92rem;
}

.mock-scope--global {
  background: var(--lime);
  margin-right: 0;
}

.mock-scope--category {
  background: #b9f4ff;
  margin-left: 28px;
}

.mock-scope--product {
  background: #ffd6e8;
  margin-left: 56px;
}

.mock-scope__label {
  font-weight: 900;
}

.mock-scope__value {
  color: var(--ink);
  font-weight: 600;
}

.mock-scope__arrow {
  margin-left: 24px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* --- Min/Max mock (feature 04) --- */

.mock-qty {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
}

.mock-qty__label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.mock-qty__stepper {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.mock-qty__stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  background: #f4f8ff;
  font: inherit;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: default;
}

.mock-qty__stepper span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 38px;
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  font-weight: 900;
}

.mock-qty__hint {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.mock-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid #b3261e;
  border-radius: 8px;
  background: #ffe5e2;
  color: #7a1813;
  font-size: 0.9rem;
  font-weight: 700;
}

.mock-alert__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #b3261e;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --- Sticky bar mock (feature 05) --- */

.shot-frame--sticky {
  padding: 18px;
}

.mock-sticky__viewport {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  min-height: 220px;
}

.mock-sticky__content {
  display: grid;
  gap: 10px;
  padding: 16px 16px 70px;
}

.mock-sticky__line {
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.mock-sticky__line.short {
  width: 60%;
}

.mock-sticky__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-top: 2px solid var(--ink);
  background: #ffffff;
  box-shadow: 0 -8px 18px rgba(20, 33, 61, 0.08);
}

.mock-sticky__thumb {
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.8), transparent 55%),
    var(--lime);
  flex-shrink: 0;
}

.mock-sticky__name {
  display: grid;
  gap: 1px;
  font-weight: 800;
  font-size: 0.85rem;
  flex: 1;
  min-width: 0;
}

.mock-sticky__name em {
  font-style: normal;
  font-weight: 900;
  color: var(--ink);
  font-size: 0.9rem;
}

/* --- Quality scorecard mock (feature 06) --- */

.shot-frame--scores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.mock-score {
  display: grid;
  gap: 6px;
  padding: 18px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}

.mock-score--speed {
  background: var(--lime);
}

.mock-score--security {
  background: #b9f4ff;
}

.mock-score--seo {
  background: #ffe1d5;
}

.mock-score__label {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.mock-score__value {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.mock-score__hint {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.plugin-pro {
  padding: 52px 0 78px;
}

.pro-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 56%, #b9f4ff 56%, #b9f4ff 100%);
  box-shadow: var(--shadow);
}

.pro-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.pro-list li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .plugin-hero,
  .pro-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .plugin-card {
    max-width: 650px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .feature-showcase--reverse .feature-copy {
    order: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-button {
    width: auto;
  }
}

/* ===== Hamburger menu button ===== */

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 31;
  transition: background 200ms ease;
}

.hamburger-btn:hover {
  background: var(--lime);
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background 200ms ease;
}

.hamburger-btn span::before,
.hamburger-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms ease, top 300ms ease;
}

.hamburger-btn span::before {
  top: -6px;
}

.hamburger-btn span::after {
  top: 6px;
}

/* Animate to X when open */
.hamburger-btn.is-open span {
  background: transparent;
}

.hamburger-btn.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger-btn.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(20, 33, 61, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 300ms ease;
}

.nav-overlay.is-visible {
  opacity: 1;
}

@media (max-width: 760px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.is-visible {
    pointer-events: auto;
  }

  .site-header {
    align-items: center;
    width: min(100% - 20px, 1160px);
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    /* Slide-down drawer inside header */
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 10;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease, padding 350ms ease, opacity 250ms ease;
    opacity: 0;
    padding: 0;
    border-top: 0 solid transparent;
  }

  .nav-links.is-open {
    max-height: 320px;
    opacity: 1;
    padding: 14px 0 4px;
    border-top: 1px solid var(--line);
  }

  .nav-links a {
    padding: 14px 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    transition: background 150ms ease;
  }

  .nav-links a:hover {
    background: var(--lime);
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero,
  .services,
  .contact,
  .plugin-hero,
  .plugin-features,
  .plugin-pro {
    width: min(100% - 24px, 1160px);
  }

  .hero,
  .plugin-hero {
    gap: 34px;
    padding: 48px 0 56px;
  }

  h1,
  .hero-title {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .button {
    width: 100%;
  }

  .trust-strip span,
  .contact-cues span {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-panel {
    padding: 16px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .plugin-card {
    padding: 16px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .hero-panel::before,
  .hero-panel::after,
  .plugin-card::before {
    display: none;
  }

  .preview-product {
    grid-template-columns: 1fr;
  }

  .preview-image {
    min-height: 150px;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .services,
  .plugin-features {
    padding: 54px 0;
  }

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

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

  .feature-showcase {
    padding: 28px 0;
    gap: 24px;
  }

  .shot-frame {
    padding: 12px;
  }

  .mock-product {
    grid-template-columns: 1fr;
  }

  .mock-scope--category {
    margin-left: 14px;
  }

  .mock-scope--product {
    margin-left: 28px;
  }

  .shot-frame--scores {
    grid-template-columns: 1fr;
  }

  .service-icon {
    margin-bottom: 28px;
  }

  .contact,
  .plugin-pro {
    padding-bottom: 54px;
  }

  .contact-card,
  .pro-card {
    padding: 22px;
    background: #ffffff;
  }

  .pro-card {
    gap: 22px;
  }
}