:root {
  --paper:     #F6F2E8;
  --ink:       #0A0A0A;
  --ink-2:     #1F1F1F;
  --primary:   #0F5FA6;
  --primary-700: #0a4d8a;
  --secondary: #E0301E;
  --accent:    #6FB2E8;
  --mute:      #E5DFCE;
  --mute-2:    #EEE7D3;
  --mute-3:    #D4CEBE;

  --ink-72: rgba(10,10,10,.72);
  --ink-56: rgba(10,10,10,.56);
  --ink-32: rgba(10,10,10,.32);
  --ink-12: rgba(10,10,10,.12);
  --ink-06: rgba(10,10,10,.06);

  --paper-85: rgba(246,242,232,.85);
  --paper-72: rgba(246,242,232,.72);
  --paper-56: rgba(246,242,232,.56);
  --paper-32: rgba(246,242,232,.32);
  --paper-16: rgba(246,242,232,.16);
  --paper-06: rgba(246,242,232,.06);

  --color-error: #d93025;

  --font-display: 'Fraunces', 'Times New Roman', 'Liberation Serif', 'DejaVu Serif', serif;
  --font-body:    'Fraunces', 'Times New Roman', 'Liberation Serif', 'DejaVu Serif', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --rad:    4px;
  --rad-lg: 10px;

  --maxw:   1360px;
  --gutter: clamp(16px, 4vw, 56px);

  --header-h: 72px;
}

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

html { scroll-padding-top: calc(var(--header-h) + 12px); scroll-behavior: smooth; }
html, body { background: var(--paper); color: var(--ink); overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-feature-settings: "ss01", "ss02", "kern", "liga", "onum";
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--paper); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule {
  border: 0;
  border-top: 1px solid var(--ink-12);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-56);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--ink-32);
  display: inline-block;
}

.num {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  color: var(--ink-56);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  border-radius: var(--rad);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; font-size: 18px; }
.btn-primary:hover { background: var(--primary-700); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink-32); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink-06); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--ink-12); }
.btn-light:hover { border-color: var(--ink); }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 2px; }
.btn:focus-visible { outline-offset: 2px; }



.art-crumbs {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-56);
}
.art-crumbs a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.art-crumbs a:hover { color: var(--ink); }
.art-crumbs .sep { color: var(--ink-32); }

.art-head {
  padding: clamp(32px, 5vw, 56px) 0 clamp(24px, 3.5vw, 36px);
  border-bottom: 1px solid var(--ink-12);
  margin-bottom: clamp(32px, 4.5vw, 52px);
}
.art-head h1 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 20ch;
  margin: 18px 0 0;
}
.art-head h1 em { font-style: italic; color: var(--primary); font-weight: 400; }

.art-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 18px;
  margin-top: clamp(20px, 2.5vw, 28px);
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-56);
}
.art-meta .sep { color: var(--ink-32); }

.art-body {
  font-size: 19px;
  line-height: 1.62;
  color: var(--ink);
  margin-bottom: clamp(44px, 6vw, 72px);
}
.art-body > * + * { margin-top: 26px; }
.art-body > h2 { margin-top: clamp(34px, 5vw, 48px); }
.art-body > h3 { margin-top: clamp(28px, 4vw, 38px); }

.art-body h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.art-body h3 {
  font-size: clamp(21px, 2.4vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.art-body > p:first-child { font-size: 21px; line-height: 1.55; color: var(--ink-72); }

.art-body strong { font-weight: 600; }
.art-body em { font-style: italic; }

.art-body a:not(.btn) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(15, 95, 166, .32);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s ease;
}
.art-body a:not(.btn):hover { text-decoration-color: var(--primary); }

.art-body pre {
  background: var(--mute-2);
  border-radius: var(--rad);
  padding: 16px 18px;
  overflow-x: auto;
}
.art-body code {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.55;
}
.art-body :not(pre) > code { background: var(--mute-2); padding: 2px 6px; border-radius: 3px; }

.art-body ul, .art-body ol {
  margin-bottom: 0; padding-left: 1.35em;
  display: flex; flex-direction: column; gap: 12px;
}
.art-body ol { font-feature-settings: "lnum", "tnum"; }
.art-body li { padding-left: 6px; }
.art-body li > ul, .art-body li > ol { margin-top: 12px; }

.art-body blockquote {
  margin: clamp(8px, 1.5vw, 14px) 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--primary);
  font-size: clamp(21px, 2.4vw, 26px);
  line-height: 1.35;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.art-body blockquote p + p { margin-top: 14px; }

.art-body hr {
  border: 0; border-top: 1px solid var(--ink-12);
  margin: clamp(32px, 4vw, 44px) 0;
}

.art-def {
  background: var(--mute);
  border-radius: var(--rad-lg);
  padding: clamp(22px, 3vw, 30px);
}
.art-def-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-56);
}
.art-def p {
  margin-top: 14px;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.art-def strong { font-weight: 600; }

.art-faq { margin: clamp(48px, 7vw, 88px) 0; }
.art-faq > h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 20px;
}

.art-cta {
  margin-top: clamp(44px, 6vw, 72px);
  margin-bottom: clamp(44px, 6vw, 72px);
  background: var(--mute-2);
  border-radius: var(--rad-lg);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  overflow: hidden;
}
.art-cta-main { padding: clamp(26px, 3.4vw, 38px); display: flex; flex-direction: column; gap: 14px; }
.art-cta-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.art-cta-lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-56);
}
.art-cta .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 3px 8px;
  border-radius: 2px;
}
.art-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 20ch;
}
.art-cta h2 em { font-style: italic; color: var(--primary); font-weight: 400; }
.art-cta-desc { color: var(--ink-72); font-size: 17px; line-height: 1.5; max-width: 52ch; }

.art-cta-side {
  padding: clamp(26px, 3.4vw, 38px);
  border-left: 1px solid var(--ink-12);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.art-cta-price { display: flex; flex-direction: column; gap: 6px; }
.art-cta-price .from {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 500;
  font-feature-settings: "lnum", "tnum";
}
.art-cta-price .price-lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--ink-56);
}
.art-cta-price .price-note {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--accent);
}
.art-cta-side .btn { justify-content: space-between; }

.art-cta.is-ink { background: var(--ink); color: var(--paper); }
.art-cta.is-ink .art-cta-lbl,
.art-cta.is-ink .art-cta-price .price-lbl { color: var(--paper-56); }
.art-cta.is-ink .art-cta-desc { color: var(--paper-72); }
.art-cta.is-ink h2 em { color: var(--accent); }
.art-cta.is-ink .art-cta-side { border-left-color: var(--paper-16); }

.art-rel { margin: clamp(48px, 7vw, 88px) 0; }
.art-rel-head {
  display: flex; align-items: end; justify-content: space-between; gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-12);
}
.art-rel-head h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.art-rel-all {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-56);
  transition: color .2s ease;
}
.art-rel-all:hover { color: var(--ink); }
.art-rel-list { display: flex; flex-direction: column; }
.art-rel-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  padding: 22px 4px;
  border-bottom: 1px solid var(--ink-12);
  transition: background .2s ease;
}
.art-rel-item:hover { background: var(--mute-2); }
.art-rel-item .ttl { font-size: clamp(18px, 2vw, 22px); line-height: 1.25; letter-spacing: -0.01em; }
.art-rel-item .go { font-size: 22px; color: var(--ink-32); transition: transform .2s ease, color .2s ease; }
.art-rel-item:hover .go { color: var(--ink); transform: translateX(4px); }

@media (max-width: 760px) {
  .art-cta { grid-template-columns: 1fr; }
  .art-cta-side { border-left: 0; border-top: 1px solid var(--ink-12); }
  .art-cta.is-ink .art-cta-side { border-top-color: var(--paper-16); }
  .art-body { font-size: 18px; }
  .art-body > p:first-child { font-size: 19px; }
}


