:root {
  --bg: oklch(0.9676 0.0057 84.57);
  --bg-soft: oklch(0.9407 0.0086 84.57);
  --surface: oklch(1 0 0);
  --text: oklch(0.2059 0.0059 285.87);
  --muted: oklch(0.4991 0.0095 293.71);
  --line: oklch(0.8837 0.0134 82.4);
  --line-strong: oklch(0.8101 0.0183 81.32);
  --brand: oklch(0.2824 0.0666 273.14);
  --brand-2: oklch(0.3638 0.0963 273.78);
  --accent: oklch(0.525 0.1451 308.04);
  --accent-2: oklch(0.52 0.0784 189.73);
  --ok: oklch(0.5829 0.1356 155.56);
  --card-gap: 18px;
  --card-pad: 26px;
  --card-radius: 0px;
  --shadow-contact: 0 0 0 1px oklch(0.2824 0.0666 273.14 / .045), 0 1px 2px -1px oklch(0.2824 0.0666 273.14 / .12);
  --shadow-lift: 0 0 0 1px oklch(0.2824 0.0666 273.14 / .055), 0 2px 8px -5px oklch(0.2824 0.0666 273.14 / .18), 0 18px 42px -32px oklch(0.2824 0.0666 273.14 / .28);
  --shadow-action: 0 0 0 1px oklch(0.2824 0.0666 273.14 / .08), 0 8px 22px -14px oklch(0.2824 0.0666 273.14 / .42);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --focus-ring: color-mix(in oklch, var(--accent-2) 76%, oklch(1 0 0) 24%);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --header-control-height: 38px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.i18n-pending body { visibility: visible; }
html.i18n-ready body,
html:not(.i18n-pending) body { visibility: visible; }
html, body {
  max-width: 100%;
  overflow-x: clip;
}
/* biome-ignore lint/style/noDescendingSpecificity: Base body visibility follows i18n state selectors. */
body {
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(1200px 600px at 90% -10%, oklch(0.9383 0.0325 293.41) 0%, transparent 52%),
    radial-gradient(900px 500px at -10% 35%, oklch(0.5694 0.1451 308.04 / .08) 0%, transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 79px, oklch(0.2824 0.0666 273.14 / .03) 79px 80px),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
img {
  outline: 1px solid oklch(0 0 0 / .1);
  outline-offset: -1px;
}

.container { width: min(1160px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(140%) blur(7px);
  background: color-mix(in oklch, var(--bg) 86%, oklch(1 0 0) 14%);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
  pointer-events: none;
  box-shadow: 0 14px 28px -28px oklch(0.2824 0.0666 273.14 / .42);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo { height: 28px; width: auto; }
.logo-title {
  font-size: 1.08rem;
  letter-spacing: .02em;
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 18px;
}
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-dropdown { position: relative; }
.nav-links a:not(.btn-nav) {
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  padding: 11px 12px;
  border-radius: 0;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
.nav-links a.active {
  color: var(--text);
  background: var(--bg-soft);
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:not(.btn-nav):hover {
    color: var(--text);
    background: var(--bg-soft);
  }
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--line);
  z-index: 20;
  padding: 6px;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(.98);
  transform-origin: top left;
  transition: opacity .16s var(--ease-out), transform .16s var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 10px;
}

.btn-nav {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--header-control-height);
  border-radius: 0;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  padding: 0 15px;
  margin-left: 0;
  font-size: .87rem;
  font-weight: 700;
  line-height: 1;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-nav:hover { background: var(--brand); color: oklch(1 0 0); }
}

.btn-store-icon {
  width: var(--header-control-height);
  height: var(--header-control-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  text-decoration: none;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
.btn-store-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) and (pointer: fine) {
  .btn-store-icon:hover { background: var(--brand); color: oklch(1 0 0); }
}
.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  height: var(--header-control-height);
  font-size: .82rem;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  background: transparent;
  padding: 0;
  line-height: 1;
  overflow: hidden;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
.lang-switch a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: .04em;
  min-width: 38px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 8px;
}
.lang-switch span { display: none; }
.lang-switch a.active {
  color: oklch(1 0 0);
  background: var(--brand);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  color: var(--muted);
  padding: 0;
}
.nav-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 8px 0 14px;
}
.nav-mobile.open { display: flex; }
.nav-mobile > a:not(.btn-nav) {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: .93rem;
  padding: 10px 12px;
  border-radius: 0;
}
.nav-mobile > a.active:not(.btn-nav) { color: var(--text); background: var(--bg-soft); }
@media (hover: hover) and (pointer: fine) {
  .nav-mobile > a:not(.btn-nav):hover {
    color: var(--text);
    background: var(--bg-soft);
  }
}
.nav-mobile .btn-nav { margin: 8px 12px 0; }
.nav-mobile .lang-switch {
  margin: 8px 12px 0;
  width: fit-content;
}

.nav-mobile .lang-switch a.active {
  color: oklch(1 0 0);
  background: var(--brand);
}
.nav-mobile .nav-sub {
  padding-left: 24px;
  font-size: .86rem;
  color: oklch(0.6284 0.0145 82.39);
}
.nav-mobile-parent {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile-caret {
  font-size: .85rem;
  color: oklch(0.6284 0.0145 82.39);
  transition: transform .16s ease;
}
.nav-mobile-parent.is-open .nav-mobile-caret {
  transform: rotate(180deg);
}
.nav-mobile-submenu {
  display: flex;
  flex-direction: column;
}
.nav-mobile-submenu[hidden] {
  display: none !important;
}
.nav-mobile-submenu .nav-sub-overview {
  border-top: 1px dashed var(--line);
  margin-top: 2px;
  padding-top: 9px;
}
.nav-mobile-submenu .nav-sub {
  padding-left: 34px !important;
}

h1, h2, h3 { line-height: 1.14; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 6vw, 5.3rem); letter-spacing: -.032em; font-weight: 820; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.6rem); letter-spacing: -.02em; font-weight: 760; }
h3 { font-size: 1.09rem; letter-spacing: -.01em; font-weight: 700; }

.eyebrow {
  display: inline-block;
  text-transform: none;
  letter-spacing: .04em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.lead {
  color: var(--muted);
  font-size: clamp(.98rem, 1.8vw, 1.1rem);
  line-height: 1.68;
  max-width: 760px;
}
p, li, figcaption { text-wrap: pretty; }


.stack-offset-xs { margin-top: 8px; }
.stack-offset-sm { margin-top: 18px; }
.stack-offset-md { margin-top: 24px; }
.eyebrow-on-dark { color: oklch(1 0 0 / .78); }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
.lang-switch a:focus-visible,
.btn:focus-visible,
.btn-nav:focus-visible,
.btn-store-icon:focus-visible,
.addons-chip:focus-visible,
.addons-tab:focus-visible,
.pricing-tab:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.btn:active,
.btn-nav:active,
.btn-store-icon:active,
.addons-chip:active,
.addons-tab:active,
.pricing-tab:active {
  transform: scale(.96);
}

.grad-text {
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0;
  border: 1px solid transparent;
  padding: 11px 20px;
  font-size: .92rem;
  font-weight: 700;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), transform .18s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: oklch(1 0 0); box-shadow: var(--shadow-action); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-white { background: oklch(1 0 0); color: var(--brand); }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--brand-2); box-shadow: 0 0 0 1px oklch(0.3638 0.0963 273.78 / .1), 0 12px 26px -16px oklch(0.2824 0.0666 273.14 / .5); transform: translateY(-1px); }
  .btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: color-mix(in oklch, var(--surface) 70%, var(--bg-soft) 30%); }
  .btn-white:hover { background: oklch(0.9561 0.0074 80.72); transform: translateY(-1px); }
}

