/* KeskinPOS marketing — industrial charcoal / orange (v0-informed) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #121417;
  --bg-elevated: #1a1d22;
  --surface: #eef0f2;
  --surface-2: #ffffff;
  --text: #121417;
  --text-inv: #f4f5f6;
  --muted: #5c6570;
  --muted-inv: #9aa3ad;
  --brand: #ea580c;
  --brand-deep: #c2410c;
  --brand-soft: #fff1e7;
  --border: #d5dae0;
  --border-dark: #2a3038;
  --shell: 1120px;
  --header-h: 64px;
  --font: "Lato", "Segoe UI", system-ui, sans-serif;
  --display: "Montserrat", "Lato", system-ui, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 4px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
code, pre { font-family: var(--mono); }

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(18, 20, 23, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(1.1);
  color: var(--text-inv);
  transition: height .35s var(--ease), background .35s, border-color .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  height: 56px;
  background: rgba(18, 20, 23, .96);
  border-bottom-color: var(--border-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}
.header-logo-img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  transition: transform .4s var(--ease);
}
.site-header.is-scrolled .header-logo-img { transform: scale(.92); }
.header-wordmark {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: .92rem;
}
.header-wordmark.is-solo {
  font-size: 1.05rem;
  letter-spacing: .1em;
}
.header-nav ul { display: flex; gap: 1.35rem; }
.header-nav a {
  font-size: .88rem;
  color: var(--muted-inv);
  font-weight: 500;
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--brand);
  transition: right .35s var(--ease);
}
.header-nav a:hover { color: var(--text-inv); }
.header-nav a:hover::after { right: 0; }
.header-actions { display: flex; gap: .5rem; align-items: center; }

.btn-primary,
.btn-primary-sm,
.btn-ghost,
.btn-ghost-sm,
.btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .25s;
}
.btn-primary, .btn-primary-sm {
  background: var(--brand);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(234, 88, 12, .28);
}
.btn-primary:hover, .btn-primary-sm:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}
.btn-ghost, .btn-ghost-sm {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover, .btn-ghost-sm:hover {
  border-color: #9aa3ad;
  background: #fff;
}
.site-header .btn-ghost-sm {
  color: var(--text-inv);
  border-color: var(--border-dark);
}
.site-header .btn-ghost-sm:hover {
  background: rgba(255,255,255,.06);
  border-color: #5c6570;
}
.btn-ghost--on-dark {
  color: var(--text-inv) !important;
  border-color: #3f4650 !important;
}
.btn-ghost--on-dark:hover {
  background: rgba(255,255,255,.06) !important;
  border-color: #9aa3ad !important;
}
.btn-primary, .btn-ghost { padding: .85rem 1.25rem; font-size: .95rem; }
.btn-primary-sm, .btn-ghost-sm { padding: .48rem .9rem; font-size: .8rem; }
.btn-ver {
  font-family: var(--mono);
  font-size: .72rem;
  opacity: .95;
  font-weight: 500;
  padding: .15rem .4rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.18);
}
.btn-disabled {
  opacity: .45;
  pointer-events: none;
  padding: .85rem 1.35rem;
  border: 1px solid var(--border);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-inv);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav.is-open {
  display: block !important;
  pointer-events: auto;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .55);
  border: 0;
  cursor: pointer;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 320px);
  background: var(--bg);
  color: var(--text-inv);
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  box-shadow: -12px 0 40px rgba(0, 0, 0, .35);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav-head strong {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: .9rem;
}
.mobile-nav-close {
  border: 1px solid var(--border-dark);
  background: transparent;
  border-radius: var(--radius);
  padding: .45rem .75rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  color: var(--text-inv);
}
.mobile-nav a {
  color: var(--text-inv);
  font-size: 1.05rem;
  font-weight: 600;
  padding: .85rem .35rem;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav a:hover { color: #fdba74; }
.mobile-nav .btn-primary {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(234, 88, 12, .38), transparent 58%),
    radial-gradient(700px 420px at 12% 92%, rgba(234, 88, 12, .16), transparent 55%),
    linear-gradient(168deg, #0c0e11 0%, #15181d 48%, #1a1714 100%);
  color: var(--text-inv);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 42% 45%, #000 18%, transparent 72%);
  pointer-events: none;
  animation: meshDrift 30s linear infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(255,255,255,.015) 11px,
      rgba(255,255,255,.015) 12px
    );
  pointer-events: none;
  opacity: .7;
}
@keyframes meshDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-44px, -44px, 0); }
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: .5rem;
}
.hero-wordmark {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  line-height: .95;
  margin-bottom: 1.35rem;
  color: #fff;
  opacity: 0;
  animation: heroIn .9s var(--ease) .05s forwards;
}
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .85rem;
}
.hero .eyebrow {
  color: #fdba74;
  opacity: 0;
  animation: heroIn .9s var(--ease) .15s forwards;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  max-width: 18ch;
  opacity: 0;
  animation: heroIn 1s var(--ease) .25s forwards;
}
.hero .lead {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  color: var(--muted-inv);
  max-width: 36rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroIn 1s var(--ease) .4s forwards;
}
.hero .cta-row {
  opacity: 0;
  animation: heroIn 1s var(--ease) .55s forwards;
}
.hero .trust-line {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: #7e8792;
  opacity: 0;
  animation: heroIn 1s var(--ease) .7s forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero--with-mock {
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding: 3.5rem 0 4rem;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem 2rem;
  align-items: center;
}
.hero--with-mock .hero-copy {
  max-width: none;
  padding-bottom: 0;
}
.hero-mock {
  min-width: 0;
  opacity: 0;
  animation: heroIn 1s var(--ease) .45s forwards;
}
.hero-mock .app-mock {
  margin: 0;
}
.hero-mock .app-frame-scroll {
  max-height: min(52vh, 420px);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 28px 60px rgba(0,0,0,.45);
}
.hero-mock figcaption {
  color: #9aa3ad;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  margin-top: .65rem;
}

.section--features {
  padding: 3.25rem 0;
  background: var(--bg, #f4f5f6);
  border-bottom: 1px solid var(--border);
}
.feature-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 2rem;
}
.feature-item h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: .45rem;
}
.feature-item p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  max-width: 28ch;
}
.about-mock {
  min-width: 0;
}
.about-mock .app-mock { margin: 0; }
.about-mock .app-frame-scroll {
  max-height: 360px;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(10, 10, 10, .1);
}
.about-mock figcaption {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
  margin-top: .5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* —— Sections —— */