.ai-head {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: end;
  padding: clamp(32px, 5vw, 48px) 0 clamp(24px, 3.5vw, 34px);
  border-bottom: 1px solid var(--ink-12);
  margin-bottom: 8px;
}
.ai-head h1 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 16ch;
}
.ai-head h1 em { font-style: italic; color: var(--primary); font-weight: 400; }
.ai-head .meta { display: flex; flex-direction: column; gap: 14px; }
.ai-head .lede {
  color: var(--ink-72);
  font-size: 18px;
  line-height: 1.55;
  max-width: 460px;
}

.ai-list {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--ink-12);
  margin-bottom: clamp(48px, 8vw, 88px);
}

.ai-item {
  display: grid;
  grid-template-columns: 172px 1fr auto;
  align-items: baseline;
  gap: 32px;
  padding: 26px 4px;
  border-top: 1px solid var(--ink-12);
  transition: background .2s ease;
}
.ai-item:first-child { border-top: 0; }
.ai-item:hover { background: var(--mute-2); }

.ai-item .date {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-56);
}

.ai-item-txt { display: flex; flex-direction: column; gap: 8px; }
.ai-item .ttl {
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 28ch;
}
.ai-item .ttl em { font-style: italic; color: var(--primary); font-weight: 400; }
.ai-item .desc {
  color: var(--ink-72);
  font-size: 17px;
  line-height: 1.5;
  max-width: 62ch;
}

.ai-item-aside {
  display: flex; align-items: center; gap: 20px;
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-56);
  white-space: nowrap;
}
.ai-item .go {
  font-size: 22px;
  color: var(--ink-32);
  transition: transform .2s ease, color .2s ease;
}
.ai-item:hover .go { color: var(--ink); transform: translateX(4px); }

.ai-empty {
  padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 8vw, 88px);
  border-top: 1px solid var(--ink-12);
  color: var(--ink-56);
  font-size: 19px;
}

@media (max-width: 760px) {
  .ai-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .ai-head .lede { font-size: 17px; }

  .ai-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
    .ai-item .date { order: -1; }
  .ai-item-aside {
    order: -1;
    justify-content: flex-end;
    margin-top: -19px;   }
  .ai-item .ttl { font-size: 23px; max-width: none; }
  .ai-item .desc { font-size: 16px; max-width: none; }
    .ai-item .go { display: none; }
}

.ai-intro {
  padding: clamp(22px, 3vw, 30px) 0 clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--ink-12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-72);
}
.ai-intro h2 {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
  margin-top: 10px;
}
.ai-intro > * { max-width: 72ch; }
.ai-intro > p:first-child { max-width: none; }

.ai-intro strong { color: var(--ink); font-weight: 600; }
.ai-intro a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(15, 95, 166, .32);
  text-underline-offset: 3px;
}
.ai-intro a:hover { text-decoration-color: var(--primary); }

/* Whole page is dark, unlike the rest of the site where .s-ink is the
   exception — paper is the default text color here, not a local override. */

.biz-body .mono { font-family: var(--font-mono); }

.biz-body { background: var(--ink); color: var(--paper); }
.biz-body em { font-style: italic; font-weight: 400; color: var(--accent); }
.biz-body .brand em { color: inherit; }

.biz-body .btn-ghost { color: var(--paper); border-color: var(--paper-32); }
.biz-body .btn-ghost:hover { border-color: var(--paper); background: var(--paper-06); }

.biz-body .btn-accent { background: var(--accent); color: var(--ink); }
.biz-body .btn-accent:hover { background: #8ec2ee; }

.biz-body section.s { border-top: 1px solid var(--paper-16); }

.biz-body .topbar { background: rgba(10, 10, 10, 0.85); border-bottom-color: var(--paper-16); }
.biz-body .navlinks { color: var(--paper-72); }
.biz-body .navlinks a:hover { color: var(--paper); }
.biz-body .nav-toggle { border-color: var(--paper-16); }
.biz-body .nav-toggle-bar { background: var(--paper); }
.biz-body .navlinks a.nav-cta { color: var(--ink); }
.biz-body .navlinks a.active,
.biz-body .navlinks a[aria-current="page"] { color: var(--accent); }
.biz-body .navlinks a.active::after,
.biz-body .navlinks a[aria-current="page"]::after { background: var(--accent); }
@media (max-width: 960px) {
  .biz-body .navlinks { background: var(--ink); border-bottom-color: var(--paper-16); }
  .biz-body .navlinks a { border-bottom-color: var(--paper-06); color: var(--paper); }
  .biz-body .navlinks a.nav-slots { border-bottom-color: var(--paper-32); }
}

/* page_loader is cream (cosmetic.css) — on a dark page that is a full-screen
   flash for ~250ms before the fade-out. */
.biz-body #page-loader { background: var(--ink); }
.biz-body .loader-spin { border-color: var(--paper-16); border-top-color: var(--accent); }

.biz-hero { padding: clamp(32px, 6vw, 56px) 0 clamp(48px, 8vw, 80px); }
.biz-hero-tags { display: flex; flex-wrap: wrap; gap: 16px 28px; font-size: 13px; letter-spacing: 0.04em; color: var(--paper-72); margin-bottom: 32px; }
.biz-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 40px; align-items: center; }
.biz-hero h1 { font-size: clamp(40px, 8vw, 124px); line-height: 0.92; letter-spacing: -0.035em; }
.biz-hero-h1-sub { display: inline-block; font-size: 0.78em; }
.biz-hero-sub { margin-top: 26px; max-width: 620px; font-size: clamp(17px, 2vw, 22px); line-height: 1.45; color: var(--paper-72); }
.biz-hero-cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.biz-hero-img { display: flex; justify-content: flex-end; }
.biz-hero-img img { width: clamp(320px, 32vw, 400px); height: auto; display: block; }
@media (max-width: 760px) {
  .biz-hero-grid { grid-template-columns: 1fr; }
  .biz-hero-img { display: none; }
}

.biz-price { margin-top: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--paper-16); text-align: center; }
.biz-price-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.biz-price-item .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-56); margin-bottom: 8px; }
.biz-price-item .val { font-size: clamp(40px, 7vw, 88px); line-height: 1; letter-spacing: -0.025em; font-weight: 500; }
.biz-price-sep { position: relative; top: 12px; font-size: 44px; line-height: 1; color: var(--paper-16); }
.biz-price-note { margin-top: 14px; font-size: 13px; color: var(--paper-56); }
.biz-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 40px; border-top: 1px solid var(--paper-16); border-bottom: 1px solid var(--paper-16); }
.biz-metric { padding: 32px 24px 28px; text-align: center; border-right: 1px solid var(--paper-16); }
.biz-metric:last-child { border-right: 0; }
.biz-metric .val { font-size: clamp(28px, 5vw, 44px); line-height: 1; letter-spacing: -0.02em; font-weight: 500; }
.biz-metric .lbl { margin-top: 8px; font-size: 13px; color: var(--paper-56); }
@media (max-width: 420px) {
  .biz-price-row { gap: 20px; }
  .biz-metric { padding: 22px 8px 16px; }
}

.biz-cond-grid { display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid var(--paper-16); }
.biz-cond { grid-column: span 4; padding: 28px 28px 32px; border-bottom: 1px solid var(--paper-16); border-right: 1px solid var(--paper-16); }
.biz-cond:nth-child(3n) { border-right: 0; }
.biz-cond-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.biz-cond h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.1; margin: 14px 0 10px; }
.biz-cond p { font-size: 16px; color: var(--paper-72); }
@media (max-width: 760px) {
  .biz-cond-grid { grid-template-columns: repeat(2, 1fr); border-top: 0; }
  .biz-cond { grid-column: auto; padding: 22px 14px 24px; border-right: 1px solid var(--paper-16); }
  .biz-cond:nth-child(3n) { border-right: 1px solid var(--paper-16); }
  .biz-cond:nth-child(even) { border-right: 0; }
}
@media (max-width: 420px) {
  .biz-cond-grid { grid-template-columns: 1fr; }
  .biz-cond, .biz-cond:nth-child(3n), .biz-cond:nth-child(even) { grid-column: auto; border-right: 0; padding: 20px 0; }
}

