/* Printonet — static mirror of customizerstudio.com */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  /* Cool neutrals — calmer, modern default surfaces */
  --background: 220 18% 98%;
  --foreground: 222 18% 12%;
  --card: 0 0% 100%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 42%;
  --border: 220 12% 90%;
  --primary: 0 0% 16%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 12% 93%;
  --secondary-foreground: 222 16% 22%;
  --accent: 326 78% 60%;
  --radius: 0.75rem;
  --header-h: 64px;
  --maxw: 80rem;
  --hover-bg: #fdd100;
  --hover-fg: #292929;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
}

img:not(.logo-img):not(.hero-integration-logo) {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 2px);
}

/* Do not set width/height here — `img.logo-img` beats `.logo-img` on specificity
   and `height: auto` can make the header/footer logo collapse to invisible. */
img.logo-img {
  display: block;
  border-radius: 0;
}

a {
  color: hsl(var(--primary));
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--hover-fg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  border-radius: calc(var(--radius) - 4px);
  text-decoration: none;
}

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

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: min(280px, 52vw);
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: none;
  transform: translateZ(0);
}

.logo-img--footer {
  height: 42px;
  max-width: min(260px, 48vw);
  max-height: 42px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: calc(var(--radius) - 4px);
}

.nav-list a:hover {
  color: var(--hover-fg);
  background: var(--hover-bg);
}

.nav-list a[aria-current="page"] {
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 4px);
  background: hsl(var(--card));
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: hsl(var(--foreground));
  border-radius: 1px;
}

.header-trailing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: var(--hover-bg);
  color: var(--hover-fg);
}

.btn-secondary {
  background: #ffffff;
  background-color: #ffffff;
  background-image: none;
  color: hsl(var(--secondary-foreground));
  border-color: hsl(var(--border));
}

.btn.btn-secondary {
  background: #ffffff;
  background-color: #ffffff;
  background-image: none;
}

.btn-secondary:hover {
  background: var(--hover-bg);
  color: var(--hover-fg);
  border-color: var(--hover-bg);
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--muted-foreground));
}

.btn-ghost:hover {
  color: var(--hover-fg);
  background: var(--hover-bg);
}

.btn-outline {
  background: transparent;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  border-color: var(--hover-bg);
  color: var(--hover-fg);
  background: var(--hover-bg);
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 10vw, 6rem);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(255, 255, 255, 0.94) 36%,
    rgba(255, 255, 255, 0.9) 68%,
    rgba(255, 255, 255, 0.93) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  color: hsl(var(--foreground));
}

