/* OneWally marketing site — tokens from the design system (brand.json), layout from OneWally.dc.html */

:root {
  --bg: #E8EEF2;
  --surface: #FFFFFF;
  --text: #2E3030;
  --muted: #5D5F61;
  --on-dark: #E8EEF2;
  --primary: #A2A3E9;
  --primary-hover: #8B8CDC;
  --on-primary: #14141E;
  --link: #247BA0;
  --mint: #1ECF88;
  --mint-soft: #80DFB9;
  --mint-pale: #ABEFD4;
  --green-deep: #148A5B;
  --band-blue: #247BA0;
  --band-forest: #0A452D;
  --blue-soft: #75AAC0;
  --blue-pale: #A6CEDF;
  --lavender-pale: #CFCFF4;
  --lavender-deep: #7A7AAF;
  --navy: #18526B;
  --navy-deep: #0C2935;
  --font-heading: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, system-ui, -apple-system, sans-serif;
  --container: 1080px;
  --gutter: 24px;
  --section: clamp(64px, 8vw, 120px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--band-forest); }
button { font: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 50;
  background: var(--surface); color: var(--text); padding: 10px 16px; border-radius: 999px;
}
.skip-link:focus { top: 16px; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-top: var(--section); padding-bottom: var(--section); }
.section--tight-top { padding-top: 0; }
.section--hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 7vw, 88px); }
.section--page-head { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
.band { color: var(--on-dark); }
.band--blue { background: var(--band-blue); }
.band--forest { background: var(--band-forest); }

/* Type */
.eyebrow {
  font-family: var(--font-heading); font-weight: 700; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--band-forest); margin-bottom: 18px;
}
.band .eyebrow { color: var(--mint-pale); }
.band--forest .eyebrow { color: var(--mint); }
.h1 {
  font-family: var(--font-heading); font-weight: 400; font-size: clamp(45px, 5.2vw, 60px);
  line-height: 1.1; letter-spacing: -.01em; text-wrap: pretty;
}
.h2 {
  font-family: var(--font-heading); font-weight: 400; font-size: clamp(36px, 4.2vw, 47px);
  line-height: 1.15; letter-spacing: -.01em; text-wrap: pretty;
}
.h3 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(24px, 2.4vw, 28px); line-height: 1.3; }
.h3--lg { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2; }
.h3--xl { font-size: clamp(24px, 2.8vw, 32px); }
.h2--card { font-family: var(--font-heading); font-weight: 400; font-size: clamp(28px, 3vw, 36px); line-height: 1.2; letter-spacing: -.01em; }
.h2--bold { font-family: var(--font-heading); font-weight: 700; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.3; }
.lead { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.4; margin-top: 24px; text-wrap: pretty; }
.step-no { font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: .2em; color: var(--mint); }
.muted { color: var(--muted); }
.mt-12 { margin-top: 12px; } .mt-14 { margin-top: 14px; } .mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-36 { margin-top: 36px; } .mt-40 { margin-top: 40px; }
.mt-grid { margin-top: clamp(36px, 4vw, 56px); }
.mt-band { margin-top: clamp(40px, 5vw, 64px); }
.max-ch-20 { max-width: 20ch; } .max-ch-22 { max-width: 22ch; } .max-ch-24 { max-width: 24ch; } .max-ch-26 { max-width: 26ch; }
.max-ch-30 { max-width: 30ch; } .max-ch-46 { max-width: 46ch; } .max-ch-48 { max-width: 48ch; } .max-ch-50 { max-width: 50ch; }
.max-ch-52 { max-width: 52ch; } .max-ch-56 { max-width: 56ch; } .max-ch-70 { max-width: 70ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 16px 32px; font-size: 16px; font-weight: 500; letter-spacing: .05em;
  white-space: nowrap; cursor: pointer; border: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-hover); color: var(--on-primary); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--text); padding: 15px 31px; }