.biz-trial-grid { display: grid; grid-template-columns: minmax(0, 1fr) 480px; grid-template-areas: "text num" "cta num"; gap: 40px 64px; align-items: center; }
.biz-trial-grid .lede { grid-area: text; max-width: 620px; font-size: 19px; line-height: 1.5; color: var(--paper-72); }
.biz-trial-num { grid-area: num; text-align: center; }
.biz-trial-num .big { font-size: clamp(72px, 14vw, 180px); line-height: 1; letter-spacing: -0.03em; font-weight: 500; }
.biz-trial-num .lbl { margin-top: 20px; font-size: 13px; letter-spacing: 0.06em; color: var(--paper-56); }
.biz-trial-cta { grid-area: cta; justify-self: start; }
@media (max-width: 760px) {
  .biz-trial-grid { grid-template-columns: 1fr; grid-template-areas: "text" "num" "cta"; gap: 24px; }
  .biz-trial-cta { justify-self: center; }
}

.biz-highlight {
  padding: 56px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 48px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.biz-highlight-num { text-align: center; }
.biz-highlight-num .big { font-size: clamp(60px, 10vw, 150px); line-height: 1; letter-spacing: -0.03em; font-weight: 500; color: var(--accent); font-variant-numeric: tabular-nums; }
.biz-highlight-num .lbl { margin-top: 12px; font-size: 13px; letter-spacing: 0.06em; color: var(--paper-56); }
.biz-highlight h3 { font-size: clamp(26px, 4vw, 44px); line-height: 1.05; letter-spacing: -0.025em; max-width: 640px; }
.biz-highlight:not(.is-plain) h3 { text-align: left; margin-left: 15%; }
.biz-highlight-cta { margin-top: 24px; }
.biz-highlight.is-plain > div { text-align: center; }
.biz-highlight.is-plain h3 { white-space: nowrap; max-width: none; }
.biz-highlight.is-plain { border: 0; padding: 0; margin-top: 48px; grid-template-columns: auto auto; justify-content: center; }
@media (max-width: 760px) {
  .biz-highlight { grid-template-columns: 1fr; padding: 28px; text-align: center; }
  .biz-highlight h3 { text-align: left; max-width: none; }
  .biz-highlight.is-plain { grid-template-columns: 1fr; }
  .biz-highlight.is-plain h3 { white-space: normal; text-align: center; }
}

.biz-g-grid { margin-top: 40px; border: 1px solid var(--paper-16); display: grid; grid-template-columns: 1fr 1fr; }
.biz-g-item { padding: 40px; border-right: 1px solid var(--paper-16); }
.biz-g-item:last-child { border-right: 0; }
.biz-g-item .big { font-size: 72px; line-height: 1; font-weight: 500; color: var(--accent); }
.biz-g-item .big.is-text { font-size: clamp(40px, 6vw, 64px); line-height: 1.1; }
.biz-g-item h3 { margin-top: 16px; font-size: 26px; line-height: 1.15; }
.biz-g-item p { margin-top: 10px; font-size: 16px; color: var(--paper-72); }
.biz-g-note { margin-top: 24px; font-size: 13px; line-height: 1.6; color: var(--paper-56); max-width: 900px; }
@media (max-width: 760px) {
  .biz-g-grid { grid-template-columns: 1fr; }
  .biz-g-item { border-right: 0; border-bottom: 1px solid var(--paper-16); }
  .biz-g-item:last-child { border-bottom: 0; }
}

.biz-steps { border-top: 1px solid var(--paper-16); }
.biz-step { display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--paper-16); }
.biz-step:last-child { border-bottom: 0; }
.biz-step-num { font-family: var(--font-display); font-size: 56px; line-height: 1; letter-spacing: -0.03em; font-weight: 500; color: var(--accent); font-variant-numeric: tabular-nums; }
.biz-step .who { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-56); margin-bottom: 8px; }
.biz-step .who.is-us { color: var(--accent); }
.biz-step h3 { font-size: 26px; line-height: 1.15; }
.biz-step p { margin-top: 8px; font-size: 16px; color: var(--paper-72); }
@media (max-width: 760px) {
  .biz-step { grid-template-columns: 1fr; gap: 6px; }
}

.biz-body .trust-case .tc-tag { border: 0; padding: 0; }
.biz-body .tc-desc { margin-top: 4px; font-size: 16px; line-height: 1.5; color: var(--paper-72); }

.biz-body .review { background: var(--ink); border-color: var(--paper-16); }
.biz-body .review .stars { color: var(--accent); }
.biz-body .review blockquote { color: var(--paper); }
.biz-body .rev-carousel:not([data-clip="gradient"]) .review.is-clipped .q::after {
  color: var(--paper);
  background: linear-gradient(to right, rgba(10, 10, 10, 0), var(--ink) 16px);
}
.biz-body .review .who { border-top-color: var(--paper-16); }
.biz-body .review-date { color: var(--paper-72); }
.biz-body .rev-arrow { border-color: var(--paper-16); background: var(--ink); color: var(--paper); }
.biz-body .rev-arrow:not(:disabled):hover { border-color: var(--paper-32); }
.biz-body .rev-dots button { background: var(--paper-16); }
.biz-body .rev-dots button.active { background: var(--accent); }
.biz-body .rev-count { color: var(--paper-56); }
.biz-body .rev-count b { color: var(--paper); }

.biz-cta { text-align: center; }
.biz-cta h2 { font-size: clamp(40px, 6vw, 78px); line-height: 0.98; letter-spacing: -0.025em; }
.biz-cta .lede { margin: 24px auto 0; max-width: 560px; font-size: 19px; line-height: 1.5; color: var(--paper-72); }
.biz-cta-btn { margin-top: 48px; }
.biz-cta-btn .btn { padding: 22px 52px; font-size: 22px; border-radius: 6px; }
.biz-cta-email { margin-top: 20px; font-size: 14px; color: var(--paper-56); }
.biz-cta-email a { color: var(--accent); }
.biz-cta-note { margin: 40px auto 0; max-width: 640px; font-size: 13px; line-height: 1.6; color: var(--paper-56); padding-top: 28px; border-top: 1px solid var(--paper-16); }

.biz-body footer { border-top-color: var(--paper-16); }
.biz-body .foot-grid h5 { color: var(--paper-56); }
.biz-body .foot-grid a { color: var(--paper-72); }
.biz-body .foot-grid a:hover { color: var(--paper); }
.biz-body .foot-brand p { color: var(--paper-72); }
.biz-body .foot-bottom { border-top-color: var(--paper-16); color: var(--paper-56); }

.biz-body .faq-list, .biz-body .faq-item { border-color: var(--paper-16); }
.biz-body .faq-item summary .plus::before,
.biz-body .faq-item summary .plus::after { background: var(--paper); }
.biz-body .faq-item .ans, .biz-body .faq-aside p { color: var(--paper-72); }

.is-hidden { display: none !important; }

.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.field-fieldset legend {
  padding: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-56);
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-card {
  background: var(--paper);
  border: 1px solid var(--ink-12);
  border-radius: var(--rad-lg);
  padding: 36px;
}
.form-card h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-card .sub {
  color: var(--ink-72);
  margin-bottom: 28px;
}