.section { padding: 5rem 0; }
.section--alt { background: #fff; }
.section h2,
.page h1,
.dl-page h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: .85rem;
  max-width: 22ch;
}
.section-body {
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: .75rem;
  font-size: 1.05rem;
}
.muted { color: #52525b; }
.lead { color: #52525b; font-size: 1.05rem; max-width: 40rem; margin-bottom: 1.5rem; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.about-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: start;
}

.receipt {
  background: #f7f4ef;
  color: #1c1917;
  border: 1px solid #ddd4c6;
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.1rem;
  font-family: var(--mono);
  box-shadow: 0 18px 40px rgba(18, 20, 23, .08);
  position: relative;
}
.receipt::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(28, 25, 23, .12);
  pointer-events: none;
}
.receipt-head {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px dashed rgba(28, 25, 23, .2);
}
.receipt-meta { color: var(--brand-deep); font-weight: 600; }
.receipt-lines { display: grid; gap: .55rem; margin-bottom: 1rem; }
.receipt-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .86rem;
}
.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: .85rem;
  border-top: 2px solid #1c1917;
  font-size: .9rem;
}
.receipt-total strong {
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.receipt-foot {
  margin-top: .85rem;
  font-size: .68rem;
  letter-spacing: .1em;
  color: #78716c;
  text-transform: uppercase;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.audience-item {
  padding: 1.5rem 1.25rem;
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .25s, transform .35s var(--ease);
}
.audience-item:hover { background: #fafbfc; }
.audience-label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .65rem;
}
.audience-item h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin-bottom: .45rem;
  letter-spacing: -.015em;
}
.audience-item p { color: var(--muted); font-size: .95rem; }

.cta-band {
  background: var(--bg);
  color: var(--text-inv);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(234,88,12,.42), transparent 65%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: none;
  margin-bottom: .5rem;
  position: relative;
}
.cta-band p {
  color: var(--muted-inv);
  margin-bottom: 1.25rem;
  max-width: 36rem;
  position: relative;
}
.cta-band .btn-primary,
.cta-band .btn-ghost { position: relative; }

/* —— Inner pages —— */
.page {
  padding: 3rem 0 4.5rem;
  min-height: 60vh;
  background: var(--surface);
  color: var(--text);
}
.page-narrow { max-width: 760px; }
.page h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: .65rem;
  color: var(--text);
}
.page .lead, .dl-page .lead { color: #52525b; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem 0;
  background: transparent;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: transform .35s var(--ease);
}
.feature-item:hover { transform: translateX(4px); }
.feature-num {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand);
  font-size: .95rem;
  line-height: 1;
  padding-top: .2rem;
}
.feature-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: .2rem .45rem;
  border-radius: var(--radius);
  margin-bottom: .35rem;
}
.feature-item h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.feature-item p { color: var(--muted); font-size: .95rem; }