.hero-home { padding: calc(var(--space-6) + 12px) 0 var(--space-6); }
.hero-title-home { max-width: 9ch; margin-bottom: calc(var(--space-4) + 2px); }
.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.hero-columns article {
  position: relative;
  padding: 8px 12px 10px 14px;
  border-left: 1px solid var(--line-strong);
  background: transparent;
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out);
}
.hero-columns article::before {
  content: none;
}
@media (hover: hover) and (pointer: fine) {
  .hero-columns article:hover {
    transform: translateY(-1px);
    border-left-color: var(--brand);
  }
}
.hero-columns h2 {
  font-size: .88rem;
  margin-bottom: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-columns p { color: var(--muted); font-size: .94rem; }
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--surface) 93%, var(--bg-soft) 7%);
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 9px;
}

.cap-strip {
  margin-top: var(--space-3);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.cap-strip span {
  min-height: 54px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .03em;
  font-weight: 600;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cap-strip span svg {
  width: 14px;
  height: 14px;
  stroke: color-mix(in oklch, var(--brand) 70%, var(--muted) 30%);
  fill: none;
  stroke-width: 1.7;
  flex-shrink: 0;
}
.cap-strip span:nth-child(6n) { border-right: 0; }
.cap-strip span:nth-last-child(-n + 6) { border-bottom: 0; }
.cap-strip a,
.card h3 a,
.section-head h2 a {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .cap-strip a:hover,
  .card h3 a:hover,
  .section-head h2 a:hover {
    color: var(--brand);
  }
}

.cards.c1 { grid-template-columns: 1fr; }
.meta-line {
  margin-top: var(--space-2);
  font-size: .78rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: var(--space-1);
}
.ledger-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: var(--space-2);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--space-3);
  align-items: start;
  padding: var(--space-6) 0;
}
.hero-title {
  margin-bottom: var(--space-2);
  max-width: 13.5ch;
  line-height: 1.03;
  position: relative;
}
.hero-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin-top: var(--space-3);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.hero-actions { display: flex; gap: 12px; margin-top: var(--space-3); flex-wrap: wrap; }
.hero-main .lead { max-width: 620px; }
.hero-main {
  border-top: 1px solid var(--line-strong);
  padding-top: 12px;
}
.hero-blob {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}
.hero-blob-1 {
  width: 380px; height: 380px;
  right: -120px; top: -80px;
  background: radial-gradient(circle, oklch(0.5694 0.1451 308.04 / .2), oklch(0.5694 0.1451 308.04 / 0));
}
.hero-blob-2 {
  width: 420px; height: 420px;
  left: -180px; bottom: -160px;
  background: radial-gradient(circle, oklch(0.599 0.0784 189.73 / .16), oklch(0.599 0.0784 189.73 / 0));
}