.field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-56);
}
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-32);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--paper);
  border: 1px solid var(--ink-32);
  border-radius: var(--rad);
  padding: 12px 44px 12px 14px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: border-color .2s ease;
}
.field select:hover { border-color: var(--ink); }
.field select:focus { border-color: var(--primary); }
.field select option { background: var(--paper); color: var(--ink); padding: 8px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-32); }
.field input:focus, .field textarea:focus { border-bottom-color: var(--primary); }
.field textarea { resize: vertical; }

.textarea-wrap textarea { width: 100%; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-primary {
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, opacity .4s ease;
}
.btn-primary.is-warming,
.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form-card .submit {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.channels {
  display: flex; flex-direction: column;
  gap: 18px;
}
.channel {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--ink-12);
  align-items: flex-start;
  transition: padding .2s ease;
}
.channel:last-child { border-bottom: 1px solid var(--ink-12); }
.channel:hover { padding-left: 8px; }
.channel .num { width: 28px; flex-shrink: 0; padding-top: 4px; }
.channel .body { flex: 1; }
.channel h4 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  margin-bottom: 4px;
}
.channel p { color: var(--ink-72); font-size: 16px; }
.channel .handle {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--primary);
}
@media (max-width: 1024px) {
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .form-card { order: 0; max-width: 640px; width: 100%; margin: 0 auto; }
  .channels { order: 1; max-width: 640px; width: 100%; margin: 0 auto; }
}
@media (max-width: 760px) {
  .form-card { padding: 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 420px) {
  .form-card { padding: 18px; }
  .radio-group { gap: 18px; }
  .channel { gap: 14px; padding: 18px 0; }
  .channel .num { width: 22px; }
}

.radio-group {
  display: flex;
  gap: 28px;
  padding: 8px 0 4px;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 17px;
  color: var(--ink);
  user-select: none;
}
.radio-opt input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.req-mark {
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 14px;
}

.sel { position: relative; }
.sel > select {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; pointer-events: none;
}
.field select,
.sel-btn {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-72) 50%),
    linear-gradient(-45deg, transparent 50%, var(--ink-72) 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.sel-btn {
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--ink-32);
  border-radius: var(--rad);
  padding: 12px 44px 12px 14px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease;
}
.sel-btn:hover { border-color: var(--ink); }
.sel-btn:focus { outline: none; border-color: var(--primary); }
.sel-btn.is-placeholder { color: var(--ink-32); }
.sel-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  margin: 0; padding: 6px;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--ink-32);
  border-radius: var(--rad);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.18);
  z-index: 20;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.sel.is-open .sel-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sel-opt {
  padding: 10px 12px;
  border-radius: calc(var(--rad) - 4px);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .15s ease;
}
.sel-opt:hover { background: var(--ink-06, rgba(0,0,0,.05)); }
.sel-opt.is-sel { background: var(--ink-12); }

.ch-input-wrap { position: relative; min-height: 44px; }
.ch-input-wrap input {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, border-color .2s ease;
}
.ch-input-wrap input.is-active { opacity: 1; pointer-events: auto; }

.char-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-56);
  align-self: flex-end;
  transition: color .2s ease;
}
.char-counter--warn { color: var(--secondary); }
.char-counter--crit { color: var(--color-error); }

.form-error {
  font-size: 14px;
  color: var(--color-error);
  flex: 1;
}

.form-success {
  padding: 48px 16px;
  text-align: center;
}
.form-success p {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-success__sub {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--ink-72);
}

.manager-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.manager-badge__label {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.manager-badge__name {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--primary);
}

@keyframes selFlash {
  0%, 100%  { border-color: var(--ink-32); }
  15%, 70%  { border-color: var(--ink); }
}
.sel-btn--flash { animation: selFlash 1.5s ease; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 128px;
}
.faq-aside h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
}
.faq-aside p {
  color: var(--ink-72);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.faq-aside-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.faq-list { border-top: 1px solid var(--ink-12); }
.faq-item { border-bottom: 1px solid var(--ink-12); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .num { font-size: 12px; width: 28px; }
.faq-item summary .plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .2s ease;
}
.faq-item summary .plus::before {
  width: 22px; height: 1.5px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
.faq-item summary .plus::after {
  width: 1.5px; height: 22px;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.faq-item[open] summary .plus::after {
  transform: translateX(-50%) rotate(90deg);
}

@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    block-size: 0;
    overflow: clip;
    transition: block-size .35s ease, content-visibility .35s ease allow-discrete;
  }
  .faq-item[open]::details-content { block-size: auto; }
}

.faq-item .ans {
  padding: 0 0 28px 52px;
  color: var(--ink-72);
  font-size: 19px;
  max-width: 60ch;
  line-height: 1.6;
}

.faq-item summary > span { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-aside { position: static; }
  .faq-item summary { font-size: 19px; gap: 16px; }
  .faq-item .ans { padding-left: 44px; }
}
@media (max-width: 420px) {
  .faq-item summary { font-size: 16px; gap: 10px; padding: 16px 0; }
  .faq-item summary .num { width: 22px; font-size: 11px; }
  .faq-item summary .plus { width: 18px; height: 18px; }
  .faq-item summary .plus::before { width: 18px; }
  .faq-item summary .plus::after { height: 18px; }
  .faq-item .ans { padding-left: 32px; font-size: 16px; }
}


footer {
  border-top: 1px solid var(--ink-12);
  padding: 56px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-grid h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-56);
  margin: 0 0 16px;
  font-weight: 500;
}
.foot-grid ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.foot-grid a {
  color: var(--ink-72);
  font-size: 16px;
  transition: color .2s ease;
}
.foot-grid a:hover { color: var(--ink); }

.foot-brand p {
  color: var(--ink-72);
  margin-top: 12px;
  max-width: 320px;
  font-size: 15px;
}

.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-12);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--ink-56);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 16px;
}

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { margin-top: 36px; }
}

.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.hero-logo img {
  width: clamp(320px, 32vw, 400px);
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo { display: none; }
}

.hero-tag {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  align-items: center;
  margin-bottom: 32px;
  color: var(--ink-72);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
}
.hero h1 .it {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}
.hero h1 .h1-sub {
  display: block;
  margin-top: 22px;
  max-width: 18ch;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink-72);
}

.hero-sub {
  margin-top: 28px;
  max-width: 640px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-72);
}
.hero-cta {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}
.hero-stat {
  padding: 24px 24px;
  border-right: 1px solid var(--ink-12);
  text-align: center;
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .v {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .l {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-56);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .hero-cta { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-right: 0; padding: 18px 12px; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--ink-12); }
}
@media (max-width: 420px) {
  .hero { padding: 36px 0 48px; }
  .hero-tag { gap: 10px 14px; font-size: 12px; }
  .hero-stats { margin-top: 40px; }
  .hero-stat { padding: 14px 8px; }
  .hero-cta .btn { padding: 11px 16px; font-size: 15px; }
}

.notfound { text-align: center; }
.notfound .eyebrow { margin-bottom: 16px; }
.notfound h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.notfound p {
  max-width: 480px;
  margin: 0 auto 32px;
  color: var(--ink-72);
  font-size: 17px;
}

#problems .s-head { grid-template-columns: repeat(12, 1fr); }
#problems .s-head h2   { grid-column: span 8; }
#problems .s-head .meta { grid-column: span 4; }
@media (max-width: 760px) {
  #problems .s-head { grid-template-columns: 1fr; }
  #problems .s-head h2,
  #problems .s-head .meta { grid-column: 1 / -1; }
}

