/* ==========================================================================
   Cronix × Shopware — Migration Landing Page
   Palette: white base · Cronix neon green (#9FE870) · Shopware blue (#0870FF)
   Type:    Bebas Neue (display) · Source Sans 3 (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (self-hosted — no external requests)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/bebas-neue-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/bebas-neue-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Variable font — one file serves weights 400–700 */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/source-sans-3-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/source-sans-3-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Design tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces — white base */
  --paper: #ffffff;
  --paper-soft: #f9faf8;   /* warm off-white band */
  --paper-mute: #f4f5f6;   /* Cronix gray-200 */
  --line: #e5e8ed;         /* Cronix gray-300 */
  --line-soft: #eff1f4;

  /* Ink — Cronix text scale */
  --ink: #1e212c;
  --ink-2: #424551;
  --ink-3: #6c7183;

  /* Cronix brand */
  --lime: #9fe870;
  --lime-dim: #6fa84b;
  --lime-tint: #ebffde;
  --forest: #163300;       /* dark sections, text on lime */
  --forest-deep: #00191a;
  --green-ink: #3f7521;    /* green that passes contrast on white */

  /* Shopware brand — measured use */
  --sw: #0870ff;
  --sw-ink: #0042a0;       /* Shopware blue that passes contrast on white */
  --sw-tint: #f0f6ff;
  --sw-line: #c8ddff;

  /* Signal */
  --alert: #b4320a;
  --alert-tint: #fff2ec;
  --alert-line: #ffd9c9;

  /* Geometry */
  --radius: 12px;
  --radius-lg: 18px;
  --maxw: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Type */
  --display: 'Bebas Neue', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(30, 33, 44, .06), 0 1px 3px rgba(30, 33, 44, .04);
  --shadow-md: 0 4px 6px -1px rgba(30, 33, 44, .07), 0 10px 24px -6px rgba(30, 33, 44, .10);
  --shadow-lg: 0 12px 32px -8px rgba(30, 33, 44, .16);
}

/* --------------------------------------------------------------------------
   3. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font: 400 clamp(1.125rem, .4vw + 1.075rem, 1.1875rem)/1.62 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--ink); margin: 0; }
h2, h3, h4 { text-wrap: balance; }

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .005em;
}

/* The h1 is short enough that balancing leaves a stub line on narrow screens —
   fill each line instead, and only avoid a single-word last line. */
h1 { text-wrap: pretty; }

h1 { font-size: clamp(2.85rem, 7.5vw, 5.5rem); }
h2 { font-size: clamp(2.15rem, 5vw, 3.5rem); }

h3 {
  font-family: var(--body);
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--sw-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ink); }

ul { margin: 0; padding: 0; list-style: none; }

strong, b { color: var(--ink); font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--sw);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 9vw, 7rem); }

/* Deliberate vertical rhythm. A page where every band is the same height reads
   as a template, so weight is assigned by how much each section has to earn. */
.section--tight { padding-block: clamp(2.75rem, 5vw, 4rem); }
.section--loose { padding-block: clamp(5rem, 11vw, 9rem); }
.section--soft { background: var(--paper-soft); }

.section--dark {
  background: var(--forest);
  color: rgba(255, 255, 255, .78);
}
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark strong,
.section--dark b { color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: .75rem 1.25rem;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* Section headers ---------------------------------------------------------- */

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.section-head--wide { max-width: 58rem; }
.section-head p {
  margin-top: 1.125rem;
  font-size: 1.25rem;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-ink);
}
.eyebrow::before {
  content: '';
  flex: 0 0 auto;
  width: 1.75rem;
  height: 2px;
  /* Baseline-aligned so the rule sits with the first line of a wrapped label. */
  transform: translateY(-.28em);
  background: var(--lime);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--lime); }