.hero-metrics {
  list-style: none;
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-metrics li {
  background: color-mix(in oklch, var(--surface) 88%, var(--bg-soft) 12%);
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
  padding: 12px;
}
.hero-metrics strong { display: block; font-size: .86rem; margin-bottom: 2px; }
.hero-metrics span { color: var(--muted); font-size: .78rem; line-height: 1.4; display: block; }
.hero-metrics strong,
.price-show strong,
.addon-price,
.addon-buy-price { font-variant-numeric: tabular-nums; }

.hero-visual { position: relative; }
.hero-visual {
  display: grid;
  gap: var(--space-2);
}
.hero-canvas {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, oklch(0.994 0 0), oklch(0.9528 0.0086 84.57));
  padding: 10px;
}
.hero-canvas svg {
  width: 100%;
  height: auto;
  display: block;
  stroke: oklch(0.3439 0.0879 272.49);
  fill: none;
  stroke-width: 1.5;
}
.hero-sidecard {
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: 12px;
}
.hero-sidecard > p {
  font-size: .65rem;
  letter-spacing: .1em;
  color: oklch(0.6261 0.0239 83.24);
  margin-bottom: 10px;
}
.hero-sidecard div {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.hero-sidecard strong { display: block; font-size: .83rem; margin-bottom: 3px; }
.hero-sidecard span { color: var(--muted); font-size: .76rem; }

.section,
.section-alt {
  position: relative;
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--line);
}
.section::after,
.section-alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 30px;
  pointer-events: none;
  opacity: .2;
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: 140px 30px;
  display: none;
  background-image:
    linear-gradient(to right, oklch(0.2824 0.0666 273.14 / .1) 0 18%, transparent 18% 20%, oklch(0.5694 0.1451 308.04 / .08) 20% 36%, transparent 36% 38%, oklch(0.2824 0.0666 273.14 / .08) 38% 58%, transparent 58%);
}
main > .section:last-child::after,
main > .section-alt:last-child::after {
  display: block;
}

.section-alt {
  background: linear-gradient(180deg, color-mix(in oklch, var(--bg-soft) 72%, oklch(1 0 0) 28%), var(--bg));
}
/* Let browser skip below-the-fold layout/paint work until needed */
.section,
.section-alt,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}
.section-head { margin-bottom: var(--space-4); }
.section-head .eyebrow {
  position: relative;
  padding-left: 14px;
}
.section-head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 8px;
  height: 2px;
  border-radius: 0;
  background: var(--accent);
}
.section-head h2 {
  max-width: 18ch;
  line-height: 1.08;
  letter-spacing: -.024em;
}
.section-head .lead { max-width: 62ch; margin-top: var(--space-2); }
.section-illu {
  position: absolute;
  right: 10px;
  top: -10px;
  width: 140px;
  height: 140px;
  opacity: .52;
  pointer-events: none;
}
.section-illu svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: color-mix(in oklch, var(--brand) 70%, var(--accent) 30%);
  fill: none;
  stroke-width: 1.4;
}
.section-illu.alt svg {
  stroke: color-mix(in oklch, var(--accent) 65%, var(--accent-2) 35%);
}

.cards {
  display: grid;
  gap: var(--space-3);
}
.cards.c2 { grid-template-columns: repeat(2,1fr); }
.cards.c3 { grid-template-columns: repeat(3,1fr); }

.card,
.phase-card {
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: var(--space-4);
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-contact);
  transition: border-color .18s var(--ease-out), background-color .18s var(--ease-out), box-shadow .18s var(--ease-out), transform .18s var(--ease-out);
}
.card h3,
.phase-card h3 { margin-bottom: 9px; }
.card p,
.phase-card p { color: var(--muted); font-size: .93rem; line-height: 1.67; }
.card h3 + p,
.phase-card h3 + p { text-wrap: pretty; }
@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .phase-card:hover {
    border-color: color-mix(in oklch, var(--line-strong) 72%, var(--brand) 28%);
    background: var(--surface);
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
  }
}

