/*
 * One stylesheet, no build step, no framework.
 *
 * A marketing site that needs a build is a site that does not get its wording
 * fixed on a Friday afternoon. Custom properties give the theming a framework
 * would have given, and everything here is one file somebody can read.
 *
 * --- On the two palettes -------------------------------------------------
 *
 * The site is warm sand and orange; the product screenshots inside it are the
 * app's green. That is not an oversight and not drift. Site chrome and product
 * chrome are different surfaces on every software site worth copying: the page
 * is an argument, the screenshot is evidence, and a mockup painted in the
 * page's own accent stops reading as a screenshot and starts reading as an
 * illustration. Green appears on the page in exactly one other place — the
 * "io" of the logo — so the two are visibly the same company.
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap');

:root {
  /* Ink and paper, warmed. A pure #fff page under a warm accent reads clinical;
     four degrees of warmth in the neutrals is what makes the orange belong. */
  --ink: #171310;
  --fg: #2c2621;
  --fg-muted: #6a6058;
  --fg-subtle: #9b9188;
  --bg: #fffdfb;
  --surface: #ffffff;
  --surface-2: #f8f4ef;
  --surface-3: #f1e9e0;
  --border: #ebe3d9;
  --border-strong: #dbd0c2;

  --accent: #f2621f;
  --accent-dark: #d1490c;
  --accent-tint: #fdeee5;

  /* The product's own colour. Used by the SVG mockups and the logo, nowhere
     else — see the note at the top of this file. */
  --brand: #16794a;
  --brand-2: #00a868;
  --brand-tint: #e7f3ec;

  /* The logo's own two colours, straight off the supplied SVGs. Kept out of
     the brand ramp on purpose: the mark reads green on light and yellow on
     dark, and neither value is allowed to drift with the illustrations. */
  --logo: #00a868;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgb(23 19 16 / 5%), 0 2px 6px rgb(23 19 16 / 4%);
  --shadow: 0 2px 4px rgb(23 19 16 / 4%), 0 12px 32px rgb(23 19 16 / 7%);
  --shadow-lg: 0 4px 8px rgb(23 19 16 / 4%), 0 30px 70px rgb(23 19 16 / 12%);

  /*
   * The inverted things, as their own tokens rather than as `--ink`.
   *
   * `--ink` used to do three jobs: heading text, the primary button's fill and
   * the near-black bands. In one theme that is harmless, because all three are
   * the same colour. The moment there are two themes they stop agreeing — dark
   * mode wants pale headings, a pale button, and a band that goes *deeper*
   * than the page rather than lighter. Splitting them is what makes the dark
   * block below a list of values instead of a rewrite.
   */
  --contrast-bg: #171310;
  --contrast-fg: #ffffff;
  --band-bg: #171310;
  --band-fg: #b4a99e;
  --band-heading: #ffffff;
  --band-surface: #1d1814;
  --band-line: rgb(255 255 255 / 14%);

  --header-bg: rgb(255 253 251 / 72%);
  --grid-dot: rgb(23 19 16 / 7%);
  --tick-brand: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%2316794a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --tick-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%23d1490c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  /* Wider than it was. The measure of the prose is held back separately — see
     `.section-head` and `.lead` — so the extra room goes to the artwork, the
     tables and the card grids rather than to 120-character lines. */
  --max: 1280px;
  --ease: cubic-bezier(0.22, 0.7, 0.28, 1);
}