.section--dark .section-head p { color: rgba(255, 255, 255, .72); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  --btn-line: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9375rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-line);
  border-radius: 999px;
  font: 600 1.0625rem/1.2 var(--body);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease,
    border-color .15s ease, color .15s ease;
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--lime);
  --btn-fg: var(--forest);
  --btn-line: var(--lime);
}
.btn--primary:hover {
  --btn-bg: #b0f085;
  --btn-line: #b0f085;
  color: var(--forest);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-line: var(--line);
}
.btn--ghost:hover {
  --btn-line: var(--ink);
  background: var(--paper-soft);
}

.section--dark .btn--ghost {
  --btn-fg: #fff;
  --btn-line: rgba(255, 255, 255, .3);
}
.section--dark .btn--ghost:hover {
  --btn-line: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .07);
}

.btn--sm { padding: .625rem 1.125rem; font-size: .9375rem; }
.btn--block { width: 100%; }

/* Inline text link with arrow --------------------------------------------- */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-weight: 600;
  color: var(--green-ink);
  text-decoration: none;
}
.link-arrow::after { content: '→'; transition: transform .15s ease; }
.link-arrow:hover { color: var(--forest); }
.link-arrow:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header > .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark { width: 104px; }
.brand__sep {
  width: 1px;
  height: 26px;
  background: var(--line);
}
.brand__co {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.brand__co img { width: 78px; }

.site-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.site-nav a {
  color: var(--ink-2);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover { color: var(--forest); }

.header-cta { flex-shrink: 0; }

@media (max-width: 960px) {
  .site-nav { display: none; }
  .header-cta { margin-left: auto; }
  .brand__sep, .brand__co { display: none; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(60rem 32rem at 12% -12%, var(--lime-tint) 0%, transparent 62%),
    radial-gradient(48rem 26rem at 92% 4%, var(--sw-tint) 0%, transparent 58%),
    var(--paper);
  overflow: hidden;
}

.slots-flag {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .5rem 1rem .5rem .75rem;
  margin-bottom: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.status-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--lime-dim);
  box-shadow: 0 0 0 4px rgba(159, 232, 112, .35);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(159, 232, 112, .4); }
  50%      { box-shadow: 0 0 0 7px rgba(159, 232, 112, 0); }
}

.hero h1 { max-width: 22ch; }
.hero h1 .highlight {
  color: var(--forest);
  /* Bebas Neue has no descenders, so the band is clipped to the cap band
     rather than running to the baseline box. */
  background: linear-gradient(
    to bottom,
    transparent 20%,
    var(--lime) 20%,
    var(--lime) 88%,
    transparent 88%
  );
  padding-inline: .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__lede {
  max-width: 46rem;
  margin-top: 1.5rem;
  font-size: clamp(1.1875rem, .5vw + 1.125rem, 1.375rem);
  color: var(--ink-2);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-top: 2.25rem;
}
.hero__note {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--ink-3);
}

/* Hero stat strip --------------------------------------------------------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1px;
  margin-top: clamp(2.75rem, 5vw, 4rem);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: 1.5rem 1.5rem 1.375rem;
  background: var(--paper);
}
.stat__number {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 2.875rem);
  line-height: 1;
  color: var(--forest);
}
.stat__label {
  margin-top: .5rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink-3);
}

/* Live "unpatched" counter ------------------------------------------------ */

.counter {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 1.5rem;
  padding: clamp(1.375rem, 3vw, 1.875rem);
  background: var(--alert-tint);
  border: 1px solid var(--alert-line);
  border-left: 4px solid var(--alert);
  border-radius: var(--radius-lg);
}
.counter__n {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 5.25rem);
  line-height: .85;
  color: var(--alert);
  font-variant-numeric: tabular-nums;
}
.counter__body { font-size: 1.125rem; color: var(--ink-2); }
.counter__body strong { color: var(--alert); }
.counter__body small {
  display: block;
  margin-top: .5rem;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink-3);
}
.counter__body a { color: var(--alert); }