.card-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
  color: var(--brand);
  background: color-mix(in oklch, var(--bg-soft) 70%, oklch(1 0 0) 30%);
}
.card-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.list { list-style: none; margin-top: 10px; }
.list li {
  position: relative;
  padding: var(--space-1) 0 var(--space-1) 21px;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
  font-size: .91rem;
}
.list li:last-child { border-bottom: none; }
.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-size: .82rem;
  font-weight: 700;
}
.price-details {
  margin-top: var(--space-2);
  border-top: 1px solid var(--line);
  padding-top: var(--space-2);
}
.price-details summary {
  cursor: pointer;
  list-style: none;
  color: var(--brand);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.price-details summary::-webkit-details-marker { display: none; }
.price-details summary::after {
  content: " +";
  color: var(--muted);
}
.price-details[open] summary::after {
  content: " -";
}
.price-details .list {
  margin-top: 12px;
  margin-bottom: 14px;
}
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.pricing-tab {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 12px;
  cursor: pointer;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
.pricing-tab:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
}
.pricing-tab.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in oklch, var(--bg-soft) 72%, oklch(1 0 0) 28%);
}
.pricing-panel {
  display: none;
}
.pricing-panel.is-active {
  display: block;
}
.price-show {
  border: 0;
  background: color-mix(in oklch, var(--surface) 94%, var(--bg-soft) 6%);
  padding: 10px 12px;
  margin: auto 0 0;
}
.price-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-pricing .price-cta .btn,
.page-pricing .price-cta .btn-ghost {
  margin-top: 0;
}
.price-show span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-show strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--text);
}
.card:has(.price-details) {
  display: flex;
  flex-direction: column;
}
.card:has(.price-details) .btn-ghost {
  margin-top: 0;
}
.card .btn-ghost {
  margin-top: 0;
}
.card > p + .btn,
.card > p + .btn-ghost {
  margin-top: 14px;
}
.page-services .card {
  display: flex;
  flex-direction: column;
}
.page-services .card > .btn,
.page-services .card > .btn-ghost {
  margin-top: auto;
  align-self: flex-start;
}
.service-cta-card > .btn,
.service-cta-card > .btn-ghost {
  margin-top: 14px !important;
}
.page-services .card .list {
  margin-top: 10px;
  margin-bottom: 14px;
}
.page-services .card .list + .price-show {
  margin-top: 10px;
}
.page-services .card .price-show + .btn,
.page-services .card .price-show + .btn-ghost {
  margin-top: 12px;
}