.problems {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-12);
}
.prob {
  grid-column: span 4;
  padding: 28px 28px 32px 0;
  border-bottom: 1px solid var(--ink-12);
  border-right: 1px solid var(--ink-12);
  position: relative;
}
.prob:nth-child(3n)   { border-right: 0; padding-right: 0; padding-left: 28px; }
.prob:nth-child(3n+1) { padding-left: 0; }
.prob:nth-child(3n+2) { padding-left: 28px; }
.prob.featured {
  grid-column: span 8;
  background: var(--ink);
  color: var(--paper);
  padding: 36px 36px 40px;
  border-right: 0;
  border-bottom-color: var(--ink);
}
.prob.featured h3 { font-size: 32px; line-height: 1.12; max-width: 20ch; color: var(--paper); }
.prob.featured p { color: var(--paper-72); font-size: 18px; max-width: 52ch; }
.prob.featured .num { color: var(--accent); }
.prob h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  margin: 14px 0 10px;
  font-weight: 500;
}
.prob p { color: var(--ink-72); font-size: clamp(15px, 1.4vw, 17px); }
.prob .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 760px) {
  .problems { grid-template-columns: repeat(2, 1fr); }
  .prob,
  .prob:nth-child(3n),
  .prob:nth-child(3n+1),
  .prob:nth-child(3n+2) {
    grid-column: auto;
    padding: 22px 14px 24px;
    border-right: 1px solid var(--ink-12);
  }
  .prob:nth-child(odd)  { padding-left: 0;  padding-right: 14px; }
  .prob:nth-child(even) { padding-left: 14px; padding-right: 0; border-right: 0; }
  .prob h3 { font-size: 19px; max-width: none; margin: 10px 0 8px; }
  .prob p  { font-size: 14.5px; line-height: 1.45; }
  .prob .num { font-size: 40px; margin-bottom: 10px; }
  .prob.featured {
    grid-column: 1 / -1;
    padding: 28px 24px;
    border-right: 0;
  }
  .prob.featured h3 { font-size: 24px; }
}
@media (max-width: 420px) {
  .problems { grid-template-columns: 1fr; }
  .prob,
  .prob:nth-child(odd),
  .prob:nth-child(even) {
    grid-column: auto;
    padding: 18px 0;
    border-right: 0;
  }
}

.prob-callout {
  margin-top: 56px;
  background: var(--ink);
  color: var(--paper);
  padding: 36px 40px;
  border-radius: var(--rad-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.prob-callout .big {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--secondary);
}
.prob-callout p {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.4;
  color: var(--paper-85);
  max-width: 580px;
}
@media (max-width: 760px) {
  .prob-callout { grid-template-columns: 1fr; padding: 28px; }
}
@media (max-width: 420px) {
  .prob-callout { padding: 22px; gap: 16px; }
}

.rev-carousel { --rev-gap: 16px; --rev-per: 3; }

.rev-viewport {
  overflow: hidden;
  /* headroom so a card's focus ring is not clipped */
  margin: -3px;
  padding: 3px;
}

.rev-track {
  display: flex;
  gap: var(--rev-gap);
  will-change: transform;
  transition: transform .38s cubic-bezier(.22, .61, .36, 1);
  touch-action: pan-y;
}
.rev-carousel.is-dragging .rev-track { transition: none; cursor: grabbing; }
.rev-carousel[data-anim="fade"] .rev-track { transition: opacity .17s ease; }
.rev-carousel[data-anim="fade"].is-dragging .rev-track { transition: none; }

@media (prefers-reduced-motion: reduce) {
  .rev-track { transition: none !important; }
}

.review {
  flex: 0 0 calc((100% - (var(--rev-per) - 1) * var(--rev-gap)) / var(--rev-per));
  /* Fixed so cards do not jump with quote length.
     364 = 52 padding + 44 stars + 186.2 text (7 lines) + 24 gap + 57 byline */
  height: 364px;
  background: var(--paper);
  border: 1px solid var(--ink-12);
  border-radius: var(--rad);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.review .stars {
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  flex: none;
}

/* Exactly 7 lines tall, so the clip always lands on a line boundary. */
.review .q {
  position: relative;
  flex: none;
  height: calc(19px * 1.4 * 7);
  overflow: hidden;
  margin-bottom: 24px;
}

.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
}

/* .is-clipped is set by reviews.js after measuring. */
.rev-carousel:not([data-clip="gradient"]) .review.is-clipped .q::after {
  content: "…";
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 18px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  background: linear-gradient(to right, rgba(246, 242, 232, 0), var(--paper) 16px);
  pointer-events: none;
}

/* Short quotes set larger so the card does not look empty.
   .is-short comes from the template, not from JS. */
.rev-carousel[data-short="on"] .review.is-short blockquote {
  font-size: 24px;
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.rev-carousel[data-short="on"] .review.is-short.is-clipped .q::after { font-size: 24px; line-height: 1.32; }

.rev-carousel[data-clip="gradient"] .review .q { height: calc(19px * 1.4 * 7 + 9px); }
.rev-carousel[data-clip="gradient"] .review.is-clipped .q::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(246, 242, 232, 0), var(--paper) 78%);
  pointer-events: none;
}

.review .who {
  flex: none;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-12);
}
.review .avatar {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--mute);
  display: grid; place-items: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-72);
  font-size: 14px;
}
.review .avatar img { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; }
.review .who .meta { flex: 1 1 auto; min-width: 0; }
.review .who .name {
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date { font-size: 12px; color: var(--ink-72); }

.rev-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.rev-carousel.js .rev-nav { display: flex; }

.rev-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink-12);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color .2s ease, opacity .2s ease;
}
.rev-arrow:disabled { opacity: .32; cursor: default; }
.rev-arrow:not(:disabled):hover { border-color: var(--ink-32); }

.rev-dots { display: flex; gap: 8px; }
.rev-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--ink-12);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.rev-dots button.active { background: var(--primary); transform: scale(1.15); }

.rev-count {
  display: none;
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-56);
}
.rev-count b { color: var(--ink); font-weight: 400; }

@media (max-width: 1024px) {
  .rev-carousel { --rev-per: 2; }
}
@media (max-width: 640px) {
  .rev-carousel { --rev-per: 1; --rev-gap: 12px; }
  .review { height: 320px; padding: 22px 22px 20px; }
  .review blockquote { font-size: 18px; }
  .review .q { height: calc(18px * 1.4 * 6); }
  .rev-carousel[data-clip="gradient"] .review .q { height: calc(18px * 1.4 * 6 + 9px); }
  .rev-carousel:not([data-clip="gradient"]) .review.is-clipped .q::after { font-size: 18px; }
  .rev-carousel[data-short="on"] .review.is-short blockquote { font-size: 22px; }
  .rev-arrow, .rev-dots { display: none; }
  .rev-count { display: block; }
  .rev-nav { margin-top: 18px; }
}

.rev-carousel:not(.js) .rev-viewport { overflow: visible; }
.rev-carousel:not(.js) .rev-track { flex-wrap: wrap; }
.rev-carousel:not(.js) .review:nth-child(n + 4) { display: none; }

.rev-foot {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--ink-12);
  flex-wrap: wrap;
  gap: 16px;
}
.rev-foot .agg { font-family: var(--font-display); font-size: 20px; }
.rev-foot .agg .big {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-right: 6px;
}
.rev-foot .agg .muted { color: var(--ink-72); }