.btn-secondary:hover { background: var(--text); color: var(--on-dark); transform: translateY(-2px); }
.btn-dark { background: var(--mint); color: var(--band-forest); }
.btn-dark:hover { background: var(--mint-soft); color: var(--band-forest); transform: translateY(-2px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Progress bar */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 40; pointer-events: none; }
.progress__bar { height: 100%; background: var(--mint); transform: scaleX(0); transform-origin: 0 50%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; padding: 16px 24px; background: var(--bg); }
.nav {
  max-width: var(--container); margin: 0 auto; background: var(--surface); border-radius: 999px;
  padding: clamp(10px, 1.4vw, 14px) clamp(14px, 1.8vw, 18px) clamp(10px, 1.4vw, 14px) clamp(16px, 2.4vw, 24px);
  transition: padding .35s var(--ease-out), box-shadow .35s ease;
  display: flex; align-items: center; gap: 12px 20px; flex-wrap: wrap;
  box-shadow: 0 2px 16px rgba(20, 20, 30, .06);
}
.nav.is-tight { padding: 9px 14px 9px 20px; box-shadow: 0 12px 34px rgba(10, 69, 45, .16); }
.nav__brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav__brand img { height: clamp(26px, 3.4vw, 34px); width: auto; display: block; }
.nav__right { display: flex; align-items: center; justify-content: flex-end; gap: clamp(10px, 2vw, 22px); margin-left: auto; flex-wrap: nowrap; }
.nav__links {
  display: flex; align-items: center; gap: clamp(10px, 2vw, 22px); list-style: none; flex-wrap: nowrap;
  white-space: nowrap; font-size: clamp(13px, 1.7vw, 16px); letter-spacing: .05em;
}
.nav__links a { color: var(--text); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--green-deep); }
.nav__cta {
  background: var(--primary); color: var(--on-primary); border-radius: 999px;
  padding: clamp(10px, 1.5vw, 13px) clamp(14px, 2.4vw, 26px); font-size: clamp(13px, 1.7vw, 16px);
  font-weight: 500; letter-spacing: .05em; white-space: nowrap; display: inline-flex; align-items: center;
  transition: background .25s ease, transform .25s ease;
}
.nav__cta:hover { background: var(--primary-hover); color: var(--on-primary); transform: translateY(-2px); }
@media (max-width: 480px) {
  .nav__right { margin-left: 0; width: 100%; justify-content: flex-start; }
  .nav__cta { display: none; }
}