.page-addons .cards .card {
  display: flex;
  flex-direction: column;
}
.page-addons .meta-line {
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 0;
  background: color-mix(in oklch, var(--bg-soft) 76%, oklch(1 0 0) 24%);
  color: color-mix(in oklch, var(--brand) 72%, var(--muted) 28%);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.35;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-addons .cards .card .meta-line + .btn,
.page-addons .cards .card .meta-line + .btn-ghost {
  margin-top: auto;
}

.addons-toolbar {
  margin-bottom: var(--space-3);
}

.addons-search {
  display: block;
  margin-bottom: var(--space-2);
}

.home-store-carousel {
  position: relative;
  display: block;
  overflow: visible;
}
.home-store-nav {
  width: 42px;
  height: 68px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: transform .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.home-store-nav#home-store-prev {
  left: -52px;
}
.home-store-nav#home-store-next {
  right: -52px;
}
.home-store-nav svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) and (pointer: fine) {
  .home-store-nav:hover {
    color: var(--brand-2);
    box-shadow: none;
    transform: translateY(calc(-50% - 1px));
  }
}
.home-store-nav:active {
  transform: translateY(-50%);
}
.home-store-nav:disabled {
  opacity: .38;
  cursor: not-allowed;
  color: var(--line-strong);
  box-shadow: none;
}
.home-store-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  padding: 4px 2px 2px;
  scrollbar-width: none;
  min-width: 0;
}
.home-store-track::-webkit-scrollbar {
  display: none;
}
.home-store-item {
  scroll-snap-align: start;
  min-height: 100%;
}
.home-store-item.card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.home-store-item .addon-thumb {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.home-store-item h3,
.home-store-item > p,
.home-store-item .meta-line,
.home-store-item .addon-card-actions {
  margin-left: 14px;
  margin-right: 14px;
}
.home-store-item h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: .98rem;
  line-height: 1.35;
}
.home-store-item > p {
  font-size: .88rem;
  line-height: 1.58;
}
.home-store-item .meta-line {
  margin-top: 10px;
  margin-bottom: 14px;
  width: auto;
  font-size: .72rem;
}
.home-store-item .addon-card-actions {
  margin-top: auto;
  margin-bottom: 14px;
  align-items: center;
  gap: 10px;
}
.home-store-item .addon-card-actions .btn {
  margin-top: 0;
  padding: 7px 10px;
  font-size: .76rem;
  white-space: nowrap;
}
.home-store-item .addon-price {
  font-size: .74rem;
  padding: 4px 8px;
}
.home-store-item-cta {
  justify-content: space-between;
}
.home-store-item-cta .eyebrow {
  margin: 14px 14px 0;
}
.home-store-item-cta h3 {
  margin-top: 6px;
}
.home-store-item-cta .addon-card-actions {
  margin-top: auto;
}
.home-store-item-cta .btn {
  width: 100%;
  justify-content: center;
}
.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(280px, .74fr);
  gap: clamp(20px, 2.6vw, 34px);
  align-items: start;
}
.blog-article-card {
  padding: clamp(22px, 2.4vw, 36px);
  background: linear-gradient(180deg, color-mix(in oklch, var(--surface) 94%, var(--bg-soft) 6%), var(--surface));
}
.blog-article-section + .blog-article-section {
  margin-top: clamp(24px, 2.8vw, 38px);
}
.blog-article-section h2 {
  margin: 28px 0 12px;
  line-height: 1.22;
  letter-spacing: -.015em;
  font-size: clamp(1.28rem, 1.7vw, 1.55rem);
  max-width: 24ch;
  text-wrap: balance;
}
.blog-article-section:first-child h2 {
  margin-top: 0;
}
.blog-article-section p {
  color: color-mix(in oklch, var(--text) 72%, var(--muted) 28%);
  line-height: 1.84;
  max-width: 78ch;
  text-wrap: pretty;
}
.blog-article-section p:first-of-type {
  font-size: 1.01rem;
}
.blog-article-section a {
  color: var(--brand);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
@media (hover: hover) and (pointer: fine) {
  .blog-article-section a:hover {
    color: var(--brand-2);
  }
}
.blog-article-section h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -.005em;
}
.blog-article-section p + p {
  margin-top: 12px;
}
.blog-article-section ul,
.blog-article-section ol {
  margin: 12px 0 0 22px;
  color: color-mix(in oklch, var(--text) 72%, var(--muted) 28%);
  line-height: 1.8;
  max-width: 78ch;
}
.blog-article-section li + li {
  margin-top: 8px;
}
.blog-article-section li > p {
  display: block;
  margin: 0 0 6px;
}
.blog-article-section li > p:last-child {
  margin-bottom: 0;
}
.blog-article-section pre {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--surface) 78%, var(--bg-soft) 22%);
  padding: 14px;
  overflow-x: auto;
  font-size: .8rem;
  line-height: 1.62;
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / .25);
  white-space: pre;
}
.blog-article-section code {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.blog-article-section p code,
.blog-article-section li code,
.blog-article-section blockquote code {
  background: color-mix(in oklch, var(--surface) 84%, var(--bg-soft) 16%);
  border: 1px solid var(--line);
  padding: 1px 4px;
}
.blog-article-section blockquote {
  border-left: 3px solid var(--line-strong);
  padding: 4px 0 4px 12px;
  margin-top: 12px;
  color: var(--text);
  background: linear-gradient(90deg, color-mix(in oklch, var(--bg-soft) 55%, transparent), transparent 65%);
}
.blog-article-section > * + ul,
.blog-article-section > * + ol,
.blog-article-section > * + pre,
.blog-article-section > * + blockquote,
.blog-article-section > * + .blog-table-wrap {
  margin-top: 12px;
}
.blog-article-aside .list li {
  padding-left: 0;
  border-bottom-style: solid;
}
.blog-article-aside .list li::before {
  content: none;
}
.blog-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
}
.blog-table-wrap table,
.blog-article-section table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  border: 1px solid var(--line);
}
.blog-table-wrap th,
.blog-table-wrap td,
.blog-article-section th,
.blog-article-section td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: color-mix(in oklch, var(--text) 70%, var(--muted) 30%);
}
.blog-table-wrap th:last-child,
.blog-table-wrap td:last-child,
.blog-article-section th:last-child,
.blog-article-section td:last-child {
  border-right: 0;
}
.blog-table-wrap thead th,
.blog-article-section thead th {
  color: var(--text);
  font-weight: 700;
  background: color-mix(in oklch, var(--surface) 86%, var(--bg-soft) 14%);
}
.blog-table-wrap tbody tr:nth-child(even) td,
.blog-article-section tbody tr:nth-child(even) td {
  background: color-mix(in oklch, var(--surface) 94%, var(--bg-soft) 6%);
}
.blog-article-section table {
  margin-top: 12px;
}
.blog-article-aside {
  position: sticky;
  top: 92px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, color-mix(in oklch, var(--surface) 93%, var(--bg-soft) 7%), color-mix(in oklch, var(--surface) 98%, var(--bg-soft) 2%));
}
.blog-article-aside h3 {
  margin-bottom: 10px;
}
.blog-faq-item {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.blog-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}
.blog-faq-item > p,
.blog-faq-item > ul,
.blog-faq-item > ol,
.blog-faq-item > pre,
.blog-faq-item > table {
  margin-top: 10px;
  color: color-mix(in oklch, var(--text) 72%, var(--muted) 28%);
  max-width: 76ch;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card .btn {
  margin-top: auto;
}
.blog-list-vertical {
  display: grid;
  gap: 14px;
}
.blog-card-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 20px;
  align-items: end;
}
.blog-card-row h3 {
  margin-bottom: 8px;
}
.blog-card-main p {
  max-width: 84ch;
}
.blog-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 170px;
}
.blog-card-meta .meta-line {
  white-space: nowrap;
}
.blog-side-block {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.blog-side-block h3 {
  margin-bottom: 8px;
}
.blog-cat-pill {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 5px 9px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.blog-share-links a {
  border: 1px solid var(--line);
  padding: 6px 8px;
  font-size: .78rem;
  text-decoration: none;
  color: var(--muted);
}
@media (hover: hover) and (pointer: fine) {
  .blog-share-links a:hover {
    color: var(--text);
    border-color: var(--line-strong);
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-store-item:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 760px) {
  .home-store-carousel {
    display: block;
  }
  .home-store-nav {
    display: none;
  }
}
.addons-search-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.addons-search input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}
.addons-search input:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--brand);
}
.addons-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.addons-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.addons-chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  padding: 6px 10px;
  font: inherit;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