/*
 * Dark mode: the same page, not a different one.
 *
 * Declared twice on purpose. The media query follows the reader's system; the
 * `[data-theme]` block — set by the switch in the header and remembered in
 * `localStorage` — overrides it in both directions, so somebody on a dark
 * laptop can still choose the light page. The media query is scoped as
 * `:root:not([data-theme='light'])` precisely so that choice wins.
 *
 * The neutrals stay warm rather than going grey: four degrees of warmth in the
 * paper is this palette's whole character, and a neutral-grey dark theme reads
 * as a different company's site. The accent is lifted, because an #f2621f that
 * is legible on paper turns muddy on charcoal — and `--accent-dark` becomes
 * *lighter* than `--accent`, since on a dark ground the emphatic version of a
 * colour is the brighter one.
 *
 * The product mockups do not change. They are screenshots of a light
 * application and they stay white inside their frame, the way a screenshot in
 * a dark editor does.
 */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    color-scheme: dark;

    --ink: #f6f0ea;
    --fg: #d6ccc3;
    --fg-muted: #a0958a;
    --fg-subtle: #7b7064;
    --bg: #141110;
    --surface: #1b1714;
    --surface-2: #211c18;
    --surface-3: #2b2420;
    --border: #2e2823;
    --border-strong: #443b34;

    --accent: #ff7a3c;
    --accent-dark: #ff9a5e;
    --accent-tint: #33201a;

    --brand: #34c79b;
    --brand-2: #50d8a8;
    --brand-tint: #10281f;
    --logo: #ffc93c;

    --shadow-sm: 0 1px 2px rgb(0 0 0 / 40%), 0 2px 6px rgb(0 0 0 / 30%);
    --shadow: 0 2px 4px rgb(0 0 0 / 40%), 0 12px 32px rgb(0 0 0 / 45%);
    --shadow-lg: 0 4px 8px rgb(0 0 0 / 40%), 0 30px 70px rgb(0 0 0 / 60%);

    --contrast-bg: #f3ece5;
    --contrast-fg: #141110;
    --band-bg: #0c0a09;
    --band-fg: #a0958a;
    --band-heading: #f6f0ea;
    --band-surface: #151211;
    --band-line: rgb(255 255 255 / 10%);

    --header-bg: rgb(20 17 16 / 74%);
    --grid-dot: rgb(255 255 255 / 6%);
    --tick-brand: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%2350d8a8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --tick-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%23ff9a5e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}

:root[data-theme='dark'] {
  color-scheme: dark;

  --ink: #f6f0ea;
  --fg: #d6ccc3;
  --fg-muted: #a0958a;
  --fg-subtle: #7b7064;
  --bg: #141110;
  --surface: #1b1714;
  --surface-2: #211c18;
  --surface-3: #2b2420;
  --border: #2e2823;
  --border-strong: #443b34;

  --accent: #ff7a3c;
  --accent-dark: #ff9a5e;
  --accent-tint: #33201a;

  --brand: #34c79b;
  --brand-2: #50d8a8;
  --brand-tint: #10281f;
  --logo: #ffc93c;

  --shadow-sm: 0 1px 2px rgb(0 0 0 / 40%), 0 2px 6px rgb(0 0 0 / 30%);
  --shadow: 0 2px 4px rgb(0 0 0 / 40%), 0 12px 32px rgb(0 0 0 / 45%);
  --shadow-lg: 0 4px 8px rgb(0 0 0 / 40%), 0 30px 70px rgb(0 0 0 / 60%);

  --contrast-bg: #f3ece5;
  --contrast-fg: #141110;
  --band-bg: #0c0a09;
  --band-fg: #a0958a;
  --band-heading: #f6f0ea;
  --band-surface: #151211;
  --band-line: rgb(255 255 255 / 10%);

  --header-bg: rgb(20 17 16 / 74%);
  --grid-dot: rgb(255 255 255 / 6%);
  --tick-brand: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%2350d8a8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --tick-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%23ff9a5e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  /* The sticky header would otherwise cover the heading an anchor jumps to. */
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 22px;
}

.sr-only {
  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;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
  left: 0;
}

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

/* --- Motion ---------------------------------------------------------------
 *
 * One mechanism for the whole site: an element declares `data-reveal`, the
 * observer in site.js adds `.is-in`, and `--i` staggers siblings. Written as a
 * transition rather than an animation so an element that is already on screen
 * at load simply arrives in its final state on the next frame — a keyframe
 * would replay from zero and flash the hero on every soft navigation.
 */

/*
 * Scoped to `.js`, which the one-line script in each page's <head> adds.
 *
 * Without that scope the whole site is invisible to a reader whose JavaScript
 * is off, or whose network dropped site.js: every heading and paragraph on
 * these pages carries `data-reveal`, so `opacity: 0` would be the final state
 * rather than the first frame of one. The class is set before first paint, so
 * there is no flash of the un-animated page either way.
 */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}

.js [data-reveal='fade'] {
  transform: none;
}

.js [data-reveal='left'] {
  transform: translate3d(-26px, 0, 0);
}

.js [data-reveal='right'] {
  transform: translate3d(26px, 0, 0);
}

.js [data-reveal='scale'] {
  transform: scale(0.965);
}