section.s { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
section.s.s-mute { background: var(--mute); }
section.s.s-ink  { background: var(--ink); color: var(--paper); }
section.s.s-ink .eyebrow { color: var(--paper-56); }
section.s.s-ink .eyebrow::before { background: var(--paper-32); }
section.s.s-ink .rule { border-color: var(--paper-16); }
section.s.s-ink .num { color: var(--paper-56); }

.s-head {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-12);
  margin-bottom: clamp(32px, 5vw, 56px);
}
section.s.s-ink .s-head { border-bottom-color: var(--paper-16); }
.s-head h2 {
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.s-head h2 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}
section.s.s-ink .s-head h2 em { color: var(--accent); }
.s-head .lede {
  color: var(--ink-72);
  font-size: 18px;
  max-width: 460px;
}
section.s.s-ink .s-head .lede { color: var(--paper-72); }
.s-head .meta { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 760px) {
  .s-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

.svc-sub { font-size: .7em; color: var(--ink-56); font-style: italic; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-12);
  border-left: 1px solid var(--ink-12);
}
.svc {
  grid-column: span 4;
  padding: 28px 28px 32px;
  border-bottom: 1px solid var(--ink-12);
  border-right: 1px solid var(--ink-12);
  background: var(--paper);
  display: flex; flex-direction: column;
  min-height: 280px;
  position: relative;
  transition: background .2s ease, box-shadow .2s ease;
}
.svc:hover { background: var(--mute-2); box-shadow: 0 4px 20px rgba(10,10,10,.08); }
.svc.featured {
  grid-column: span 8;
  background: var(--ink);
  color: var(--paper);
  min-height: 360px;
}
.svc.featured:hover { background: var(--ink-2); box-shadow: inset 0 0 0 1px rgba(111,178,232,.2); }
.svc.featured .num,
.svc.featured p { color: var(--paper-72); }
.svc.featured h3 em { color: var(--accent); }

.svc .num { display: flex; justify-content: space-between; align-items: center; }
.svc .num .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--secondary);
  text-transform: uppercase;
  border: 1px solid var(--secondary);
  padding: 3px 8px;
  border-radius: 2px;
}

.svc h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  font-weight: 500;
  margin: 18px 0 10px;
  max-width: 18ch;
}
.svc.featured h3 { font-size: clamp(28px, 4vw, 44px); max-width: 14ch; line-height: 1.05; letter-spacing: -0.02em; }
.svc h3 em { font-style: italic; color: var(--primary); font-weight: 400; }
.svc p {
  color: var(--ink-72);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.svc .price {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-12);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-72);
}
.svc.featured .price { border-top-color: var(--paper-16); color: var(--paper-72); }
.svc .price .from {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  font-feature-settings: "lnum","tnum";
  font-weight: 500;
}
.svc.featured .price .from { color: var(--paper); }

.price-pre {
  font-family: var(--font-mono);
  font-size: 11px;
  vertical-align: super;
  color: var(--ink-56);
  letter-spacing: 0.04em;
  margin-right: 5px;
}
.svc.featured .price .price-pre { color: var(--paper-56); }
.price-lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-56);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.svc.featured .price .price-lbl { color: var(--paper-56); }
.price-note {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.svc.featured .price .price-note { color: var(--accent); }

@media (max-width: 1024px) {
  .svc { grid-column: span 6; min-height: 240px; }
  .svc.featured { grid-column: span 12; }
  .svc-grid > .svc:last-child { grid-column: span 12; }
}
@media (max-width: 760px) {
  .svc, .svc.featured { grid-column: span 12; min-height: 0; padding: 22px; }
}
@media (max-width: 420px) {
  .svc, .svc.featured { padding: 18px; }
}

.svc-go {
  position: absolute;
  right: 24px;
  bottom: 26px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
  z-index: 2;
}
.svc-go span { display: block; transition: transform .2s ease; }
.svc:hover .svc-go span { transform: translateX(5px); }

.svc.featured .svc-go { color: var(--paper); }
.svc.featured:hover .svc-go { color: var(--accent); }

@media (max-width: 760px) {
  .svc-go { right: 18px; bottom: 20px; font-size: 28px; }
}

.spb-hero { container-type: inline-size; }

.spb-head { margin-bottom: clamp(28px, 4cqw, 44px); }
.spb-head h1 {
  margin: 16px 0 0;
  font-size: clamp(40px, 5.4cqw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.spb-head h1 em { font-style: italic; font-weight: 400; color: var(--primary); }
.spb-head .lede { margin: 16px 0 0; max-width: 640px; font-size: 19px; line-height: 1.5; color: var(--ink-72); }
.spb-head .lede-note { margin: 10px 0 0; max-width: 640px; font-family: var(--font-mono); font-size: 14px; line-height: 1.5; color: var(--ink-56); }
.spb-head .lede-note a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(15, 95, 166, .32); text-underline-offset: 3px; }
.spb-head .lede-note a:hover { text-decoration-color: var(--primary); }

.spb-panel {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--ink-12);
  border-radius: var(--rad-lg);
  overflow: hidden;
}

.spb-data { flex: 999 1 560px; min-width: 0; padding: clamp(28px, 4cqw, 44px); background: var(--paper); }

.spb-data-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: clamp(28px, 4cqw, 40px);
  border-bottom: 1px solid var(--ink-12);
}

.spb-total {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(72px, 9cqw, 128px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-feature-settings: "lnum", "tnum";
  color: var(--primary);
}
.spb-data.is-empty .spb-total { color: var(--ink-32); }
.spb-total-lbl {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-56);
  margin-top: 8px;
}

.spb-dates { display: flex; flex-direction: column; gap: clamp(22px, 3cqw, 30px); margin-top: clamp(22px, 3cqw, 30px); }
.spb-data.is-loading .spb-dates,
.spb-data.is-empty .spb-dates { display: none; }
.spb-data.is-loading .spb-empty { display: none; }
.spb-data:not(.is-empty) .spb-empty { display: none; }

.spb-month-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-12);
  white-space: nowrap;
  gap: 12px;
  font-family: var(--font-mono);
}
.spb-month-name { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.spb-month-total { font-size: 13px; color: var(--ink-56); }

.spb-month-rows { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0 32px; }
.spb-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-06);
  font-family: var(--font-mono);
  font-size: 15px;
  white-space: nowrap;
  gap: 12px;
  color: var(--ink);
}
.spb-row[data-zero] { color: var(--ink-32); }
.spb-row .spb-wd { font-size: 13px; color: var(--ink-56); }
.spb-row[data-zero] .spb-wd { color: var(--ink-32); }
.spb-row [data-n] { font-feature-settings: "tnum"; }

.spb-empty {
  margin-top: clamp(22px, 3cqw, 30px);
  padding: 28px 0;
  background-image: repeating-linear-gradient(45deg, var(--ink-06) 0px, var(--ink-06) 1px, transparent 1px, transparent 8px);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-72);
  max-width: 46ch;
}

.spb-info {
  flex: 1 1 340px;
  min-width: 280px;
  padding: clamp(24px, 3.5cqw, 36px);
  background: var(--mute-2);
  display: flex;
  flex-direction: column;
}
.spb-addr { margin: 16px 0 0; font-size: 21px; font-weight: 500; line-height: 1.25; }
.spb-addr-2 { margin: 6px 0 0; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em; color: var(--ink-72); }

.spb-hours { margin: 24px 0 0; padding-top: 24px; border-top: 1px solid var(--ink-12); display: flex; flex-direction: column; gap: 10px; }
.spb-hours-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; white-space: nowrap; font-family: var(--font-mono); }
.spb-hours-row span:first-child { font-size: 12px; letter-spacing: 0.08em; color: var(--ink-56); }
.spb-hours-row span:last-child { font-size: 14px; color: var(--ink); font-feature-settings: "tnum"; }
.spb-hours-row--off span:last-child { color: var(--ink-32); }

.spb-cta { margin-top: 28px; }
.spb-tg { margin: 16px 0 0; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.5; color: var(--ink-56); }
.spb-tg a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(15, 95, 166, .32); text-underline-offset: 3px; }
.spb-tg a:hover { text-decoration-color: var(--primary); }

@keyframes slotFlash {
  0%   { background: rgba(15,95,166,.16); }
  100% { background: rgba(15,95,166,0); }
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .25; }
}