/* Hero */
.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(32px, 5vw, 56px); align-items: center; }
.hero .eyebrow { margin-bottom: 20px; }
.hero__actions { margin-top: 36px; }
.mosaic {
  display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(120px, auto); gap: 12px;
  perspective: 2200px; perspective-origin: 50% 50%; transform-style: preserve-3d; position: relative; z-index: 15;
}
.tile { aspect-ratio: 1 / 1; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.tile--mat { background: var(--lavender-pale); border-radius: 120px 120px 0 0; }
.tile--bottle { background: var(--blue-pale); border-radius: 120px 400px 120px 400px; position: relative; z-index: 15; }
.tile--icon { background: var(--mint); border-radius: 999px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; padding: 14%; }
.tile--icon svg { display: block; overflow: visible; width: 100%; height: 100%; }
.tile--icon rect {
  fill: var(--band-forest);
  transition: x .9s cubic-bezier(.65, 0, .35, 1), y .9s cubic-bezier(.65, 0, .35, 1), width .9s cubic-bezier(.65, 0, .35, 1),
    height .9s cubic-bezier(.65, 0, .35, 1), rx .9s cubic-bezier(.65, 0, .35, 1), opacity .6s ease;
}
.tile--jar { background: var(--mint-pale); border-radius: 0 0 120px 120px; }

/* Grids and cards */
.grid { display: grid; gap: 24px; }
.grid--steps { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 32px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--cases { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(32px, 5vw, 56px); align-items: center; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.card { background: var(--surface); border-radius: 32px; padding: 32px; }
.card--pad-lg { padding: clamp(28px, 3vw, 40px); }
.card--link { display: block; padding: 36px; color: var(--text); transition: background .25s ease, transform .25s ease; }
.card--link:hover { background: var(--lavender-pale); color: var(--text); transform: translateY(-3px); }
.card__cta { margin-top: 20px; font-size: 16px; font-weight: 600; color: var(--green-deep); }
.case { background: var(--surface); border-radius: 32px; overflow: hidden; }
.case__img { width: 100%; height: 180px; object-fit: cover; object-position: center; display: block; }
.case__img--mint { background: var(--mint-pale); }
.case__img--lavender { background: var(--lavender-pale); }
.case__body { padding: 32px; }
.case__body .eyebrow { margin-bottom: 0; }
.cloud { padding: 40px 36px; }
.cloud--track { background: var(--mint-soft); border-radius: 120px 120px 32px 120px; color: var(--band-forest); }
.cloud--analyze { background: var(--blue-pale); border-radius: 120px 32px 120px 120px; color: var(--navy-deep); }
.cloud--improve { background: var(--lavender-pale); border-radius: 32px 120px 120px 120px; color: var(--on-primary); }
.cloud .h3 { color: inherit; }
.price-card { background: var(--surface); border-radius: 32px; padding: clamp(28px, 3vw, 40px); }
.price-card--mint { background: var(--mint-soft); color: var(--band-forest); }
.price-card__amount { font-family: var(--font-heading); font-weight: 700; font-size: clamp(28px, 3vw, 36px); color: var(--green-deep); margin-top: 16px; }
.cta-box {
  background: var(--lavender-pale); border-radius: 32px; padding: clamp(32px, 4vw, 48px);
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: space-between;
}
.cta-box .h3 { color: var(--on-primary); text-wrap: pretty; }
.cta-band { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.cta-band .h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.2; max-width: 24ch; }

/* Testimonials */
.quote { font-size: 20px; line-height: 1.5; }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.quote-by img { width: 48px; height: 48px; border-radius: 999px; flex: 0 0 auto; object-fit: cover; display: block; }
.quote-by span { font-weight: 600; font-size: 16px; }
.avatar--lavender { background: var(--lavender-pale); }
.avatar--mint { background: var(--mint-pale); }
.avatar--blue { background: var(--blue-pale); }

/* Approach mock */
.approach-mock { margin-top: clamp(40px, 5vw, 64px); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.mock-frame { flex: 1 1 320px; background: var(--navy); border-radius: 32px; padding: clamp(10px, 1.4vw, 16px); position: relative; z-index: 16; }
.mock { background: #F4F6F8; border-radius: 18px; padding: clamp(12px, 1.8vw, 20px); display: grid; gap: clamp(12px, 1.6vw, 18px); }
.mock__search {
  background: var(--surface); border: 1px solid #E2E6EA; border-radius: 999px;
  padding: clamp(7px, 1vw, 10px) clamp(10px, 1.4vw, 14px); display: flex; align-items: center; gap: 10px;
}
.mock__lens { width: 12px; height: 12px; border: 2px solid #AEB6BF; border-radius: 999px; flex: 0 0 auto; }
.mock__typed { font-size: clamp(9px, 1.1vw, 12px); line-height: 1.2; color: var(--text); white-space: nowrap; overflow: hidden; }
.mock__caret { width: 1.5px; height: clamp(10px, 1.2vw, 13px); background: var(--muted); flex: 0 0 auto; }
.mock__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(8px, 1.2vw, 14px); }
.mock__card { background: var(--surface); border-radius: 10px; padding: clamp(7px, 1vw, 11px); display: grid; gap: 8px; align-content: start; }
.mock__card--hit { outline: 2px solid #E5484D; outline-offset: 2px; }
.mock__thumb { background: #D6DAE0; border-radius: 6px; aspect-ratio: 16 / 10; }
.mock__thumb--hit { background: var(--blue-pale); }
.mock__line { height: 5px; border-radius: 999px; background: #D6DAE0; width: 88%; }
.mock__line--short { background: #E4E7EB; width: 62%; }
.mock__price { font-family: var(--font-heading); font-weight: 700; font-size: clamp(10px, 1.2vw, 13px); color: var(--muted); }

/* Images */
.img-about { background: var(--green-deep); border-radius: 120px 0 120px 0; width: 100%; height: 100%; min-height: 280px; max-height: 520px; object-fit: cover; object-position: center; display: block; }
.img-team { margin-top: 24px; background: var(--blue-soft); border-radius: 32px; width: 100%; min-height: 260px; max-height: 360px; object-fit: cover; object-position: center right; display: block; }
.shortlist { margin-top: clamp(40px, 5vw, 64px); background: var(--navy); border-radius: 32px; padding: 16px; }
.shortlist img { width: 100%; height: auto; display: block; border-radius: 18px; }

/* Steps list (service page) */
.steps { list-style: none; margin-top: clamp(40px, 5vw, 64px); display: grid; gap: 40px; }
.steps > li { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 24px; border-top: 1px solid var(--blue-pale); padding-top: 32px; }
.steps ul { list-style: none; display: grid; gap: 12px; }

/* Legal */
.legal { display: flex; flex-wrap: wrap; gap: clamp(32px, 4vw, 56px); margin-top: clamp(40px, 5vw, 64px); align-items: flex-start; }
.legal__toc { background: var(--surface); border-radius: 32px; padding: 28px; position: sticky; top: 112px; flex: 1 1 220px; max-width: 300px; }
.legal__toc .eyebrow { margin-bottom: 0; }
.legal__toc ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; font-size: 16px; }
.legal__body { flex: 999 1 320px; min-width: 0; }
@media (max-width: 767px) {
  .legal__toc { position: static; max-width: none; }
}
.legal__sections { margin-top: 40px; display: grid; gap: 36px; }
.legal__sections section { scroll-margin-top: 112px; min-width: 0; }
.legal__sections { min-width: 0; overflow-wrap: anywhere; }
.legal__sections p, .legal__sections li { max-width: 70ch; color: var(--muted); }
.legal__sections p + p, .legal__sections ul, .legal__sections ol { margin-top: 12px; }
.legal__sections ul { padding-left: 1.2em; list-style: disc; }
.legal__sections li + li { margin-top: 6px; }

/* Footer */
.site-footer { background: var(--band-forest); color: var(--on-dark); }
.site-footer .container { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 40px; }
.site-footer .wordmark { font-family: var(--font-heading); font-weight: 700; font-size: 24px; letter-spacing: .02em; color: var(--mint); }
.site-footer .eyebrow { color: var(--mint); margin-bottom: 0; }
.site-footer ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; font-size: 16px; }
.site-footer a { color: var(--on-dark); }
.site-footer a:hover { color: var(--mint); }
.site-footer .tagline { margin-top: 12px; font-size: 16px; max-width: 28ch; }

/* Flight of the product tile into the search mock */
.flight-ghost {
  position: fixed; top: 0; left: 0; z-index: 15; pointer-events: none;
  overflow: hidden; background: var(--blue-pale); transform-origin: 50% 50%;
  will-change: transform, width, height;
}
.flight-ghost img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.tile.is-away { opacity: .16 !important; }
.mock__card { position: relative; }
.mock__thumb { position: relative; overflow: hidden; }
.mock__thumb.is-filled { background: var(--blue-pale); animation: landed-ring .9s ease-out 1; }
.mock__thumb.is-filled img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transform-origin: 50% 50%; }
.mock__badge {
  position: absolute; top: calc(clamp(7px, 1vw, 11px) + 6px); left: calc(clamp(7px, 1vw, 11px) + 6px);
  background: var(--mint); color: var(--band-forest); font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(9px, 1vw, 12px); line-height: 1; padding: 4px 7px; border-radius: 999px;
  opacity: 0; transform: scale(.6); pointer-events: none;
}
.mock__card.is-landed .mock__badge { animation: badge-pop .5s cubic-bezier(.34, 1.56, .64, 1) .1s forwards; }
@keyframes badge-pop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }
@keyframes landed-ring { from { box-shadow: 0 0 0 0 rgba(30, 207, 136, .55); } to { box-shadow: 0 0 0 14px rgba(30, 207, 136, 0); } }

/* Crawler product section and page */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.pill--mint { background: var(--mint-pale); color: var(--band-forest); }
.pill--blue { background: var(--blue-pale); color: var(--navy-deep); }
.pill--lavender { background: var(--lavender-pale); color: var(--on-primary); }
.code-panel { background: var(--navy); border-radius: 32px; padding: clamp(10px, 1.4vw, 16px); }
.code-panel pre {
  margin: 0; background: var(--navy-deep); color: var(--on-dark); border-radius: 0 0 18px 18px; padding: clamp(16px, 2vw, 24px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: clamp(12px, 1.1vw, 13.5px); line-height: 1.65;
  white-space: pre-wrap; overflow-wrap: break-word; tab-size: 2;
}
.code-panel__bar {
  display: flex; align-items: center; gap: 7px; background: var(--navy-deep); border-radius: 18px 18px 0 0;
  padding: 12px 16px 0; margin-bottom: -6px;
}
.code-panel__bar span { width: 10px; height: 10px; border-radius: 999px; background: var(--blue-soft); opacity: .55; }
.code-panel__bar span:first-child { background: var(--mint); opacity: .9; }
.code-panel__bar em { margin-left: auto; font-style: normal; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-soft); }
@media (max-width: 600px) {
  .code-panel pre { font-size: 12px; line-height: 1.7; padding: 14px 14px 18px; }
  .code-panel__bar { padding: 10px 14px 0; }
}
.code-panel .c-k { color: var(--mint); }
.code-panel .c-s { color: var(--mint-pale); }
.code-panel .c-m { color: var(--blue-soft); }
.data-card { background: var(--surface); border-radius: 32px; padding: 28px; color: var(--text); }
.data-card .h3 { font-size: 20px; }
.data-card .credit { font-family: var(--font-heading); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-deep); margin-top: 14px; }
.tariff { width: 100%; border-collapse: collapse; font-size: 16px; }
.tariff th, .tariff td { text-align: left; padding: 12px 8px; border-top: 1px solid var(--text); vertical-align: top; }
.tariff th { font-family: var(--font-heading); font-weight: 700; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--band-forest); border-top: 0; }
.tariff td.num, .tariff th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tariff tr:last-child td { border-bottom: 1px solid var(--text); }
.tariff-wrap { overflow-x: auto; }
.packs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 16px; }
.pack { background: var(--surface); border-radius: 32px; padding: 28px 24px; display: flex; flex-direction: column; position: relative; }
.pack--best { background: var(--mint-soft); color: var(--band-forest); }
.pack__name { font-family: var(--font-heading); font-weight: 700; font-size: 20px; }
.pack__credits { font-family: var(--font-heading); font-weight: 700; font-size: clamp(26px, 2.4vw, 32px); line-height: 1.1; margin-top: 10px; }
.pack__crawls { font-size: 15px; margin-top: 4px; color: var(--muted); }
.pack__price { margin-top: 18px; }
.pack__price strong { font-family: var(--font-heading); font-weight: 700; font-size: 28px; }
.pack__rate { color: var(--muted); font-size: 15px; margin-top: 4px; }
.pack--best .pack__crawls, .pack--best .pack__rate { color: var(--band-forest); }
.pack__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--band-forest); color: var(--mint); font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; }
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { padding-left: 28px; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 999px; background: var(--mint); }
.crawler-teaser { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(32px, 5vw, 56px); align-items: center; }