.addons-chip:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
}
.addons-chip.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in oklch, var(--bg-soft) 72%, oklch(1 0 0) 28%);
}
.addons-result {
  margin-top: 10px;
  color: var(--muted);
  font-size: .85rem;
}
.addons-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3);
}
.addons-empty {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: .9rem;
}
.addon-thumb {
  aspect-ratio: 2 / 1;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  background: oklch(0.9736 0.0057 84.57);
  overflow: hidden;
}
.addon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.addon-price {
  margin: 0;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.addon-price.is-free {
  color: var(--ok);
  border-color: color-mix(in oklch, var(--ok) 40%, var(--line) 60%);
  background: color-mix(in oklch, oklch(1 0 0) 78%, oklch(0.9427 0.0355 162.34) 22%);
}
.addon-price.is-paid {
  color: var(--brand);
  border-color: color-mix(in oklch, var(--brand) 30%, var(--line) 70%);
  background: color-mix(in oklch, oklch(1 0 0) 76%, oklch(0.9341 0.0316 276.01) 24%);
}
.addon-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.addon-card-actions .btn {
  margin-top: 0;
}
.addon-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .7fr);
  gap: var(--space-3);
  align-items: start;
}
.addon-detail-main {
  min-width: 0;
}
.addon-detail-tabs {
  border: 0;
  background: transparent;
}
.addons-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}
.addons-tab {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  padding: 7px 10px;
  font: inherit;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
.addons-tab:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
}
.addons-tab.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in oklch, var(--bg-soft) 72%, oklch(1 0 0) 28%);
}
.addons-panel {
  padding: 18px 0 0;
}
.addon-detail-tabs + .addon-detail-block {
  margin-top: var(--space-5);
}
.addon-detail-thumb {
  width: 100%;
  aspect-ratio: 2 / 1;
  border: 1px solid var(--line);
  background: oklch(0.9736 0.0057 84.57);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.addon-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.addon-detail-block + .addon-detail-block {
  margin-top: var(--space-4);
}
.addon-detail-block h2 {
  margin-bottom: var(--space-2);
}
.addon-detail-block > p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}
.addon-buy-sidebar {
  position: sticky;
  top: 92px;
}
.addon-buy-card {
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  border: 1px solid var(--line);
  padding: var(--space-3);
}
.addon-buy-label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.addon-buy-card h3 {
  margin-bottom: 10px;
}
.addon-buy-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.05;
  margin-bottom: 8px;
}
.addon-buy-meta {
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: 16px;
}
.addon-buy-card .btn {
  width: 100%;
}
.addon-buy-card .btn + .btn {
  margin-top: 10px;
}
.addon-buy-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.addon-buy-note strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.addon-buy-note p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.65;
}
.addon-buy-points {
  list-style: none;
  margin-top: 12px;
}
.addon-buy-points li {
  position: relative;
  color: var(--muted);
  font-size: .86rem;
  padding: 7px 0 7px 18px;
  border-bottom: 1px dashed var(--line);
}
.addon-buy-points li:last-child {
  border-bottom: 0;
}
.addon-buy-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
}
.addon-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.addon-shot-card {
  margin: 0;
  border: 1px solid var(--line);
  background: oklch(0.9736 0.0057 84.57);
  aspect-ratio: 2 / 1;
  overflow: hidden;
}
.addon-shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.addon-reviews {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.addon-review-item {
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: 12px;
}
.addon-review-stars {
  color: oklch(0.7004 0.137 82.53);
  letter-spacing: .08em;
  font-size: .9rem;
  margin-bottom: 7px;
}
.addon-review-text {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}
.addon-review-meta {
  margin-top: 8px;
  color: oklch(0.6184 0.0146 82.39);
  font-size: .82rem;
  font-weight: 600;
}
.addon-review-form {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.addon-review-form h3 {
  margin-bottom: 10px;
}
.addon-review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.addon-review-form label {
  display: block;
  margin-bottom: 10px;
}
.addon-review-form label span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .03em;
}
.addon-review-form input,
.addon-review-form select,
.addon-review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: .9rem;
  padding: 10px;
}
.addon-review-form textarea {
  resize: vertical;
}
.addon-review-form .cf-turnstile {
  margin: 2px 0 8px;
}
.addon-review-form input:focus,
.addon-review-form select:focus,
.addon-review-form textarea:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--brand);
}
.addon-review-form-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: .8rem;
}
.site-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-width: 260px;
  max-width: min(92vw, 420px);
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  background: color-mix(in oklch, var(--surface) 94%, var(--bg-soft) 6%);
  color: var(--text);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s var(--ease-out), transform .18s var(--ease-out);
}
.site-toast.is-show {
  opacity: 1;
  transform: translateY(0);
}
.site-toast.is-success {
  border-color: color-mix(in oklch, var(--ok) 55%, var(--line-strong) 45%);
}
.site-toast.is-error {
  border-color: color-mix(in oklch, oklch(0.53 0.1547 24.06) 58%, var(--line-strong) 42%);
}
.site-toast.is-warn {
  border-color: color-mix(in oklch, oklch(0.5997 0.1264 61.43) 58%, var(--line-strong) 42%);
}
.addon-faq {
  display: grid;
  gap: 10px;
}
.addon-faq details {
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: 10px 12px;
}
.addon-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}
.addon-faq details p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .91rem;
}
.team-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.team-card .team-avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  object-fit: cover;
  display: block;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, oklch(0.2116 0.0422 272.22 / .18), transparent);
}
.team-card h3,
.team-card .team-role,
.team-card p:not(.team-role),
.team-card .team-linkedin {
  margin-left: var(--space-3);
  margin-right: var(--space-3);
}
.team-card h3 {
  margin-top: var(--space-3);
}
.team-card h3 a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
.team-card h3 a:hover {
  color: var(--brand);
}
}
.team-card .team-role {
  margin-top: 4px;
  margin-bottom: 10px;
  color: color-mix(in oklch, var(--brand) 86%, oklch(0.3365 0.0921 270.95) 14%);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line-strong);
  background: color-mix(in oklch, var(--bg-soft) 70%, oklch(1 0 0) 30%);
  padding: 3px 8px;
}
.team-card p:not(.team-role) {
  padding-bottom: 6px;
}
.team-card .team-linkedin {
  margin-top: 10px;
  margin-bottom: var(--space-3);
  display: inline-flex;
  text-decoration: none;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 10px;
}
@media (hover: hover) and (pointer: fine) {
.team-card .team-linkedin:hover {
  background: var(--brand);
  color: oklch(1 0 0);
}
}