.s-head h1 {
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.s-head h1 em { font-style: italic; color: var(--primary); font-weight: 400; }

.lede-full {
  max-width: 820px;
  color: var(--ink-72);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.slots-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0 25px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.slots-status::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary);
}
.slots-status[data-state="reconnecting"]::before {
  background: var(--secondary);
  animation: liveBlink 1s ease-in-out infinite;
}
.slots-status[data-state="stale"]::before {
  background: transparent;
  border: 1.5px solid var(--ink-32);
}

.slot-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 32px;
  background: var(--paper);
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  transition: background .2s ease, box-shadow .2s ease;
}
.slot-card:hover { background: var(--mute-2); box-shadow: 0 4px 20px rgba(10,10,10,.08); }

.slots-grid.is-stale .slot-card {
  --ink-72: rgba(10,10,10,1);
  --ink-56: rgba(10,10,10,.95);
  --ink-32: rgba(10,10,10,.72);
  --ink-06: rgba(10,10,10,.10);
  opacity: .6;
}

.slot-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px 40px;
  align-items: end;
}
.slot-head h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.1; font-weight: 500; margin: 0; }
.slot-head h2 .city-link:hover { text-decoration: underline; text-decoration-color: var(--ink-32); text-underline-offset: 4px; }
.slot-head .desc { margin-top: 8px; color: var(--ink-72); font-size: 16px; line-height: 1.45; max-width: 62ch; }

.slot-total { text-align: right; }
.slot-total .n {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: "lnum","tnum";
  padding: 2px 8px;
  margin: -2px -8px;
  border-radius: 3px;
}
.slot-card.is-empty .slot-total .n { color: var(--ink-32); }
.slot-total .lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-56);
  margin-top: 6px;
}

.slot-note {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-72);
}
.slot-card:not(.is-loading):not(.is-empty) .slot-note { display: none; }

.slot-dates {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 20px;
  margin-top: 26px;
}
.slot-card.is-loading .slot-dates,
.slot-card.is-empty .slot-dates { display: none; }

.d-month {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-56);
  padding: 20px 0 6px;
  border-bottom: 1px solid var(--ink-12);
}
.d-month:first-child { padding-top: 0; }

.d-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid var(--ink-06);
  font-family: var(--font-mono);
  font-size: 13px;
  font-feature-settings: "tnum";
  color: var(--ink-56);
  line-height: 1.4;
  white-space: nowrap;
}
.d-row[data-zero] [data-n],
.d-row[data-zero] [data-d] { color: var(--ink-32); }
.d-row .d-sep { color: var(--ink-32); }
.d-row [data-d], .d-row [data-n] { color: var(--ink); }
.d-row [data-delta] {
  font-size: 13px;
  color: var(--ink-56);
  margin-left: 7px;
  opacity: 0;
  transition: opacity .7s ease;
}

.slot-more {
  display: none;
  align-self: flex-start;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink-32);
  border-radius: var(--rad);
  padding: 9px 14px;
  cursor: pointer;
}
.slot-more:hover { border-color: var(--ink); background: var(--ink-06); }

.slot-card.is-empty .slot-head {
  background: repeating-linear-gradient(45deg, rgba(10,10,10,.055) 0 1px, transparent 1px 8px);
}

.slots-foot-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-56);
  max-width: 820px;
}

@media (max-width: 1300px) { .slot-dates { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .slot-dates { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) {
  .slot-card { padding: 22px; }
  .slot-head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .slot-total { text-align: left; }
  .slot-dates { grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
}
@media (max-width: 560px) { .slot-dates { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .slot-card { padding: 18px; } }

.btn.slots-tg-btn { gap: 9px; white-space: nowrap; }
.slots-tg-glyph {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.slots-tg {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 48px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: 30px 30px 32px;
  margin-bottom: 28px;
}
.slots-tg .eyebrow { color: var(--paper-56); }
.slots-tg .eyebrow::before { background: var(--paper-32); }
.slots-tg h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 14px 0 10px;
}
.slots-tg h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.slots-tg p {
  color: var(--paper-72);
  font-size: 17px;
  line-height: 1.5;
  max-width: 56ch;
}
.slots-tg-act {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.slots-tg-handle {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--paper-56);
}
.slots-tg .btn-light { border-color: transparent; }
.slots-tg .btn-light:hover { background: #fff; border-color: transparent; }

@media (max-width: 900px) {
  .slots-tg { grid-template-columns: 1fr; gap: 22px; }
  .slots-tg-act { align-items: flex-start; }
}
@media (max-width: 760px) {
  .slots-tg { padding: 22px; }
}
@media (max-width: 560px) {
  .slots-tg-act { align-self: stretch; }
  .slots-tg .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .slots-tg { padding: 18px; }
}

.slots-about {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--ink-12);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-72);
}
.slots-about h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
  margin-top: 28px;
}
.slots-about h2:first-child { margin-top: 0; }
.slots-about p { margin-top: 14px; }
.slots-about a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(15, 95, 166, .32);
  text-underline-offset: 3px;
}
.slots-about a:hover { text-decoration-color: var(--primary); }

.sol { display: block; }

.sol-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
}
.pillar {
  background: var(--paper);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .25s ease, box-shadow .25s ease;
}
.pillar:hover { background: var(--mute-2); box-shadow: 0 4px 20px rgba(10,10,10,.08); }

.pillar h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  min-height: 3.6em;
  text-wrap: balance;
}
.pillar p {
  color: var(--ink-72);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}
@media (max-width: 1024px) {
  .sol-pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar h4 { min-height: 0; }
}
@media (max-width: 760px) {
  .sol-pillars { grid-template-columns: 1fr; }
}

.vs-table {
  margin-top: 80px;
  border-top: 1px solid var(--ink-12);
}
.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--ink-12);
  font-size: 17px;
}
.vs-row.hd {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-56);
}
.vs-row.hd .col { padding: 14px 16px; }
.vs-row .col {
  padding: 18px 16px;
  border-right: 1px solid var(--ink-12);
}
.vs-row .col:last-child { border-right: 0; }
.vs-row .col.us { background: var(--paper); }
.vs-row .col.them { background: var(--mute); color: var(--ink-56); }
.vs-row .col.feat { font-family: var(--font-display); font-size: 17px; font-weight: 400; }

.vs-check {
  display: inline-block; width: 14px; height: 14px;
  border: 1.5px solid var(--primary); border-radius: 50%;
  vertical-align: -2px; margin-right: 8px; position: relative;
}
.vs-check::before {
  content: ""; position: absolute; left: 3px; top: 5px;
  width: 6px; height: 1.5px; background: var(--primary);
  transform: rotate(45deg); transform-origin: left center;
}
.vs-check::after {
  content: ""; position: absolute; left: 6px; top: 7px;
  width: 9px; height: 1.5px; background: var(--primary);
  transform: rotate(-45deg); transform-origin: left center;
}
.vs-x {
  display: inline-block; width: 14px; height: 14px;
  border: 1.5px solid var(--ink-32); border-radius: 50%;
  vertical-align: -2px; margin-right: 8px; position: relative;
}
.vs-x::before, .vs-x::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 7px; height: 1.5px; background: var(--ink-56);
}
.vs-x::before { transform: translate(-50%,-50%) rotate(45deg); }
.vs-x::after  { transform: translate(-50%,-50%) rotate(-45deg); }

@media (max-width: 760px) {
  .vs-table { margin-top: 48px; border-top: 0; }
  .vs-row.hd { display: none; }
  .vs-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--ink-12);
    border-radius: var(--rad);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .vs-row .col {
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--ink-12);
  }
  .vs-row .col:last-child { border-bottom: 0; }
  .vs-row .col.feat {
    background: var(--mute-2);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    padding: 12px 14px;
  }
  .vs-row .col.us   { background: var(--paper); color: var(--ink); }
  .vs-row .col.them { background: var(--paper); color: var(--ink-72); }
  .vs-row .col.us::before {
    content: 'Виза, сэр!';
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
  }
  .vs-row .col.them::before {
    content: 'Иначе';
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-56);
    margin-bottom: 6px;
  }
}

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper-85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--ink-12);
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 16px;
}