.js .is-in[data-reveal] {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js [data-reveal],
  .js .is-in[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee__track,
  .float,
  .float-slow,
  .pulse-dot::after {
    animation: none !important;
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.float {
  animation: float-y 7s ease-in-out infinite;
}

.float-slow {
  animation: float-y 11s ease-in-out infinite;
}

/* --- Type ----------------------------------------------------------------- */

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 0.45em;
  text-wrap: balance;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

h3 {
  font-size: 1.13rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1em;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 62ch;
  text-wrap: pretty;
}

.small {
  font-size: 0.875rem;
}

.muted {
  color: var(--fg-muted);
}

strong {
  font-weight: 700;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-tint);
  border: 1px solid rgb(242 98 31 / 18%);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin: 0 0 20px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/*
 * A word inside a heading, marked — and allowed to wrap.
 *
 * It was an absolutely-positioned bar and `white-space: nowrap`, so the
 * underline could not break across lines. That held the phrase together and
 * cost the page its narrowest layout: a grid track's minimum is its content's
 * minimum, so an unbreakable "gužva u dva talasa" made the whole hero column
 * 330px wide on a 320px screen and the *lead paragraph* under it was clipped
 * along with the headline. One nowrap, three sentences lost.
 *
 * A gradient background with `box-decoration-break: clone` draws the same bar
 * once per line instead, so the phrase wraps and every fragment keeps its
 * underline.
 */
.mark {
  color: var(--accent-dark);
  background-image: linear-gradient(
    to top,
    rgb(242 98 31 / 26%) 0 0.2em,
    transparent 0.2em
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* --- Sections ------------------------------------------------------------- */

section {
  padding-block: clamp(56px, 8vw, 104px);
  position: relative;
}

.section-tint {
  background: var(--surface-2);
}

.section-ink {
  background: var(--band-bg);
  color: var(--band-fg);
}

.section-ink h2,
.section-ink h3 {
  color: var(--band-heading);
}

/* Every lead on a band, in one place — it used to be an inline colour on each
   page, which is four copies of one decision and four things to miss. */
.section-ink .lead,
.section-ink .small {
  color: var(--band-fg);
}

.section-ink a {
  color: var(--accent);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  margin-inline: auto;
}

.section-head.center .lead {
  margin-inline: auto;
}

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 11px 20px;
  font: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease),
    color 0.18s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--contrast-bg);
  color: var(--contrast-fg);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow);
  filter: brightness(1.12);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgb(242 98 31 / 30%);
}

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 30px rgb(242 98 31 / 36%);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

/* The arrow slides on hover — the one micro-interaction worth having on every
   button, because it says "this goes somewhere" without any copy. */
.btn .arr {
  transition: transform 0.22s var(--ease);
}

.btn:hover .arr {
  transform: translateX(4px);
}

.section-ink .btn-ghost,
.cta .btn-ghost {
  background: transparent;
  color: var(--band-heading);
  border-color: var(--band-line);
  box-shadow: none;
}

.section-ink .btn-ghost:hover,
.cta .btn-ghost:hover {
  border-color: var(--band-heading);
  background: rgb(128 128 128 / 14%);
}

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

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    background-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header > .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}

.logo-tld {
  color: var(--logo);
}

/* The bulb rides at cap height, not full line height, or it sits a hair proud
   of the wordmark on every row it appears in. */
.logo-mark {
  width: 1.5em;
  height: 1.5em;
  flex: none;
  fill: var(--logo);
}

.site-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

/* Sits between the nav and the call to action on wide screens, and stays out
   in the open next to the burger on narrow ones — a theme switch buried inside
   a collapsed menu is a switch nobody finds. */
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hidden by default; the media query above turns it on. Declared here so the
   desktop nav never renders a second, redundant button. */
.nav-cta {
  display: none;
}

.site-nav a {
  position: relative;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--r-pill);
  transition: color 0.2s var(--ease);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
}

/*
 * The theme switch.
 *
 * Both marks are in the DOM and one is hidden, rather than swapping an icon on
 * click: swapping means the button is empty for a frame on a slow phone, and
 * it puts the current state in JavaScript instead of in the attribute the CSS
 * is already reading.
 */
.theme-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--fg-muted);
  cursor: pointer;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.theme-toggle:hover {
  color: var(--accent-dark);
  border-color: var(--border-strong);
  transform: rotate(-18deg);
}

.theme-toggle svg {
  width: 19px;
  height: 19px;
}

.theme-toggle .moon {
  display: none;
}

:root[data-theme='dark'] .theme-toggle .moon {
  display: block;
}