@media (max-width: 560px) {
  .counter { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   8. Generic card grids
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }

.card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  /* Set on the card so descendants inherit it — targeting `.card p` would
     out-specify the utility classes (.badge, .metric) nested inside. */
  font-size: 1.0625rem;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card > h3 { margin-bottom: .75rem; font-size: 1.3125rem; }
.card:hover {
  border-color: #d6dae1;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Platform picker --------------------------------------------------------- */

.platform-card { display: flex; flex-direction: column; }
.platform-card .link-arrow { margin-top: auto; padding-top: 1.25rem; }

.platform-card--urgent {
  border-color: var(--alert-line);
  background: linear-gradient(var(--alert-tint), var(--paper) 55%);
}

.badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: .3125rem .6875rem;
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.badge--alert { background: var(--alert); color: #fff; }
.badge--neutral { background: var(--paper-mute); color: var(--ink-2); }
.badge--lime { background: var(--lime); color: var(--forest); }


/* --------------------------------------------------------------------------
   9. Founder note
   Asymmetric on purpose: it is the one place on the page where a person is
   speaking, so it should not look like the sections around it.
   -------------------------------------------------------------------------- */

.founder {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--forest);
  color: rgba(255, 255, 255, .82);
}

.founder__layout {
  display: grid;
  grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: start;
}

.founder__portrait { margin: 0; }

/* A print-style white mount. The photo has a dark studio background, so without
   a frame it dissolves into the section behind it. */
.founder__portrait img {
  display: block;
  width: 100%;
  padding: .625rem .625rem 1.75rem;
  background: #fdfdfb;
  border-radius: 3px;
  transform: rotate(-1.25deg);
  box-shadow: 0 20px 44px -14px rgba(0, 0, 0, .6);
}
.founder__portrait figcaption {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .62);
}
.founder__portrait strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--lime);
}

.founder__note h2 {
  color: #fff;
  max-width: 24ch;
  margin-bottom: 1.5rem;
}
.founder__note p { margin-bottom: 1.125rem; }
.founder__note p:first-of-type {
  /* Lead paragraph carries a touch more weight than the rest. */
  font-size: 1.3125rem;
  color: rgba(255, 255, 255, .92);
}