.brand-group {
  display: flex; align-items: center; gap: 22px;
  justify-self: start;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.brand em { font-style: italic; font-weight: 500; }

.nav-badge-biz {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-72);
  white-space: nowrap;
  margin-top: 4px;
  transition: color .2s ease;
}
.nav-badge-biz:hover { color: var(--ink); }
.nav-badge-biz[aria-current="page"] { color: var(--accent); }

.navlinks {
  display: flex; gap: 32px;
  font-size: 17px;
  color: var(--ink-72);
  justify-self: center;
}
.nav-cta, .nav-slots { display: none; }

.topbar-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }
.navlinks a:hover { color: var(--ink); }
.navlinks a {
  font-family: var(--font-body);
  font-feature-settings: "lnum";
  font-weight: 500;
}

.nav-drop { display: flex; }
.nav-drop > a { display: flex; align-items: center; }

.nav-drop-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
    background: rgba(246, 242, 232, .97);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--ink-12);
  box-shadow: 0 20px 40px rgba(10, 10, 10, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-drop-panel::before {
  content: "";
  position: absolute;
  top: -40px; left: 0; right: 0; height: 40px;
}

.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-drop-inner { padding-top: 24px; padding-bottom: 24px; }

.nav-drop-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 40px;
}
.nav-drop-items a {
  padding: 10px 8px;
  border-radius: var(--rad);
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background .2s ease, color .2s ease;
}
.nav-drop-items a:hover { background: var(--mute-2); color: var(--ink); }
.nav-drop-items a em { font-style: italic; font-weight: 400; }

.nav-drop-see-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--mute);
  font-weight: 600;
  color: var(--ink);
}
.nav-drop-see-all:hover { background: var(--mute-2); }
.nav-drop-see-all span { transition: transform .2s ease; }
.nav-drop-see-all:hover span { transform: translateX(4px); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ink-12);
  border-radius: var(--rad);
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 960px) {
  .navlinks {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    justify-self: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--ink-12);
    padding: 8px var(--gutter) 16px;
  }
  .navlinks.is-open { display: flex; }
  .navlinks a {
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-06);
    font-size: 18px;
    color: var(--ink);
  }
  .navlinks a:last-child { border-bottom: 0; }
    .nav-drop { display: block; }
  .nav-drop-panel { display: none; }
  .navlinks a.nav-cta,
  .navlinks a.nav-cta:hover,
  .navlinks a.nav-cta.active {
    display: inline-flex;
    justify-content: center;
    align-self: stretch;
    margin-top: 14px;
    color: var(--paper);
    border-bottom: 0;
    white-space: nowrap;
  }
  .navlinks a.nav-cta.active::after { content: none; }
  .navlinks a.nav-slots {
    display: inline-flex;
    justify-content: center;
    align-self: stretch;
    margin-top: 10px;
    border-bottom-color: var(--ink-32);
    white-space: nowrap;
  }
  .nav-toggle { display: inline-flex; grid-column: 3; justify-self: end; }
  .topbar-actions { display: none; }
}
@media (max-width: 420px) {
  .topbar-inner { padding: 14px var(--gutter); }
  .brand { font-size: 20px; }
  .nav-badge-biz { display: none; }
}

.trust-strip {
  margin: 24px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-12);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: var(--ink-72);
}
.trust-strip a { color: var(--ink-72); text-decoration: none; }
.trust-strip a:hover { color: var(--ink); }
.trust-strip .ts-sep { color: var(--ink-32); margin: 0 1px; }
.trust-strip .ts-stars { color: var(--secondary); }

.trust {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-lead { grid-column: span 5; }
.trust-lead h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.trust-lead h3 em { font-style: italic; color: var(--accent); font-weight: 400; }
.trust-lead p { margin-top: 22px; color: var(--paper-72); font-size: 18px; max-width: 460px; }

.trust-grid {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.trust-cell {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trust-cell .big {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
}
.trust-cell .lbl {
  margin-top: 12px;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--paper);
  line-height: 1.4;
}

.trust-case {
  grid-column: span 12;
  margin-top: 32px;
  border: 1px solid var(--paper-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.trust-case .tc-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trust-case .tc-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-case .tc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-56);
  border: 1px solid var(--paper-16);
  border-radius: 999px;
  padding: 5px 11px;
}
.trust-case .tc-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--paper);
}
.trust-case .tc-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.trust-case .tc-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.trust-case .tc-step {
  font-size: 17px;
  color: var(--paper-72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-case .tc-step::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.trust-case .tc-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--paper-85);
  border-left: 2px solid var(--paper-32);
  padding-left: 18px;
}
.trust-case .tc-result {
  border-left: 1px solid var(--paper-16);
  background: var(--paper-06);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.trust-case .tc-result .tc-rlabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-56);
  margin-bottom: 8px;
}
.trust-case .tc-result .tc-rbig {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--paper);
}
.trust-case .tc-result .tc-rsub {
  font-size: 17px;
  color: var(--paper-56);
  margin-top: 4px;
}
.trust-case .tc-result .tc-rmeta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--paper-16);
  display: flex;
  gap: 28px;
}
.trust-case .tc-rmeta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-case .tc-rmeta .k {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-32);
}
.trust-case .tc-rmeta .v {
  font-size: 20px;
  color: var(--paper);
}

@media (max-width: 1024px) {
  .trust-case { grid-template-columns: 1fr; }
  .trust-case .tc-body { padding: 28px 24px; }
  .trust-case .tc-result {
    border-left: 0;
    border-top: 1px solid var(--paper-16);
    padding: 28px 24px;
  }
}
@media (max-width: 760px) {
  .trust-lead, .trust-grid { grid-column: span 12; }
}
@media (max-width: 420px) {
  .trust { gap: 22px; }
  .trust-cell { padding: 0 12px; }
  .trust-case .tc-body, .trust-case .tc-result { padding: 22px 18px; }
  .trust-case .tc-rmeta { gap: 18px; flex-wrap: wrap; }
}

#page-loader{
  position:fixed;inset:0;z-index:9999;
  background:var(--paper);
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:28px;
  transition:opacity .55s ease
}
#page-loader.done{opacity:0;pointer-events:none}
.loader-spin{
  width:28px;height:28px;
  border:1.5px solid var(--ink-12);
  border-top-color:var(--primary);
  border-radius:50%;
  animation:loader-turn .75s linear infinite
}
@keyframes loader-turn{to{transform:rotate(360deg)}}

.reveal{opacity:0;transform:translateY(24px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:none}
.reveal.d1{transition-delay:.12s}
.reveal.d2{transition-delay:.24s}
.reveal.d3{transition-delay:.36s}
.reveal.d4{transition-delay:.48s}
.reveal.d5{transition-delay:.60s}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1!important;transform:none!important;transition:none!important}
}

.navlinks a{position:relative;transition:color .2s ease}
.navlinks a.active{color:var(--ink)}
.navlinks a.active::after{content:"";position:absolute;left:0;right:0;bottom:-4px;height:1px;background:var(--ink)}
.navlinks a[aria-current="page"]{color:var(--ink)}
.navlinks a[aria-current="page"]::after{content:"";position:absolute;left:0;right:0;bottom:-4px;height:1px;background:var(--ink)}

.vs-row .col{transition:background .2s ease}
.vs-row:not(.hd):hover .col.feat{background:var(--mute)}
.vs-row:not(.hd):hover .col.us{background:rgba(15,95,166,.08)}
.vs-row:not(.hd):hover .col.them{background:var(--mute-3)}