:root[data-theme='dark'] .theme-toggle .sun {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .theme-toggle .moon {
    display: block;
  }

  :root:not([data-theme='light']) .theme-toggle .sun {
    display: none;
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.24s var(--ease), opacity 0.18s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.site-header.is-open .nav-toggle span {
  background: transparent;
}

.site-header.is-open .nav-toggle span::before {
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span::after {
  transform: rotate(-45deg);
}

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

  .header-tools {
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    inset: 74px 0 auto;
    flex-direction: column;
    gap: 2px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 22px 20px;
    margin: 0;
    box-shadow: var(--shadow);
    /* Collapsed by height rather than display:none so it can animate, and
       hidden from the tab order with visibility so it cannot be focused. */
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 0.34s var(--ease),
      visibility 0s linear 0.34s;
  }

  .site-header.is-open .site-nav {
    max-height: 460px;
    visibility: visible;
    transition:
      max-height 0.34s var(--ease),
      visibility 0s;
  }

  .site-nav a {
    padding: 12px 4px;
    font-size: 1.02rem;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    margin-top: 12px;
    padding: 13px 22px;
    color: #fff;
  }

  .site-nav .nav-cta::after {
    display: none;
  }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 84px) clamp(56px, 8vw, 96px);
  overflow: hidden;
}

/* Two washes and a dot grid, all painted in pseudo-elements so the markup
   stays about the argument. The blobs are enormous and very faint on purpose:
   a gradient you can point at is a gradient that dates the page. */
.hero::before {
  content: '';
  position: absolute;
  inset: -30% -10% auto;
  height: 780px;
  background:
    radial-gradient(46% 46% at 78% 18%, rgb(242 98 31 / 13%) 0%, transparent 70%),
    radial-gradient(40% 40% at 12% 8%, rgb(33 166 131 / 11%) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: radial-gradient(72% 62% at 50% 24%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

/*
 * Not a one-column grid — a block.
 *
 * As a grid, the eyebrow pill became a grid item and stretched to the full
 * column (an inline-flex child still fills its track), and the row gap pushed
 * a canyon between the headline and the lead. The pages without artwork want
 * ordinary flow, not a grid with one column in it.
 */
.hero-grid.single {
  display: block;
  max-width: 780px;
}

.hero-grid.single h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
}

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

.hero h1 {
  margin-bottom: 20px;
}

/* The global h1 ceiling is set for a full-width hero. In the two-column one it
   has half the measure to work with, and 4rem there produces a four-line
   headline with two orphans in it. */
.hero-grid:not(.single) h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.15rem);
}

.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-actions {
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
  color: var(--fg-subtle);
  font-size: 0.86rem;
}

/* --- Trust strip ---------------------------------------------------------- */

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust span::before {
  content: '';
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  background-color: var(--brand-tint);
  background-image: var(--tick-brand);
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Marquee -------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  padding-block: 26px;
  border-block: 1px solid var(--border);
  background: var(--surface);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 46s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  /* Half, not all: the track holds the list twice, so one loop of half its
     width lands the copy exactly where the original started. */
  to {
    transform: translateX(-50%);
  }
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-inline: 22px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--fg-muted);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.marquee__item::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

/* --- Cards ---------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 20px;
}

/*
 * `min(100%, N)`, never a bare N.
 *
 * `minmax(300px, 1fr)` is a promise the container cannot always keep: on a
 * 320px phone the content box is 276px and the track still insists on 300, so
 * the card hangs 24px off the right edge. `min(100%, 300px)` says "300 unless
 * that is more than I have", which is what everybody means by it anyway. The
 * card minimums also went up with the wider container, so a 1280px page still
 * shows three across rather than four cramped ones.
 */
.grid-cards {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.card > :last-child {
  margin-bottom: 0;
}

.card p {
  color: var(--fg-muted);
}

.card .detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-strong);
  font-size: 0.88rem;
  color: var(--fg-subtle);
}

/* A number instead of an icon on the "what breaks" cards. The problems are a
   list somebody recognises in order, and a numeral says that where three
   different pictograms would just be decoration. */