.founder__signoff {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 1.0625rem;
}
.founder__signoff a { color: var(--lime); }
.founder__signoff a:hover { color: #fff; }

@media (max-width: 780px) {
  .founder__layout { grid-template-columns: 1fr; }
  .founder__portrait img { max-width: 15rem; transform: none; }
}

/* --------------------------------------------------------------------------
   10. Cost of standing still
   A numbered editorial list. The old version was six identical bordered cards,
   which is the shape that made the page feel machine-assembled.
   -------------------------------------------------------------------------- */

.cost-list {
  counter-reset: cost;
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 62rem;
  padding: 0;
  list-style: none;
}
.cost-list > li {
  break-inside: avoid;
  margin-bottom: 2.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.cost-list > li::before {
  counter-increment: cost;
  content: counter(cost, decimal-leading-zero);
  display: block;
  margin-bottom: .5rem;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--green-ink);
}
.cost-list h3 { margin-bottom: .5rem; }
.cost-list p { font-size: 1.0625rem; }

@media (max-width: 720px) {
  .cost-list { columns: 1; }
}

/* --------------------------------------------------------------------------
   11. Shopware admin screenshots
   -------------------------------------------------------------------------- */

.screenshots {
  display: grid;
  /* Explicit two-up: auto-fit would spawn a third empty track at this width and
     shrink the screenshots below a readable size. */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.screenshot { margin: 0; }
.screenshot img {
  width: 100%;
  /* Both source images differ in height; cropping to a shared ratio from the top
     keeps the admin chrome visible and the two captions on the same line. */
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

@media (max-width: 720px) {
  .screenshots { grid-template-columns: 1fr; }
}
.screenshot figcaption {
  margin-top: .9375rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.screenshots__credit {
  grid-column: 1 / -1;
  font-size: .75rem;
  letter-spacing: .02em;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   12. Feature lists
   -------------------------------------------------------------------------- */

.feature-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.feature-columns__title {
  padding-bottom: .75rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--lime);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink);
}

.feature-list { margin: 0; }
.feature-list dt {
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.feature-list dt:first-child { margin-top: 0; }
.feature-list dd {
  margin: .25rem 0 0;
  font-size: 1.0625rem;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   13. Credentials band
   -------------------------------------------------------------------------- */

.credentials { background: var(--paper-soft); }

.credentials__layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 62rem;
}
.credentials__badge img { width: 174px; }
.credentials__body h2 { margin-bottom: 1.25rem; }
.credentials__body p { margin-bottom: 1rem; }

@media (max-width: 720px) {
  .credentials__layout { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   14. Shopware customers
   A short, centred band. Leans on Shopware's tint and accent so it reads as
   "their proof, not ours", and sends the reader to Shopware's own case studies.
   -------------------------------------------------------------------------- */

.customers {
  background: linear-gradient(180deg, var(--sw-tint) 0%, var(--paper) 88%);
  border-top: 2px solid var(--sw);
  text-align: center;
}

.customers__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 44rem;
}

.customers h2 { max-width: 26ch; }

.customers__lede {
  margin: 1.25rem 0 2rem;
  font-size: 1.25rem;
  color: var(--ink-2);
}

.eyebrow--shopware { color: var(--sw-ink); }
.eyebrow--shopware::before { background: var(--sw); }

/* --------------------------------------------------------------------------
   15. Comparison table
   -------------------------------------------------------------------------- */

.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
  text-align: left;
}
.compare th, .compare td {
  padding: 1rem 1.125rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare thead th {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  font-family: var(--body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.compare tbody th {
  width: 12rem;
  font-weight: 600;
  color: var(--ink);
}
.compare tr:last-child th,
.compare tr:last-child td { border-bottom: 0; }

.compare .col-sw {
  background: var(--sw-tint);
  border-left: 1px solid var(--sw-line);
  border-right: 1px solid var(--sw-line);
  color: var(--ink);
}
.compare thead .col-sw {
  color: var(--sw-ink);
  border-bottom-color: var(--sw);
}
.compare tbody tr:last-child .col-sw { border-bottom: 1px solid var(--sw-line); }
.compare .legacy { color: var(--ink-2); }

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}
.table-scroll .compare { min-width: 46rem; }

.table-note {
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   16. The offer
   -------------------------------------------------------------------------- */

.offer {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.offer__main, .offer__side { padding: clamp(1.75rem, 3.5vw, 2.75rem); }
.offer__main > h3, .offer__side > h3 { margin-bottom: 1.125rem; }
.offer__main { background: #1d4400; }
.offer__side { background: var(--forest-deep); }

.offer__price {
  font-family: var(--display);
  font-size: clamp(3.25rem, 8vw, 4.75rem);
  line-height: .9;
  color: var(--lime);
  margin-bottom: 1.75rem;
}
.offer__price span {
  display: block;
  margin-top: .5rem;
  font-family: var(--body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.checklist li,
.crosslist li {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: .75rem;
  font-size: 1.0625rem;
  line-height: 1.5;
}
.checklist li::before,
.crosslist li::before {
  position: absolute;
  left: 0;
  top: -.0625rem;
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
}
.checklist li::before {
  content: '✓';
  background: var(--lime);
  color: var(--forest);
}
.crosslist li::before {
  content: '×';
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  font-size: .875rem;
}
.checklist li:last-child,
.crosslist li:last-child { margin-bottom: 0; }

/* Light-background variants */
.card .checklist li::before { background: var(--lime); color: var(--forest); }
.card .crosslist li::before { background: var(--paper-mute); color: var(--ink-2); }

.offer__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.offer__slots {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--lime);
}

@media (max-width: 860px) {
  .offer { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   17. Process steps
   -------------------------------------------------------------------------- */

.steps {
  counter-reset: step;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
}
.step {
  position: relative;
  padding-top: 1.75rem;
  border-top: 3px solid var(--line);
  font-size: 1.0625rem;
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: -3px;
  left: 0;
  padding: .375rem .625rem .3125rem;
  background: var(--lime);
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.0625rem;
  line-height: 1;
  border-radius: 0 0 6px 0;
}
.step h3 { margin: .75rem 0 .625rem; font-size: 1.3125rem; }

/* --------------------------------------------------------------------------
   18. Form
   -------------------------------------------------------------------------- */

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; }
}

.form-copy h2 { margin-bottom: 1.125rem; }
.form-copy .checklist { margin-top: 1.75rem; }
.form-copy .checklist li { color: var(--ink-2); }

.form-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.field { margin-bottom: 1.125rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  margin-bottom: .4375rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.required-mark { color: var(--alert); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8125rem .9375rem;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: 400 1.0625rem/1.45 var(--body);
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
}
.field textarea { min-height: 5.5rem; resize: vertical; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236c7183' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sw);
  box-shadow: 0 0 0 3px rgba(8, 112, 255, .16);
}
.field :is(input, select, textarea):user-invalid {
  border-color: var(--alert);
}
.field :is(input, select, textarea):user-invalid:focus {
  box-shadow: 0 0 0 3px rgba(180, 50, 10, .14);
}

/* Honeypot — hidden from humans, visible to naive bots */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-legal {
  margin-top: 1rem;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink-3);
}

.form-error {
  margin-bottom: 1.125rem;
  padding: .8125rem 1rem;
  background: var(--alert-tint);
  border: 1px solid var(--alert-line);
  border-radius: 10px;
  font-size: .875rem;
  color: var(--alert);
}
.form-error[hidden] { display: none; }

.btn[aria-busy='true'] { opacity: .65; pointer-events: none; }

.form-success {
  text-align: center;
  padding: 1rem 0;
}
.form-success[hidden] { display: none; }
.form-success .check {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.125rem;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--forest);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
}
.form-success h3 { margin-bottom: .625rem; }
.form-success p { font-size: 1.0625rem; }

/* --------------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------------- */

.faq {
  max-width: 52rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
}
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }

.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1875rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green-ink);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--paper-soft); }

.faq .answer {
  padding: 0 1.5rem 1.375rem;
  font-size: 1.0625rem;
  color: var(--ink-2);
  max-width: 44rem;
}

/* --------------------------------------------------------------------------
   20. Final CTA
   -------------------------------------------------------------------------- */

.final { text-align: center; }
.final h2 { max-width: 30ch; margin-inline: auto; }
.final p {
  max-width: 36rem;
  margin: 1.25rem auto 2rem;
  font-size: 1.25rem;
}
.final .btn { margin-inline: auto; }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, .62);
  font-size: 1.0625rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
}
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: var(--lime); }
.footer-top .brand__mark { width: 112px; margin-bottom: 1.125rem; }
.footer-top p { max-width: 34rem; font-size: 1.0625rem; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .625rem 1.5rem;
  align-content: start;
}
.footer-links a {
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font-size: 1.0625rem;
}
.footer-links a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1.5rem;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .45);
}
.footer-bottom a { color: rgba(255, 255, 255, .62); }
.footer-bottom a:hover { color: var(--lime); }

.trademark {
  margin-top: .75rem;
  font-size: .8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .38);
}

/* --------------------------------------------------------------------------
   22. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .hero__cta, .form-card, .final .btn { display: none; }
  body { color: #000; font-size: 11pt; }
  .section { padding-block: 1rem; }
  .section--dark, .site-footer { background: #fff; color: #000; }
  .section--dark h2, .section--dark h3, .site-footer { color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: 9pt; }
}

/* --------------------------------------------------------------------------
   23. Utilities
   -------------------------------------------------------------------------- */

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