.phase-num {
  width: 35px;
  height: 35px;
  border-radius: 0;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .76rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: var(--space-2);
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.panel {
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: var(--space-4);
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
}
.panel h3 { margin-bottom: var(--space-1); }
.panel p { color: var(--muted); font-size: .93rem; line-height: 1.67; }

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.snapshot-card {
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: var(--space-4);
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
  transition: border-color .18s var(--ease-out), background-color .18s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
.snapshot-card:hover {
  border-color: var(--line-strong);
  background: var(--surface);
}
}
.snapshot-tag {
  display: inline-block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 4px 8px;
  margin-bottom: var(--space-2);
  font-weight: 700;
}
.snapshot-card h3 { margin-bottom: var(--space-1); }
.snapshot-card p { color: var(--muted); font-size: .92rem; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.stack-col {
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: var(--space-4);
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
}
.stack-col h3 { margin-bottom: var(--space-2); }
.stack-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-tags span {
  font-size: .8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 5px 10px;
  background: color-mix(in oklch, var(--bg-soft) 70%, oklch(1 0 0) 30%);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.timeline-step {
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: var(--space-4);
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
}
.timeline-step span {
  display: inline-block;
  margin-bottom: var(--space-1);
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.timeline-step h3 { margin-bottom: var(--space-1); }
.timeline-step p { color: var(--muted); font-size: .92rem; }

.cta-box {
  background: linear-gradient(145deg, var(--brand), oklch(0.3334 0.0901 272.3) 66%, oklch(0.3078 0.0868 270.83));
  border-radius: 0;
  padding: var(--space-5);
}
.cta-box h2 { color: oklch(1 0 0); margin-bottom: var(--space-2); }
.cta-box .lead { color: oklch(1 0 0 / .72); margin-bottom: var(--space-3); }

.page-hero {
  padding: var(--space-6) 0 var(--space-5);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in oklch, var(--bg-soft) 40%, transparent 60%), transparent);
}
.page-hero h1 {
  max-width: 22ch;
  font-size: clamp(2rem, 4.3vw, 3.9rem);
  line-height: 1.06;
  position: relative;
  padding-left: 18px;
  text-wrap: balance;
}
.page-hero h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: .16em;
  width: 4px;
  height: .92em;
  border-radius: 0;
  background: linear-gradient(180deg, var(--accent), var(--brand));
}
.page-hero .lead { margin-top: var(--space-2); }
.page-about .page-hero h1 {
  max-width: 28ch;
  font-size: clamp(1.9rem, 3.7vw, 3.35rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.45fr;
  gap: var(--space-3);
}
.contact-info,
.form-card {
  background: color-mix(in oklch, var(--surface) 92%, var(--bg-soft) 8%);
  padding: var(--space-4);
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
}
.info-card + .info-card {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.info-card h3 { margin-bottom: var(--space-1); }
.info-card p,
.info-card a { color: var(--muted); font-size: .92rem; text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
.info-card a:hover { color: var(--brand); }
}

.form-card h2 { margin-bottom: var(--space-1); }
.form-card .lead { margin-bottom: var(--space-3); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
/* biome-ignore lint/style/noDescendingSpecificity: Contact form base styles intentionally follow component-specific addon form styles. */
label {
  color: var(--muted);
  font-size: .81rem;
  font-weight: 700;
}
/* biome-ignore lint/style/noDescendingSpecificity: Contact form base controls intentionally follow component-specific addon form controls. */
input, select, textarea {
  font-family: inherit;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  padding: 10px 12px;
  font-size: .92rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: border-color .18s var(--ease-out), background-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder,
textarea::placeholder { color: oklch(0.6943 0.0142 82.4); }
/* biome-ignore lint/style/noDescendingSpecificity: Base select styling intentionally follows component-specific addon form select styles. */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23928d84' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 34px;
}
/* biome-ignore lint/style/noDescendingSpecificity: Contact form focus styles intentionally follow component-specific addon form focus styles. */
input:focus, select:focus, textarea:focus {
  outline-color: var(--focus-ring);
  border-color: var(--brand);
  background: oklch(1 0 0);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent-2) 14%, transparent 86%);
}
/* biome-ignore lint/style/noDescendingSpecificity: Base textarea sizing intentionally follows component-specific addon textarea styles. */
textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: var(--space-2); }
.form-submit .btn { width: 100%; padding: 12px; }

.site-footer {
  padding: var(--space-5) 0 var(--space-4);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-4);
}
.footer-brand-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-2);
}
.footer-brand .logo {
  height: 26px;
  width: auto;
  margin-bottom: 0;
}
.footer-brand p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
  max-width: 320px;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-2);
  color: var(--brand);
  font-size: .88rem;
  text-decoration: none;
}
.footer-heading {
  color: oklch(0.54 0.015 83);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: var(--space-2);
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col a {
  text-decoration: none;
  color: var(--muted);
  font-size: .9rem;
}
@media (hover: hover) and (pointer: fine) {
.footer-col a:hover { color: var(--brand); }
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: .85rem; }
.footer-bottom a { color: var(--muted); font-size: .85rem; text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
.footer-bottom a:hover { color: var(--muted); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .32s var(--ease-out), transform .32s var(--ease-out);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate-delay="1"] { transition-delay: .04s; }
[data-animate-delay="2"] { transition-delay: .08s; }
[data-animate-delay="3"] { transition-delay: .12s; }
[data-animate-delay="4"] { transition-delay: .16s; }
[data-animate-delay="5"] { transition-delay: .2s; }


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

  [data-animate],
  [data-animate].visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero-home { padding: var(--space-6) 0; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-columns { grid-template-columns: 1fr; }
  .ledger-row { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .cap-strip { grid-template-columns: repeat(3, 1fr); }
  .cap-strip span:nth-child(3n) { border-right: 0; }
  .cap-strip span:nth-last-child(-n + 3) { border-bottom: 0; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .hero-main { border-top: none; padding-top: 0; }
  .cards.c3 { grid-template-columns: 1fr 1fr; }
  .snapshot-grid,
  .stack-grid,
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .contact-layout { grid-template-columns: 1fr; }
  .addon-detail-layout { grid-template-columns: 1fr; }
  .blog-article-layout { grid-template-columns: 1fr; }
  .addon-buy-sidebar {
    position: static;
    top: auto;
  }
  .blog-article-aside {
    position: static;
    top: auto;
  }
}

@media (max-width: 860px) {
  .logo { height: 24px; }
  .logo-title { font-size: .92rem; }
  .nav-links a:not(.btn-nav) { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .section,
  .section-alt { padding: var(--space-6) 0; }
  .cap-strip { margin-top: var(--space-2); }
  .cap-strip { grid-template-columns: repeat(2, 1fr); }
  .cap-strip span:nth-child(2n) { border-right: 0; }
  .cap-strip span:nth-last-child(-n + 2) { border-bottom: 0; }
  .page-hero { padding: var(--space-5) 0 var(--space-4); }
  .cards.c2,
  .cards.c3 { grid-template-columns: 1fr; }
  .snapshot-grid,
  .stack-grid,
  .timeline-grid { grid-template-columns: 1fr; }
  .addon-shot-grid { grid-template-columns: 1fr; }
  .addon-review-form-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-box { padding: var(--space-4) var(--space-3); }
  .section-illu { width: 96px; height: 96px; right: 0; top: -6px; opacity: .38; }
  .blog-article-card { padding: 20px 16px; }
  .blog-article-section h2 { font-size: 1.2rem; }
  .blog-table-wrap table,
  .blog-article-section table { min-width: 520px; }
  .blog-article-section pre { font-size: .76rem; }
  .blog-card-row {
    grid-template-columns: 1fr;
  }
  .blog-card-meta {
    align-items: flex-start;
    min-width: 0;
  }
  .blog-card-meta .meta-line {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .hero-inner { padding: 50px 0; }
  .hero-title::after { width: 88px; margin-top: 14px; }
  .page-hero h1 {
    max-width: 20ch;
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
    padding-left: 12px;
  }
  .page-hero h1::before { width: 3px; }
  .contact-info,
  .form-card,
  .panel,
  .card,
  .phase-card { padding: 22px 18px; }
}