.card-num::before {
  content: attr(data-num);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.02rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.card:hover .card-icon {
  background: var(--accent-tint);
  transform: rotate(-6deg);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

/* --- Product art ---------------------------------------------------------- */

/*
 * The mockups are SVG, drawn to the app's real layout and painted in the app's
 * real green. They are wrapped rather than dropped in bare: the frame, the
 * shadow and the glow behind them are what make a flat vector read as a screen
 * somebody is looking at.
 */

.art {
  position: relative;
}

.art::before {
  content: '';
  position: absolute;
  inset: 8% -6% -12%;
  background: radial-gradient(50% 50% at 50% 60%, rgb(242 98 31 / 20%), transparent 72%);
  filter: blur(28px);
  z-index: 0;
}

.art > * {
  position: relative;
  z-index: 1;
}

.art-frame {
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* The phone is the one mockup that is not a landscape screen. Given a panel's
   full width it renders two metres tall, so it carries its own ceiling and no
   frame — a device already has a bezel, and a second one around it reads as a
   picture of a picture. */
.art--phone {
  max-width: 288px;
  margin-inline: auto;
}

.art--phone svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 44px rgb(23 19 16 / 20%));
}

.art-frame svg {
  width: 100%;
  height: auto;
  border-radius: calc(var(--r-xl) - 12px);
  display: block;
}

/* The phone that overlaps the dashboard's lower-left corner. Absolute on wide
   screens, and simply the next block on narrow ones — a 190px phone floating
   over a 320px dashboard is two things nobody can read. */
.art-phone {
  position: absolute;
  left: -11%;
  bottom: -17%;
  width: 26%;
  min-width: 138px;
  z-index: 2;
  filter: drop-shadow(0 24px 44px rgb(23 19 16 / 22%));
}

@media (max-width: 640px) {
  .art-phone {
    position: static;
    width: 62%;
    margin: -12% auto 0;
  }

  .art::before {
    display: none;
  }
}

/* A floating figure that names a number on top of the art. Two of them, and
   they are the only place on the page where a claim sits on the artwork —
   more than two and the screenshot disappears under its own annotations. */
.art-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.art-chip small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--fg-subtle);
}

.art-chip--tr {
  top: -14px;
  right: -10px;
}

.art-chip--bl {
  bottom: -4%;
  right: -4%;
}

@media (max-width: 640px) {
  .art-chip {
    display: none;
  }
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-2);
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--brand-2);
  animation: ping 2.2s var(--ease) infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* --- Tabs ("kako radi") ---------------------------------------------------- */

.tabs {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}

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

.tablist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .tablist {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .tablist::-webkit-scrollbar {
    display: none;
  }
}

.tab {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--r);
  padding: 16px 18px 16px 22px;
  font: inherit;
  color: var(--fg-muted);
  cursor: pointer;
  transition:
    background-color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease);
}

.tab strong {
  display: block;
  font-size: 1.02rem;
  color: var(--fg);
  margin-bottom: 2px;
  transition: color 0.28s var(--ease);
}

.tab p {
  margin: 0;
  font-size: 0.88rem;
}

.tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.32s var(--ease);
}

.tab[aria-selected='true'] {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--fg-muted);
}

.tab[aria-selected='true']::before {
  transform: scaleY(1);
}

.tab[aria-selected='true'] strong {
  color: var(--accent-dark);
}

@media (max-width: 900px) {
  .tab {
    flex: none;
    width: auto;
    padding: 11px 16px;
    border-radius: var(--r-pill);
    border-color: var(--border);
    background: var(--surface);
  }

  .tab p {
    display: none;
  }

  .tab::before {
    display: none;
  }

  .tab[aria-selected='true'] {
    background: var(--ink);
  }

  .tab[aria-selected='true'] strong {
    color: #fff;
  }
}

.tabpanel {
  display: none;
}

.tabpanel.is-active {
  display: block;
  animation: panel-in 0.45s var(--ease) both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tabpanel.is-active {
    animation: none;
  }
}

/* --- Figures (numbers that count up) -------------------------------------- */

.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.figure {
  background: var(--surface);
  padding: 26px 24px;
}

.figure__value {
  display: block;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.figure__value .unit {
  font-size: 0.44em;
  font-weight: 700;
  color: var(--fg-subtle);
  margin-left: 6px;
  letter-spacing: 0;
}

.figure__label {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.section-ink .figures {
  background: var(--band-line);
  border-color: var(--band-line);
}

.section-ink .figure {
  background: var(--band-surface);
}

.section-ink .figure__value {
  color: var(--band-heading);
}

.section-ink .figure__label {
  color: var(--band-fg);
}

/* --- Tables --------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th,
td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

thead th {
  background: var(--surface-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-subtle);
  font-weight: 700;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background-color 0.2s var(--ease);
}

tbody tr:hover {
  background: var(--surface-2);
}

td.num,
th.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

td:first-child {
  font-weight: 700;
  color: var(--ink);
}

/* --- Plans ---------------------------------------------------------------- */

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.plan-featured {
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

/* The featured card is lifted at rest rather than only on hover, because the
   recommendation has to survive a touchscreen where nothing ever hovers. */
@media (min-width: 780px) {
  .plan-featured {
    transform: translateY(-10px);
  }

  .plan-featured:hover {
    transform: translateY(-15px);
  }
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgb(242 98 31 / 34%);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 16px 0 4px;
  font-variant-numeric: tabular-nums;
}

.price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-subtle);
  letter-spacing: 0;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg-muted);
}