/* —— Modules page —— */
.modules-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.modules-package {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  transition: border-color .2s, transform .3s var(--ease);
}
.modules-package:hover {
  border-color: #fdba74;
  transform: translateY(-2px);
}
.modules-package.is-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, .2);
}
.modules-package-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: .2rem .45rem;
  border-radius: var(--radius);
}
.modules-package-kicker {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}
.modules-package h2 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.01em;
}
.modules-package > p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
  line-height: 1.45;
}
.modules-package-meta {
  font-family: var(--mono);
  font-size: .72rem;
  color: #737373;
  margin-top: .25rem !important;
}
.modules-package .btn-ghost-sm {
  align-self: flex-start;
  margin-top: .5rem;
  color: var(--text);
  border-color: var(--border);
}

.modules-matrix-wrap {
  margin-top: 3rem;
}
.modules-matrix-head h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 .35rem;
}
.modules-matrix-head .muted {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 1rem;
}
.modules-matrix-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.modules-matrix {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .9rem;
}
.modules-matrix th,
.modules-matrix td {
  padding: .7rem .9rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.modules-matrix thead th {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #fafafa;
  color: var(--muted);
  position: sticky;
  top: 0;
}
.modules-matrix tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  max-width: 16rem;
}
.modules-matrix tbody tr:last-child th,
.modules-matrix tbody tr:last-child td {
  border-bottom: 0;
}
.modules-matrix tbody tr:hover td,
.modules-matrix tbody tr:hover th {
  background: #fff7ed;
}
.modules-cell {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .95rem;
}
.modules-matrix td.is-yes .modules-cell { color: var(--brand); }
.modules-matrix td.is-no .modules-cell { color: #a3a3a3; }

.module-cat {
  margin-top: 2.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.module-cat-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: .85rem;
}
.module-cat-num {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand);
  font-size: .95rem;
  line-height: 1;
  padding-top: .35rem;
}
.module-cat-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: .2rem .45rem;
  border-radius: var(--radius);
  margin-bottom: .3rem;
}
.module-cat-head h2 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}
.module-cat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.module-row {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--border);
}
.module-row:nth-child(even) {
  padding-left: 1rem;
}
.module-row strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: .25rem;
}
.module-row p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
  line-height: 1.45;
}