.hero .container {
  max-width: min(100% - 2rem, 960px);
  margin-inline: auto;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 auto 1.25rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2.45rem, 5.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: hsl(var(--foreground));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: #000000;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  margin: 0;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.hero-products {
  --hero-product-size: 400px;
  --hero-product-gap: 1rem;
  position: relative;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.hero-products-viewport {
  margin-inline: 52px;
  overflow: hidden;
  border-radius: 12px;
}

.hero-products-track {
  display: flex;
  gap: var(--hero-product-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: 0.5rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.hero-products-track::-webkit-scrollbar {
  height: 8px;
}

.hero-products-track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.hero-product-thumb {
  flex: 0 0 var(--hero-product-size);
  width: var(--hero-product-size);
  height: var(--hero-product-size);
  scroll-snap-align: start;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-products-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: rgba(255, 255, 255, 0.95);
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hero-products-nav:hover {
  background: var(--hover-bg);
  border-color: var(--hover-bg);
  color: var(--hover-fg);
}

.hero-products-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-products-nav--prev {
  left: 0.25rem;
}

.hero-products-nav--next {
  right: 0.25rem;
}

@media (max-width: 520px) {
  .hero-products-viewport {
    margin-inline: 48px;
  }

  .hero-products-nav {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-products-track {
    scroll-behavior: auto;
  }
}

.hero-integration-logos {
  margin-block: 32px;
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
  border-bottom: 1px solid hsl(var(--border));
  max-width: min(100%, 960px);
  margin-inline: auto;
}

.hero-integration-logos__label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

.hero-integration-logos__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-integration-logos__list li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-integration-logos__list .hero-integration-logo {
  display: block;
  box-sizing: content-box;
  width: auto;
  max-width: min(160px, 36vw);
  min-width: 72px;
  height: clamp(28px, 5vw, 44px);
  max-height: 44px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  opacity: 0.88;
  transition: opacity 0.15s ease;
}

.hero-integration-logos__list .hero-integration-logo:hover {
  opacity: 1;
}

.hero-integration-logos__list .hero-integration-logo--sanmar {
  height: clamp(24px, 4vw, 36px);
  max-height: 26px;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: hsl(var(--background));
}

.section-alt {
  background: linear-gradient(
    180deg,
    hsl(220 16% 97%) 0%,
    hsl(220 14% 95%) 100%
  );
  border-block: 1px solid hsl(var(--border));
}

.section-head {
  text-align: center;
  /* max-width: 40rem; */
  margin: 0 auto 3rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.95rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: hsl(var(--muted-foreground));
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-card {
  padding: 1.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  text-align: left;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  border-radius: calc(var(--radius) - 4px);
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

/* How it works — hero-style shell (yellow panel + dark card tray) */
.section-how {
  background: hsl(var(--background));
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.how-shell {
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(160deg, #fdd100 0%, #e8a810 100%);
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.how-shell .how-shell__intro.section-head {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.how-shell__intro h2 {
  color: #1a1a1a;
}

.how-shell__intro .section-lead {
  color: rgba(26, 26, 26, 0.78);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.55;
}

.how-shell__cards {
  background: #121212;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.how-shell .steps-grid {
  gap: 1.25rem;
}

.how-shell .step-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.08);
}

.how-shell .step-card h3 {
  color: #fafafa;
}

.how-shell .step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.how-shell .step-num {
  background: #fdd100;
  color: #1a1a1a;
}

/* Home — alternating image / copy rows */
.section-highlights .section-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.split-feature-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split-feature__figure {
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

.split-feature__body {
  grid-column: 2;
  grid-row: 1;
}

.split-feature--reverse .split-feature__figure {
  grid-column: 2;
}

.split-feature--reverse .split-feature__body {
  grid-column: 1;
}

.split-feature__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.split-feature__body h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

.split-feature__body p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 800px) {
  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature__figure,
  .split-feature__body,
  .split-feature--reverse .split-feature__figure,
  .split-feature--reverse .split-feature__body {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Integrate in minutes — same shell pattern, black outer + dark inner */
.section-integrate {
  background: hsl(var(--background));
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.integrate-shell {
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background: #0a0a0a;
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.integrate-shell .integrate-shell__intro.section-head {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.integrate-shell__intro h2 {
  color: #fafafa;
}

.integrate-shell__inner {
  background: #161616;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.integrate-shell__inner .code-section {
  max-width: min(100%, 44rem);
  margin-inline: auto;
}

/* Feature cards (home + features page) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
}

/* Built-for section (home) */
.built-section {
  padding-top: clamp(4rem, 9vw, 6rem);
}

.built-head {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.built-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.built-card {
  text-align: center;
  padding: 0.25rem 0.5rem;
}

.built-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 98%);
  border: 1px solid hsl(0 0% 95%);
}

.built-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: hsl(var(--foreground));
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.built-card h3 {
  margin: 0 0 0.625rem;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.built-card p {
  margin: 0 auto;
  max-width: 33ch;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
}

.built-card code {
  font-family: ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.82em;
  padding: 0.05em 0.25em;
  border-radius: 4px;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
}

/* Integrations page */
.int-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.int-card {
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.int-card-wide {
  grid-column: 1 / -1;
}

.int-card img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.int-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.int-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
}

.int-card code {
  font-family: ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.08em 0.3em;
  border-radius: 4px;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
}

@media (max-width: 900px) {
  .int-cards {
    grid-template-columns: 1fr;
  }
}

/* Code block */
.code-section {
  max-width: 42rem;
  margin-inline: auto;
}

.code-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(240 10% 18%);
  background: #1e293b;
  text-align: left;
}

.code-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.code-filename {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.code-block {
  margin: 0;
  padding: 1.25rem;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #e2e8f0;
}

.code-block code {
  font-family: inherit;
  white-space: pre;
}

.code-hint {
  min-height: 1.25em;
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.8125rem;
  color: #6ee7b7;
}

.code-toolbar .btn {
  color: #cbd5e1;
}

.code-toolbar .btn:hover {
  color: var(--hover-fg);
  background: var(--hover-bg);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  padding: 1.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: hsl(var(--primary) / 0.45);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.12);
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.pricing-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.pricing-amount {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.pricing-blurb {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.pricing-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  flex: 1;
}

.pricing-card li {
  margin-bottom: 0.5rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

/* CTA band */
.cta-band {
  background: linear-gradient(
    180deg,
    hsl(220 16% 97%) 0%,
    hsl(220 14% 95%) 100%
  );
  border-block: 1px solid hsl(var(--border));
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.5rem;
}

.cta-inner h2 {
  margin: 0 0 0.5rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  font-weight: 800;
}

.cta-inner > div:first-child p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  max-width: 36ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Features page grid (many items) */
.features-grid-dense {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.feature-card {
  padding-top: 1.15rem;
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 98%);
  border: 1px solid hsl(0 0% 93%);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: hsl(var(--foreground));
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Features page — grouped capability lists */
.feature-bundles {
  max-width: 52rem;
  margin: 0 auto;
}

.feature-bundle {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid hsl(var(--border));
}

.feature-bundle:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-bundle-head {
  margin-bottom: 1rem;
}

.feature-bundle-head h2 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-bundle-emoji {
  margin-right: 0.35rem;
}

.feature-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-lines li {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: hsl(var(--muted-foreground));
}

.feature-lines strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.feature-lines code {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
}

/* Features page — UX redesign */
.features-hero .hero-badge {
  margin-bottom: 0.85rem;
}

.features-hero .page-lead {
  max-width: 52rem;
}

.features-hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.features-overview {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.features-overview-head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.features-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 auto clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 72rem;
}

.features-quick-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.features-quick-nav a:hover {
  border-color: var(--hover-bg);
  background: var(--hover-bg);
  color: var(--hover-fg);
}

.features-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.features-category-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.1rem, 2vw, 1.4rem);
  scroll-margin-top: 90px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.features-category-card__head {
  margin-bottom: 0.8rem;
}

.features-category-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.features-category-card h3 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.features-category-card .feature-lines {
  gap: 0.7rem;
}

.features-category-card .feature-lines li {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Page hero interior */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2.05rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 900px;
  line-height: 120%;
}

.page-hero .page-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ */
.faq-wrap {
  max-width: 56rem;
}

.faq-list {
  display: grid;
  gap: 0.875rem;
}

.faq-item {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 0.1rem 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.4;
  padding: 0.95rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  color: hsl(var(--muted-foreground));
}

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

.faq-item p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: hsl(var(--muted-foreground));
}

.faq-item code {
  font-family: ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.1em 0.3em;
  border-radius: 4px;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
}

/* Footer */
.site-footer {
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #292929;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-tagline {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: #fff;
  max-width: 28ch;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #fdd100;
  background: transparent;
}

.site-footer .logo-footer:hover {
  opacity: 0.92;
}

.footer-bottom {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-grid,
  .cards-grid,
  .built-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .features-category-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 99;
    flex: none;
    justify-content: stretch;
    background: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav.is-open {
    max-height: 360px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
  }

  .nav-list a {
    padding: 0.75rem 1rem;
  }

  .header-inner {
    position: relative;
    flex-wrap: nowrap;
    height: var(--header-h);
    padding-block: 0;
  }

  .features-hero-cta {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .logo-img {
    height: 42px;
    max-width: 130px;
    max-height: 42px;
  }

  .logo-img--footer {
    height: 42px;
    max-width: 120px;
    max-height: 42px;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .features-hero-cta {
    flex-direction: column;
  }

  .features-hero-cta .btn,
  .features-quick-nav a {
    width: 100%;
    justify-content: center;
  }
}