.plan li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.plan li::before {
  content: '';
  margin-top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--brand-tint);
  background-image: var(--tick-brand);
  background-size: 100%;
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

/* --- Testimonials --------------------------------------------------------- */

.quote {
  position: relative;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quote::before {
  content: '”';
  position: absolute;
  top: 6px;
  right: 22px;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.16;
  font-family: Georgia, serif;
}

.quote blockquote {
  margin: 0 0 18px;
  font-size: 1.04rem;
  color: var(--ink);
  line-height: 1.55;
}

.quote figcaption {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.quote .metric {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--brand);
}

.demo-tag {
  display: inline-block;
  margin-bottom: 12px;
  /* 0.7rem is 11.2px, which is below where a tracked-out uppercase label stays
     comfortable on a phone. */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  background: var(--surface-3);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

/* --- FAQ ------------------------------------------------------------------ */

.faq-list {
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

details {
  border-bottom: 1px solid var(--border);
}

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  transition: background-color 0.2s var(--ease);
}

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

summary:hover {
  background: var(--surface-2);
}

/* Drawn rather than a glyph, so the horizontal stroke can stay put while the
   vertical one rotates away — a plus that becomes a minus without swapping
   characters. */
.faq-sign {
  position: relative;
  margin-left: auto;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.faq-sign::before,
.faq-sign::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  margin: -1px 0 0 -5.5px;
  border-radius: 2px;
  background: var(--accent-dark);
  transition: transform 0.3s var(--ease);
}

.faq-sign::after {
  transform: rotate(90deg);
}

details[open] .faq-sign::after {
  transform: rotate(0deg);
}

details .answer {
  padding: 0 22px 22px;
  color: var(--fg-muted);
  max-width: 68ch;
}

details .answer p {
  margin: 0;
}

/* --- CTA band ------------------------------------------------------------- */

.cta {
  background: var(--band-bg);
  color: var(--band-fg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: auto -20% -60%;
  height: 460px;
  background: radial-gradient(50% 50% at 50% 50%, rgb(242 98 31 / 30%), transparent 70%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgb(255 255 255 / 8%) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: radial-gradient(60% 70% at 50% 40%, #000, transparent 75%);
  pointer-events: none;
}

.cta > .wrap {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: var(--band-heading);
  max-width: 18ch;
  margin-inline: auto;
}

.cta .lead {
  color: var(--band-fg);
  margin-inline: auto;
  max-width: 54ch;
}

.cta .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding-block: 56px 30px;
  font-size: 0.92rem;
}

.site-footer .cols {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

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

  .site-footer .cols > :first-child {
    grid-column: 1 / -1;
  }
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 700;
}

.site-footer a {
  display: block;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.site-footer a:hover {
  color: var(--accent-dark);
}

.site-footer .logo {
  display: inline-block;
  padding: 0;
}

/* --- Forms ---------------------------------------------------------------- */

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(242 98 31 / 14%);
}

textarea {
  resize: vertical;
}

/* --- Odds and ends -------------------------------------------------------- */

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

.list-check li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--fg-muted);
}

.list-check li::before {
  content: '';
  margin-top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background-color: var(--accent-tint);
  background-image: var(--tick-accent);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.step {
  position: relative;
  padding-top: 22px;
  border-top: 2px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: -13px;
  left: 0;
  background: var(--bg);
  padding-right: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.section-tint .step::before {
  background: var(--surface-2);
}

/* Both of these ride into the dark band on the home and segment pages, and
   both are built out of the light palette — the tick's tile, the numeral's
   knock-out over the rule, and the muted body text all have to be restated or
   they arrive as a light rectangle on black. */
.section-ink .list-check li {
  color: var(--band-fg);
}

.section-ink .list-check li::before {
  background-color: rgb(242 98 31 / 20%);
}

.section-ink .step {
  border-top-color: var(--band-line);
}

.section-ink .step::before {
  background: var(--band-bg);
}

.section-ink .step p {
  color: var(--band-fg);
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.stack-sm > * + * {
  margin-top: 12px;
}