/* legacy module cards (unused on moduller) */
.module-block { margin-top: 2.5rem; }
.module-block h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .85rem;
}
.module-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.module-item strong {
  display: block;
  font-family: var(--display);
  margin-bottom: .35rem;
}
.module-item p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: .65rem;
}
.module-tag {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--brand-deep);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* —— Pricing —— */
.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.term-toggle {
  display: inline-flex;
  padding: 3px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  gap: 2px;
}
.term-toggle button {
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-weight: 600;
  font-size: .88rem;
  padding: .55rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  color: var(--muted);
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.term-toggle button.is-active {
  background: var(--bg);
  color: #fff;
}
.pricing-hint {
  color: var(--muted);
  font-size: .88rem;
  font-family: var(--mono);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: relative;
  color: var(--text);
  transition: transform .35s var(--ease), border-color .25s, box-shadow .35s;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: #c4cad2;
  box-shadow: 0 14px 32px rgba(18, 20, 23, .08);
}
.price-card.is-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, .25);
}
.price-kicker {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: .15rem;
}
.price-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.price-card .price-desc {
  color: #52525b;
  font-size: .92rem;
  min-height: 2.8em;
}
.price-amount {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--text);
  transition: opacity .25s, transform .35s var(--ease);
  margin-top: .35rem;
}
.price-amount.is-switching {
  opacity: 0;
  transform: translateY(8px);
}
.price-amount .currency {
  font-size: .5em;
  font-weight: 500;
  margin-left: .15em;
  color: #52525b;
}
.price-meta {
  font-size: .8rem;
  color: #52525b;
  font-family: var(--mono);
}
.price-card .btn-primary,
.price-card .btn-ghost {
  width: 100%;
  margin-top: auto;
}
.price-card .btn-primary {
  color: #fff;
  background: var(--brand);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .85rem;
  margin-top: 1rem;
}
.addon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  color: var(--text);
  transition: border-color .25s, transform .3s var(--ease);
}
.addon-card:hover {
  border-color: #fdba74;
  transform: translateY(-2px);
}
.addon-card h3 {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
}
.addon-card .addon-price {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand-deep);
}
.addon-card .btn-ghost-sm { margin-top: .5rem; align-self: flex-start; }

/* —— FAQ / contact / downloads —— */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: border-color .25s;
}
.faq-list details[open] { border-color: #fdba74; }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--display);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  color: var(--muted);
  margin-top: .65rem;
  font-size: .95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-card h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.contact-rows { display: flex; flex-direction: column; gap: .85rem; }
.contact-rows dt {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}
.contact-rows dd { font-weight: 500; }
.contact-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: .9rem;
}

.dl-page {
  padding: 0;
  background: var(--surface);
  color: var(--text);
}
.dl-hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 3.5rem;
  background:
    radial-gradient(720px 380px at 82% 0%, rgba(234, 88, 12, .36), transparent 58%),
    linear-gradient(168deg, #0c0e11 0%, #15181d 52%, #1a1714 100%);
  color: var(--text-inv);
}
.dl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 40% 40%, #000 20%, transparent 72%);
  pointer-events: none;
}
.dl-hero .shell { position: relative; z-index: 1; max-width: 760px; }
.dl-hero-brand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: .82rem;
  margin-bottom: .85rem;
  color: #fff;
}
.dl-hero .eyebrow { color: #fdba74; }
.dl-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: .85rem;
  color: #fff;
}
.dl-hero-lead {
  color: #c4c9cf;
  font-size: 1.08rem;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}