/* Credit simulator */
.sim { background: var(--surface); border-radius: 32px; padding: clamp(24px, 3vw, 40px); }
.sim__head { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; justify-content: space-between; }
.sim__modes { display: inline-flex; background: var(--bg); border-radius: 999px; padding: 4px; flex: 0 0 auto; }
.sim__mode { border: 0; background: transparent; color: var(--text); border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: 15px; cursor: pointer; }
.sim__mode[aria-pressed="true"] { background: var(--text); color: var(--on-dark); }
.sim__presets { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 20px; font-size: 15px; }
.sim__preset { border: 1px solid var(--text); background: transparent; color: var(--text); border-radius: 999px; padding: 7px 14px; font-size: 14px; font-weight: 500; cursor: pointer; }
.sim__preset:hover { background: var(--lavender-pale); }
.sim__body { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(24px, 3vw, 40px); margin-top: 28px; align-items: start; }
.sim__lines { display: grid; gap: 12px; }
.sim__row { display: grid; grid-template-columns: 1fr 140px; gap: 12px; align-items: center; border-top: 1px solid var(--lavender-pale); padding-top: 12px; }
.sim__row:first-child { border-top: 0; padding-top: 0; }
.sim__label { font-size: 16px; font-weight: 500; display: grid; }
.sim__label small { font-size: 13px; color: var(--muted); font-weight: 400; }
.sim__input { width: 100%; border: 1px solid var(--text); border-radius: 8px; padding: 10px 12px; font: inherit; font-size: 16px; text-align: right; font-variant-numeric: tabular-nums; background: var(--surface); color: var(--text); }
.sim__input:focus { outline: 3px solid var(--mint); outline-offset: 2px; border-color: var(--text); }
.sim__result { background: var(--bg); border-radius: 24px; padding: clamp(20px, 2.4vw, 28px); }
.sim__result .eyebrow { margin-bottom: 8px; }
.sim__big { font-family: var(--font-heading); font-weight: 700; font-size: clamp(30px, 3.4vw, 40px); line-height: 1.1; }
.sim__pack { margin-top: 10px; font-size: 18px; }
.sim__pack strong { font-family: var(--font-heading); font-weight: 700; }
.tariff--sim { font-size: 14px; }
.tariff--sim th, .tariff--sim td { padding: 8px 6px; }
@media (max-width: 480px) { .sim__row { grid-template-columns: 1fr 110px; } }