.dl-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: .85rem;
}
.dl-hero-meta {
  color: var(--muted-inv);
  font-size: .95rem;
}
.dl-hero-meta code {
  color: #fdba74;
  font-size: .9rem;
}
.dl-hero-note {
  color: #8b939c;
  font-size: .88rem;
  max-width: 36rem;
}
.dl-section { padding: 3.25rem 0; }
.dl-section--alt { background: #fff; }
.dl-section h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.02em;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  margin-bottom: .75rem;
  max-width: none;
}
.dl-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.dl-card {
  background: #111318;
  color: var(--text-inv);
  border-radius: 12px;
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.dl-card h2 { color: #fff; margin-bottom: .65rem; }
.dl-card p { color: #b7bec6; margin-bottom: 1.35rem; flex: 1; }
.dl-card-tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fdba74;
  font-weight: 600;
  margin-bottom: .65rem;
}
.dl-card .btn-primary { align-self: flex-start; }
.dl-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.15rem;
}
.dl-mini {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.dl-mini-tag {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.dl-mini h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}
.dl-mini p { color: var(--muted); font-size: .9rem; flex: 1; }
.dl-mini .btn-ghost,
.dl-mini .btn-disabled {
  margin-top: .75rem;
  width: 100%;
  font-size: .88rem;
  padding: .65rem .7rem;
}
.btn-ver--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.dl-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.25rem;
}
.dl-steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.15rem 1.15rem 1.15rem 1.15rem;
  position: relative;
  color: var(--muted);
  padding-top: 2.6rem;
}
.dl-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand);
  font-size: .85rem;
}
.dl-steps strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  margin-bottom: .35rem;
  font-size: 1.05rem;
}
.dl-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.dl-req-list,
.dl-change-list {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.dl-req-list li,
.dl-change-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--muted);
}
.dl-req-list li::before,
.dl-change-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .45rem;
  height: .45rem;
  border-radius: 1px;
  background: var(--brand);
}
.dl-notes {
  background: var(--brand-soft);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--brand-deep);
  font-size: .9rem;
  margin-top: 1rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--bg);
  color: var(--text-inv);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.footer-brand img { border-radius: var(--radius); }
.footer-tagline { color: var(--muted-inv); font-size: .95rem; max-width: 22rem; }
.footer-heading {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-inv);
  margin-bottom: .85rem;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { color: #e4e4e7; font-size: .92rem; }
.footer-links a:hover { color: #fdba74; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  color: var(--muted-inv);
  font-size: .85rem;
}
.footer-bottom a:hover { color: #fdba74; }

/* —— Legacy aliases —— */
.simple-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.simple-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.simple-card h3 { font-family: var(--display); margin-bottom: .35rem; }
.simple-card p { color: var(--muted); font-size: .95rem; }
.trust { display: none; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .header-nav, .header-actions { display: none; }
  .hamburger { display: inline-flex; }
  .audience-grid,
  .simple-grid,
  .pricing-grid,
  .about-split,
  .feature-trio,
  .hero-grid,
  .modules-packages,
  .module-cat-list,
  .dl-split,
  .dl-client-grid,
  .dl-steps,
  .dl-bottom { grid-template-columns: 1fr; }
  .module-row:nth-child(even) { padding-left: 0; }
  .audience-grid { border-left: 0; }
  .audience-item { border-left: 1px solid var(--border); }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 2.75rem 0 3rem; align-items: center; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.25rem); max-width: none; }
  .shell { width: min(100% - 1.5rem, var(--shell)); }
  .page { padding: 2rem 0 3rem; }
  .dl-hero { padding: 2.4rem 0 2.6rem; }
  .pricing-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .term-toggle { width: 100%; }
  .term-toggle button { flex: 1; }
  .price-card .btn-primary { min-height: 48px; }
  .cta-band { padding: 1.75rem 1.25rem; }
  .mobile-nav-panel { width: min(100%, 100%); max-width: 360px; }
}

@media (max-width: 560px) {
  .header-wordmark { font-size: .82rem; }
  .btn-primary, .btn-ghost { width: 100%; }
  .hero .cta-row { width: 100%; }
  .hero-wordmark { font-size: clamp(2.2rem, 14vw, 3.4rem); }
}

@media (min-width: 901px) {
  .mobile-nav,
  .mobile-nav.is-open,
  .mobile-nav[hidden] {
    display: none !important;
  }
  .hamburger { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-wordmark, .hero .eyebrow, .hero h1, .hero .lead, .hero .cta-row, .hero .trust-line {
    opacity: 1;
  }
}
