/* [project]/app/site.css [app-client] (css) */
:root {
  --ink: #14152a;
  --ink-2: #1e2042;
  --ink-3: #2b2e55;
  --paper: #f7f9fc;
  --card: #fff;
  --line: #dde2eb;
  --text: #181d1f;
  --muted: #5b6470;
  --faint: #6b7480;
  --accent: #4b54f7;
  --accent-strong: #3841e2;
  --accent-wash: #dee0ff;
  --accent-soft: #a5aafb;
  --teal: #06d6a0;
  --teal-wash: #e2f8f0;
  --gold: #ffb409;
  --gold-2: #ffc94e;
  --gold-wash: #fff1d6;
  --gold-deep: #8f6519;
  --danger: #e3342f;
  --danger-text: #c22b26;
  --success: #38c172;
  --radius: 8px;
  --radius-sm: 5px;
  --radius-lg: 12px;
  --shadow-lg: 0 20px 50px -12px #14152a59;
  --shadow-sm: 0 1px 2px #14152a0f;
  --font-display: var(--font-manrope, "Manrope"), sans-serif;
  --font-body: var(--font-inter, "Inter"), sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --h2: clamp(26px, 3.4vw, 36px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--card);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 15.5px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -.015em;
  color: var(--ink);
  line-height: 1.15;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  color: var(--muted);
}

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

::selection {
  background: var(--accent-wash);
  color: var(--ink);
}

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

.cta-band :focus-visible {
  outline-color: var(--accent-wash);
}

.rate-band :focus-visible {
  outline-color: var(--accent-wash);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  z-index: 200;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
}

.skip-link:focus {
  outline-color: var(--accent-wash);
  transform: none !important;
}

.sr-only {
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

#main {
  scroll-margin-top: 90px;
}

.btn {
  font-family: var(--font-body);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .12s, color .12s, border-color .12s, transform 60ms;
  display: inline-flex;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  flex: none;
  width: 15px;
  height: 15px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.btn-ghost {
  color: var(--muted);
  border-color: var(--line);
  background: none;
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--text);
}

.btn-outline {
  color: var(--accent);
  border-color: var(--accent-soft);
  background: none;
}

.btn-outline:hover {
  background: var(--accent-wash);
  color: var(--accent-strong);
  border-color: var(--accent);
}

.btn-white {
  color: var(--accent-strong);
  background: #fff;
}

.btn-white:hover {
  background: var(--accent-wash);
}

.btn-outline-light {
  color: #fff;
  background: none;
  border-color: #ffffff73;
}

.btn-outline-light:hover {
  color: #fff;
  background: #ffffff1f;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
}

.site-head {
  z-index: 50;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  background: #ffffffeb;
  position: sticky;
  top: 0;
}

.head-row {
  align-items: center;
  gap: 28px;
  height: 80px;
  display: flex;
}

.brand {
  color: var(--ink);
  align-items: center;
  gap: 10px;
  display: flex;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 60px;
  display: block;
}

.site-nav {
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  display: flex;
}

.site-nav a {
  color: var(--muted);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  transition: background .12s, color .12s;
}

.site-nav a:hover {
  background: var(--paper);
  color: var(--text);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--accent-strong);
  background: var(--accent-wash);
}

.nav-item {
  position: relative;
}

.nav-menu-btn {
  color: var(--muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: background .12s, color .12s;
  display: inline-flex;
}

.nav-menu-btn:hover {
  background: var(--paper);
  color: var(--text);
}

.nav-menu-btn[aria-current="page"] {
  color: var(--accent-strong);
  background: var(--accent-wash);
}

.nav-menu-btn .chev {
  width: 12px;
  height: 12px;
  transition: transform .12s;
}

.nav-item.open .nav-menu-btn {
  color: var(--text);
}

.nav-item.open .nav-menu-btn .chev {
  transform: rotate(90deg);
}

.nav-menu {
  z-index: 60;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: left;
  background: #fff;
  min-width: 344px;
  padding: 8px;
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  box-shadow: 0 18px 44px #0f122d24;
}

.nav-item.open .nav-menu {
  display: block;
}

@media (min-width: 921px) {
  .nav-item.open .nav-menu:before {
    content: "";
    height: 12px;
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
  }
}

.nav-menu a {
  border-radius: var(--radius);
  padding: 10px 12px;
  display: block;
}

.nav-menu a:hover {
  background: var(--paper);
  text-decoration: none;
}

.nav-menu .t {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.nav-menu .d {
  color: var(--muted);
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.45;
  display: block;
}

.nav-menu a[aria-current="page"] {
  background: var(--accent-wash);
}

.nav-menu a[aria-current="page"] .t {
  color: var(--accent-strong);
}

.head-actions {
  align-items: center;
  gap: 10px;
  margin-left: auto;
  display: flex;
}

.nav-toggle {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  cursor: pointer;
  width: 44px;
  height: 44px;
  color: var(--muted);
  background: none;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  display: none;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.head-cta {
  display: none;
}

@media (max-width: 920px) {
  .site-nav, .head-actions {
    display: none;
  }

  .nav-toggle, .head-cta {
    display: inline-flex;
  }

  .site-head.open .head-cta {
    display: none;
  }

  .site-head.open {
    max-height: 100vh;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    max-height: 100dvh;
    overflow-y: auto;
  }

  .site-head.open .head-row {
    flex-wrap: wrap;
    height: auto;
    min-height: 80px;
  }

  .site-head.open .site-nav {
    border-top: 1px solid var(--line);
    flex-direction: column;
    flex-basis: 100%;
    order: 2;
    align-items: stretch;
    gap: 4px;
    margin-left: 0;
    padding: 8px 0 4px;
    display: flex;
  }

  .site-head.open .head-actions {
    flex-basis: 100%;
    order: 3;
    justify-content: flex-start;
  }

  .site-head.open .site-nav a {
    padding: 11px 12px;
    font-size: 15px;
  }

  .nav-menu {
    min-width: 0;
    box-shadow: none;
    background: none;
    border: none;
    border-radius: 0;
    padding: 2px 0 6px 14px;
    position: static;
  }

  .nav-menu a {
    padding: 9px 12px;
  }

  .nav-menu .t {
    font-size: 14px;
  }

  .site-head.open .nav-menu-btn {
    width: 100%;
    padding: 11px 12px;
    font-size: 15px;
    display: flex;
  }

  .site-head.open .head-actions {
    gap: 10px;
    padding: 10px 0 14px;
    display: flex;
  }
}

@media (max-width: 640px) {
  .head-row {
    gap: 16px;
    height: 68px;
  }

  .brand-logo {
    height: 42px;
  }

  .site-head.open .head-row {
    min-height: 68px;
  }

  .site-head.open .head-actions {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

.hero {
  background: radial-gradient(900px 420px at 85% -10%,
      #4b54f71a,
      transparent 65%),
    radial-gradient(600px 300px at -10% 30%,
      #06d6a00f,
      transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 84px 24px 88px;
  display: grid;
  position: relative;
}

.hero-inner > * {
  min-width: 0;
}

.eyebrow {
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-strong);
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: var(--accent);
  border-radius: 1px;
  width: 26px;
  height: 2px;
}

.eyebrow .dot {
  display: none;
}

.hero h1 {
  letter-spacing: -.025em;
  max-width: 560px;
  margin: 20px 0 18px;
  font-size: max(34px, min(4.6vw, 54px));
  font-weight: 800;
}

.hero .lede {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.7;
}

.hero-ctas {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  display: flex;
}

.hero-assure {
  color: var(--faint);
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  display: flex;
}

.hero-assure span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.hero-assure svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.site-head ~ main .hero, .site-head ~ main .page-hero {
  background: var(--accent);
  border-bottom: 1px solid var(--accent-strong);
}

.site-head ~ main .hero h1, .site-head ~ main .page-hero h1 {
  color: #fff;
}

.site-head ~ main .hero .lede, .site-head ~ main .page-hero .lede, .site-head ~ main .page-hero p {
  color: var(--accent-wash);
}

.site-head ~ main .hero .eyebrow, .site-head ~ main .page-hero .eyebrow {
  color: #fff;
}

.site-head ~ main .hero .eyebrow:before, .site-head ~ main .page-hero .eyebrow:before {
  opacity: .7;
  background: #fff;
}

.site-head ~ main .hero .btn-primary, .site-head ~ main .page-hero .btn-primary {
  color: var(--accent-strong);
  background: #fff;
}

.site-head ~ main .hero .btn-primary:hover, .site-head ~ main .page-hero .btn-primary:hover {
  background: var(--accent-wash);
  color: var(--accent-strong);
}

.site-head ~ main .hero .btn-ghost, .site-head ~ main .page-hero .btn-ghost {
  color: #fff;
  border-color: #ffffff73;
}

.site-head ~ main .hero .btn-ghost:hover, .site-head ~ main .page-hero .btn-ghost:hover {
  color: #fff;
  background: #ffffff1f;
}

.site-head ~ main .hero-assure {
  color: var(--accent-wash);
}

.site-head ~ main .hero-assure svg {
  color: var(--teal);
}

.hero-data {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-data svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-data .ping {
  fill: none;
  stroke: #fff;
  stroke-width: 1.4px;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: 3.4s cubic-bezier(.2, .55, .35, 1) infinite hero-ping;
}

@keyframes hero-ping {
  0% {
    opacity: .6;
    transform: scale(.45);
  }

  70% {
    opacity: 0;
  }

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

.hero-data .flow {
  animation: 2.8s linear infinite hero-flow;
}

@keyframes hero-flow {
  to {
    stroke-dashoffset: -48px;
  }
}

.mock-signal .bars i {
  transform-origin: bottom;
  animation: 1.7s ease-in-out infinite hero-bar;
}

.mock-signal .bars i:nth-child(2) {
  animation-delay: .18s;
}

.mock-signal .bars i:nth-child(3) {
  animation-delay: .36s;
}

.mock-signal .bars i:nth-child(4) {
  animation-delay: .54s;
}

@keyframes hero-bar {
  0%, 100% {
    transform: scaleY(.55);
  }

  50% {
    transform: scaleY(1);
  }
}

.kf-motion .page-hero > .container > *, .kf-motion .hero-inner > *, .kf-motion .section-head, .kf-motion .grid-2 > *, .kf-motion .grid-3 > *, .kf-motion .container.split > *, .kf-motion .stats-row > *, .kf-motion .cta-inner > *, .kf-motion .inf-pipe > li, .kf-motion .ep-acc, .kf-motion .trusted > * {
  opacity: 0;
}

.kf-motion .page-hero > .container > .in, .kf-motion .hero-inner > .in, .kf-motion .section-head.in, .kf-motion .grid-2 > .in, .kf-motion .grid-3 > .in, .kf-motion .container.split > .in, .kf-motion .stats-row > .in, .kf-motion .cta-inner > .in, .kf-motion .inf-pipe > li.in, .kf-motion .ep-acc.in, .kf-motion .trusted > .in {
  opacity: 1;
  animation: .6s cubic-bezier(.22, .61, .21, 1) backwards kf-rise;
  animation-delay: calc(var(--i, 0) * 70ms);
}

@keyframes kf-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kf-motion .page-hero > .container > *, .kf-motion .hero-inner > *, .kf-motion .section-head, .kf-motion .grid-2 > *, .kf-motion .grid-3 > *, .kf-motion .container.split > *, .kf-motion .stats-row > *, .kf-motion .cta-inner > *, .kf-motion .inf-pipe > li, .kf-motion .ep-acc, .kf-motion .trusted > * {
    opacity: 1;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.mock {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  grid-template-columns: 118px 1fr;
  min-height: 380px;
  display: grid;
  overflow: hidden;
}

.mock-side {
  background: var(--accent);
  flex-direction: column;
  gap: 4px;
  padding: 14px 10px;
  display: flex;
}

.mock-side .m-brand {
  align-items: center;
  gap: 7px;
  padding: 2px 6px 14px;
  display: flex;
}

.mock-side .m-brand i {
  border-radius: var(--radius-sm);
  background: #fff;
  flex: none;
  width: 18px;
  height: 18px;
  display: block;
}

.mock-side .m-brand b {
  font-family: var(--font-display);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
}

.mock-side .m-item {
  border-radius: var(--radius-sm);
  color: #ffffffbf;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 7px;
  font-size: 9.5px;
  font-weight: 500;
  display: flex;
}

.mock-side .m-item i {
  background: #ffffff59;
  border-radius: 3px;
  flex: none;
  width: 9px;
  height: 9px;
}

.mock-side .m-item.on {
  color: var(--accent-strong);
  background: #fff;
  font-weight: 700;
}

.mock-side .m-item.on i {
  background: var(--accent-strong);
}

.mock-side .m-group {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff8c;
  padding: 12px 7px 4px;
  font-size: 8px;
  font-weight: 700;
}

.mock-main {
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 16px 16px 12px;
  display: flex;
}

.mock-search {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  display: flex;
}

.mock-search svg {
  width: 14px;
  height: 14px;
  color: var(--faint);
  flex: none;
}

.mock-search span {
  color: var(--faint);
  flex: 1;
  font-size: 12px;
}

.mock-search .go {
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  font-size: 10.5px;
  font-weight: 700;
}

.mock-chips {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.mock-chips span {
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
}

.mock-chips span.hl {
  color: var(--accent-strong);
  background: var(--accent-wash);
  border-color: var(--accent-soft);
}

.mock-count {
  color: var(--faint);
  font-size: 10.5px;
  font-family: var(--font-mono);
}

.mock-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-start;
  gap: 11px;
  padding: 11px 12px;
  display: flex;
}

.mock-row .tile {
  border-radius: var(--radius);
  width: 34px;
  height: 34px;
  font-family: var(--font-display);
  color: #fff;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.mock-row .tile.a {
  background: var(--accent);
}

.mock-row .tile.b {
  background: #0ba5a0;
}

.mock-row .tile.c {
  background: var(--gold);
}

.mock-row .body {
  flex: 1;
  min-width: 0;
}

.mock-row .nm {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-display);
}

.mock-row .ds {
  color: var(--faint);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
  font-size: 10.5px;
  line-height: 1.5;
  display: block;
  overflow: hidden;
}

.mock-row .mt {
  color: var(--faint);
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
  font-size: 9.5px;
  display: flex;
}

.mock-row .unlock {
  color: var(--accent-strong);
  background: var(--accent-wash);
  border-radius: var(--radius-sm);
  flex: none;
  margin-top: 3px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
}

.mock-signal {
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 9px 12px;
  display: flex;
  position: relative;
}

.mock-signal .bars {
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  display: flex;
}

.mock-signal .bars i {
  background: #ffffff4d;
  border-radius: 1px;
  width: 3px;
}

.mock-signal .bars i:first-child {
  height: 4px;
}

.mock-signal .bars i:nth-child(2) {
  height: 7px;
}

.mock-signal .bars i:nth-child(3) {
  height: 10px;
}

.mock-signal .bars i.on {
  background: var(--teal);
}

.mock-signal span {
  color: #ffffffd9;
  font-size: 10.5px;
  font-weight: 500;
}

.mock-signal b {
  color: #ffffff80;
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-left: auto;
}

.mock-float {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  font-size: 12px;
  display: flex;
  position: absolute;
  bottom: -16px;
  right: -14px;
}

.mock-float > .ic {
  border-radius: var(--radius);
  background: var(--teal-wash);
  color: #0a8f6f;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: flex;
}

.mock-float .ic svg {
  width: 14px;
  height: 14px;
}

.mock-float b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.mock-float span {
  color: var(--faint);
  font-size: 10.5px;
}

.mock-wrap {
  position: relative;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 60px 24px 72px;
  }

  .mock-float {
    right: 6px;
  }
}

@media (max-width: 640px) {
  .mock {
    grid-template-columns: 96px 1fr;
  }

  .mock-side {
    padding: 14px 6px;
  }

  .mock-side .m-item {
    padding: 0 5px;
  }

  .mock-row {
    flex-wrap: wrap;
  }

  .mock-row .body {
    min-width: 60%;
  }

  .mock-row .unlock {
    margin-top: 2px;
    margin-left: auto;
  }

  .mock-search > span:first-of-type {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

.stats {
  background: var(--ink);
  color: #fff;
}

.stats-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 46px 0;
  display: grid;
}

.stat {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.stat b {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.stat b em {
  color: var(--accent-soft);
  font-style: normal;
}

.stat span {
  color: #ffffff9e;
  font-size: 13px;
}

@media (max-width: 820px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

.section {
  padding: 88px 0;
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 56px 0 48px;
  }

  .cta-band {
    padding: 56px 0;
  }
}

.section.alt {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

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

.section-head h2 {
  font-size: var(--h2);
  letter-spacing: -.02em;
  margin: 14px 0 12px;
  font-weight: 800;
}

.section-head p {
  font-size: 16px;
  line-height: 1.7;
}

.kicker, .inf-kick {
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  display: grid;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}

.card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px -8px #14152a1f;
}

.card > .ic {
  border-radius: var(--radius-lg);
  background: var(--accent-wash);
  width: 40px;
  height: 40px;
  color: var(--accent-strong);
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.card .ic svg {
  width: 19px;
  height: 19px;
}

.feed-stack {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.feed-card {
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  display: flex;
}

.feed-card .ic {
  color: var(--accent);
  flex: none;
}

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

.feed-card b {
  color: var(--ink);
  font-size: 14.5px;
}

.feed-card .feed-sub {
  font-size: 13px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
}

.card p {
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }
}

.split > *, .grid-2 > *, .grid-3 > *, .grid-4 > *, .contact-layout > * {
  min-width: 0;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  display: grid;
}

.split h2 {
  font-size: var(--h2);
  letter-spacing: -.02em;
  margin: 14px 0;
  font-weight: 800;
}

.split p {
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.75;
}

.tick-list {
  flex-direction: column;
  gap: 11px;
  margin-top: 22px;
  list-style: none;
  display: flex;
}

.tick-list li {
  color: var(--text);
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  display: flex;
}

.tick-list svg {
  width: 17px;
  height: 17px;
  color: var(--success);
  flex: none;
  margin-top: 2px;
}

.tick-list b {
  font-weight: 600;
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.chips-cloud {
  flex-wrap: wrap;
  gap: 9px;
  display: flex;
}

.chips-cloud span {
  color: var(--ink-2);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
}

.steps {
  counter-reset: step;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  display: grid;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}

.step .n {
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  width: 34px;
  height: 34px;
  font-family: var(--font-display);
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 800;
  display: flex;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 16.5px;
}

.step p {
  font-size: 14px;
}

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

.inf-mind {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.inf-kick {
  text-align: center;
  margin-bottom: 18px;
}

.inf-mind .inf-kick {
  margin-bottom: 14px;
}

.inf-mind svg {
  width: 100%;
  height: auto;
  display: block;
}

.inf-mind .branch {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.75px;
  stroke-linecap: round;
}

.inf-mind .hub {
  fill: var(--accent);
}

.inf-mind .hub-t {
  font-family: var(--font-display);
  fill: #fff;
  letter-spacing: -.01em;
  font-size: 17px;
  font-weight: 800;
}

.inf-mind .node {
  fill: var(--paper);
  stroke: var(--line);
}

.inf-mind .fig {
  font-family: var(--font-display);
  fill: var(--ink);
  letter-spacing: -.01em;
  font-size: 17.5px;
  font-weight: 800;
}

.inf-mind .sub {
  font-family: var(--font-body);
  fill: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
}

.inf-pipe {
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  position: relative;
}

.inf-pipe:before {
  content: "";
  background: var(--accent);
  opacity: .3;
  width: 2px;
  margin-left: -1px;
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 50%;
}

.inf-pipe li {
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  display: grid;
}

.inf-pipe-node {
  background: var(--accent);
  color: #fff;
  z-index: 1;
  border-radius: 50%;
  grid-area: 1 / 2;
  justify-content: center;
  justify-self: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
  position: relative;
}

.inf-pipe-num {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
}

.inf-pipe-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-row: 1;
  padding: 18px 20px;
}

.inf-pipe li:nth-child(odd) .inf-pipe-card {
  grid-column: 1;
  margin-right: 20px;
}

.inf-pipe li:nth-child(2n) .inf-pipe-card {
  grid-column: 3;
  margin-left: 20px;
}

.inf-pipe-head {
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  display: flex;
}

.inf-pipe-head .ic {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: none;
}

.inf-pipe h3 {
  margin: 0;
  font-size: 16.5px;
}

.inf-pipe p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 760px) {
  .inf-pipe {
    gap: 14px;
    max-width: 540px;
  }

  .inf-pipe:before {
    margin-left: 0;
    top: 30px;
    bottom: 30px;
    left: 23px;
  }

  .inf-pipe li {
    grid-template-columns: 46px 1fr;
    align-items: flex-start;
    column-gap: 16px;
  }

  .inf-pipe-node {
    grid-column: 1;
  }

  .inf-pipe li:nth-child(odd) .inf-pipe-card, .inf-pipe li:nth-child(2n) .inf-pipe-card {
    grid-area: 1 / 2;
    margin: 0;
  }
}

.rate-band {
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 44px;
  padding: 44px 46px;
  display: grid;
}

.rate-band h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: max(24px, min(3vw, 32px));
  font-weight: 800;
}

.rate-band p {
  color: #ffffffb8;
  font-size: 14.5px;
  line-height: 1.7;
}

.rate-band .btn-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  display: flex;
}

.rate-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.rate-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ffffff8c;
  padding: 0 12px 10px;
  font-size: 11px;
  font-weight: 700;
}

.rate-table td {
  color: #ffffffe0;
  border-top: 1px solid #ffffff24;
  padding: 11px 12px;
}

.rate-table td:first-child {
  color: #fff;
  font-weight: 600;
}

.rate-table td b {
  font-family: var(--font-mono);
  color: var(--accent-soft);
  font-weight: 700;
}

@media (max-width: 920px) {
  .rate-band {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }
}

.rate-band > div:last-child {
  min-width: 0;
  overflow-x: auto;
}

.t-grid {
  grid-template-columns: 1fr;
  gap: 18px;
  display: grid;
}

.t-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 28px 28px 24px;
  display: flex;
}

.t-grid .stars {
  justify-content: flex-start;
  margin-bottom: 0;
}

.stars {
  color: var(--gold);
  gap: 4px;
  display: flex;
}

.stars svg {
  fill: currentColor;
  width: 17px;
  height: 17px;
}

.stars .star {
  flex: none;
  width: 17px;
  height: 17px;
  position: relative;
}

.stars .star svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.stars .star .track {
  fill: var(--line);
}

.stars .star .fill {
  clip-path: inset(0 50% 0 0);
}

.t-card blockquote {
  margin: 0;
}

.t-card blockquote p {
  color: var(--ink-2);
  margin: 0;
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.75;
}

.t-who {
  border-top: 1px solid var(--line);
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
}

.t-id b {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  display: block;
}

.t-id span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

@media (min-width: 760px) {
  .t-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .t-card {
    padding: 24px 22px 20px;
  }

  .t-card blockquote p {
    font-size: 15px;
  }
}

.term-toggle {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  padding: 4px;
  display: inline-flex;
}

.term-toggle button {
  color: var(--muted);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-body);
  background: none;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  transition: background .12s, color .12s;
  display: inline-flex;
}

.term-toggle button.active {
  background: var(--accent);
  color: #fff;
}

.term-save {
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--gold-wash);
  color: var(--gold-deep);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
}

.term-toggle button.active .term-save {
  color: #fff;
  background: #ffffff38;
}

@media (max-width: 400px) {
  .term-toggle {
    width: 100%;
    display: flex;
  }

  .term-toggle button {
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    padding: 8px 10px;
  }

  .term-save {
    padding: 2px 6px;
  }
}

.plan-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 16px;
  display: grid;
}

.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  flex-direction: column;
  padding: 26px 24px;
  transition: border-color .12s, box-shadow .12s;
  display: flex;
  position: relative;
}

.plan:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 8px 26px -10px #14152a24;
}

.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 34px -12px #4b54f759;
}

.plan .tag {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 800;
  position: absolute;
  top: -12px;
  left: 20px;
}

.plan h3 {
  font-size: 17px;
  font-weight: 800;
}

.plan .plan-desc {
  color: var(--muted);
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.55;
}

.plan .price {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  margin: 10px 0 2px;
  display: flex;
}

.plan .price b {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
}

.plan .price span {
  color: var(--muted);
  font-size: 13px;
}

.plan .price .strike {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: line-through;
}

.plan .credits {
  color: var(--accent-strong);
  background: var(--accent-wash);
  border-radius: var(--radius-sm);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 10px;
  font-size: 12.5px;
  font-weight: 600;
}

.plan ul {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  margin: 6px 0 22px;
  list-style: none;
  display: flex;
}

.plan ul li {
  color: var(--muted);
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  display: flex;
}

.plan ul li svg {
  width: 15px;
  height: 15px;
  color: var(--success);
  flex: none;
  margin-top: 3px;
}

.plan ul li b {
  color: var(--text);
  font-weight: 600;
}

.plan .btn {
  width: 100%;
}

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

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

.price-note {
  text-align: center;
  color: var(--muted);
  margin-top: 18px;
  font-size: 12.5px;
}

.faq {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.faq .faq-h {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 28px 0 2px;
  font-size: 16px;
  font-weight: 800;
}

.faq .faq-h:first-child {
  margin-top: 0;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq details[open] {
  border-color: var(--accent-soft);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  display: flex;
}

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

.faq summary .chev {
  width: 16px;
  height: 16px;
  color: var(--faint);
  flex: none;
  margin-left: auto;
  transition: transform .15s;
}

.faq details[open] summary .chev {
  color: var(--accent);
  transform: rotate(90deg);
}

.faq details p {
  color: var(--muted);
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 76px 0;
}

.cta-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  display: flex;
  position: relative;
}

.cta-inner h2 {
  color: #fff;
  font-size: var(--h2);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-weight: 800;
}

.cta-inner p {
  color: #ffffffe6;
  max-width: 480px;
  font-size: 15.5px;
}

.cta-inner p + p {
  margin-top: 10px;
}

.cta-inner .btn-row {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.page-hero {
  background: radial-gradient(800px 360px at 90% -20%,
      #4b54f71a,
      transparent 65%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 64px;
}

.page-hero > .container {
  position: relative;
}

.page-hero h1 {
  letter-spacing: -.02em;
  max-width: 720px;
  margin: 16px 0 14px;
  font-size: max(30px, min(4vw, 44px));
  font-weight: 800;
}

.page-hero .lede, .page-hero p {
  max-width: 640px;
  font-size: 16.5px;
  line-height: 1.7;
}

.page-hero p + p {
  margin-top: 12px;
}

.code-block {
  background: var(--ink);
  border-radius: var(--radius-lg);
  font-family: var(--font-mono);
  color: #e6e8f2;
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  font-size: 13px;
  line-height: 1.8;
  overflow-x: auto;
}

.code-block .c {
  color: #8b95a1;
}

.code-block .k {
  color: var(--accent-soft);
}

.code-block .s {
  color: #7de8c8;
}

.code-block .m {
  color: #ffc94e;
}

.ep-table {
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 100%;
  overflow: hidden;
}

.ep-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
}

.ep-table td {
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  padding: 13px 18px;
  font-size: 14px;
}

.ep-table td:first-child {
  white-space: nowrap;
}

.ep-table tr:last-child td {
  border-bottom: none;
}

.ep-table td code, .code-chip {
  font-family: var(--font-mono);
  color: var(--accent-strong);
  background: var(--accent-wash);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  padding: 2px 7px;
  font-size: 12.5px;
}

.verb {
  font-family: var(--font-mono);
  border-radius: var(--radius-sm);
  color: #fff;
  background: #2f7d59;
  margin-right: 8px;
  padding: 3px 8px;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-block;
}

.ep-scroll {
  overflow-x: auto;
}

.ep-acc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.ep-acc + .ep-acc {
  margin-top: 10px;
}

.ep-acc[open] {
  border-color: var(--accent-soft);
}

.ep-acc summary {
  cursor: pointer;
  letter-spacing: -.01em;
  color: var(--ink);
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  display: flex;
}

.ep-acc summary::-webkit-details-marker {
  display: none;
}

.ep-acc .ep-acc-count {
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
}

.ep-acc summary .chev {
  width: 16px;
  height: 16px;
  color: var(--faint);
  flex: none;
  margin-left: auto;
  transition: transform .15s;
}

.ep-acc[open] summary .chev {
  color: var(--accent);
  transform: rotate(90deg);
}

.ep-acc .ep-table {
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.ep-signup {
  background: var(--accent-wash);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 20px 24px;
  display: flex;
}

.ep-signup h3 {
  letter-spacing: -.01em;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
}

.ep-signup p {
  color: var(--muted);
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
}

.ep-signup .btn {
  flex: none;
}

@media (max-width: 720px) {
  .ep-signup {
    flex-direction: column;
    align-items: flex-start;
  }
}

.verb--put {
  background: var(--gold-deep);
}

.verb--del {
  background: #a63a3a;
}

.contact-layout {
  grid-template-columns: 1.25fr 1fr;
  align-items: start;
  gap: 28px;
  display: grid;
}

.contact-rail {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  gap: 10px;
  padding: 30px 28px;
  display: flex;
}

.contact-card > .ic {
  border-radius: var(--radius-lg);
  background: var(--accent-wash);
  width: 42px;
  height: 42px;
  color: var(--accent-strong);
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  display: flex;
}

.contact-card .ic svg {
  width: 20px;
  height: 20px;
}

.contact-card h3 {
  font-size: 17px;
}

.contact-card p {
  flex: 1;
  font-size: 14px;
}

.contact-card .link {
  font-size: 14px;
  font-weight: 700;
}

.contact-card--rail {
  padding: 22px 20px;
}

.contact-card--rail p {
  font-size: 13.5px;
}

.contact-card--rail .footnote {
  flex: none;
}

.removal-note {
  background: var(--gold-wash);
  border: 1px solid var(--gold-2);
  border-radius: var(--radius);
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
  padding: 20px 24px;
  display: flex;
}

.removal-note > .ic {
  color: var(--gold-deep);
  flex: none;
  margin-top: 2px;
}

.removal-note p {
  color: var(--gold-deep);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.contact-form-card h3 {
  font-size: 18px;
  font-weight: 800;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  display: grid;
}

.form-field {
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  display: flex;
}

.form-label {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.form-hint {
  color: var(--muted);
  font-size: 13px;
}

.form-input, .form-select, .form-textarea {
  font: inherit;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 100%;
  padding: 11px 12px;
  font-size: 14.5px;
}

.form-select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-strong);
}

.form-input[aria-invalid="true"], .form-select[aria-invalid="true"], .form-textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-error {
  color: var(--danger-text);
  align-items: baseline;
  gap: 7px;
  font-size: 13px;
  display: flex;
}

.form-alert {
  border-left: 3px solid var(--danger);
  border-radius: var(--radius-sm);
  color: var(--danger-text);
  background: #fbeae9;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.6;
}

.form-alert a {
  color: var(--danger-text);
  font-weight: 700;
}

.form-alert:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-count {
  color: var(--muted);
  text-align: right;
  margin-top: -2px;
  font-size: 12px;
}

.form-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.form-success, .form-error-panel {
  flex-direction: column;
  gap: 14px;
  animation: .15s formFade;
  display: flex;
}

.form-success .tile {
  background: var(--teal-wash);
  color: #0a8f6f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.form-success .tile svg {
  width: 20px;
  height: 20px;
}

.form-success p, .form-error-panel p {
  font-size: 14.5px;
  line-height: 1.7;
}

.form-while h4 {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.form-while ul {
  flex-direction: column;
  gap: 7px;
  list-style: none;
  display: flex;
}

.form-while a {
  font-size: 14px;
  font-weight: 600;
}

.form-success .restore {
  font: inherit;
  color: var(--accent-strong);
  cursor: pointer;
  background: none;
  border: none;
  align-self: flex-start;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.form-error-panel {
  border-top: 3px solid var(--danger);
  padding-top: 4px;
}

.form-error-panel h3, .form-success h3 {
  outline: none;
}

.turnstile-widget {
  min-height: 65px;
}

@keyframes formFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

  .form-actions .btn {
    width: 100%;
  }
}

.site-foot {
  background: var(--ink);
  color: #ffffffb8;
  padding: 64px 0 30px;
  font-size: 14px;
}

.foot-grid {
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
  display: grid;
}

.foot-brand img {
  opacity: .95;
  height: 44px;
  margin-bottom: 16px;
}

.foot-brand p {
  color: #fff9;
  max-width: 300px;
  font-size: 13.5px;
  line-height: 1.7;
}

.socials {
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

.socials a {
  border-radius: var(--radius);
  color: #ffffffc7;
  background: #ffffff14;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: background .12s, color .12s;
  display: flex;
}

.socials a:hover {
  background: var(--accent);
  color: #fff;
}

.socials svg {
  fill: currentColor;
  width: 15px;
  height: 15px;
}

.foot-col h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
}

.foot-col ul {
  flex-direction: column;
  gap: 10px;
  list-style: none;
  display: flex;
}

.foot-col a {
  color: #ffffffb8;
  padding: 7px 0;
  font-size: 13.5px;
  display: block;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  color: #ffffff73;
  border-top: 1px solid #ffffff1f;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  font-size: 12.5px;
  display: flex;
}

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

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

a.card {
  color: inherit;
  text-decoration: none;
  display: block;
}

a.card .go {
  color: var(--accent-strong);
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
}

a.card .go svg {
  width: 15px;
  height: 15px;
  transition: transform .12s;
}

a.card:hover .go svg {
  transform: translateX(3px);
}

.legal {
  max-width: 760px;
}

.legal h2 {
  letter-spacing: -.01em;
  margin: 46px 0 14px;
  font-size: 21px;
  font-weight: 800;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  margin: 26px 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.legal p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}

.legal ul {
  gap: 9px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
}

.legal li {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  position: relative;
}

.legal li:before {
  content: "";
  background: var(--accent-soft);
  border-radius: 2px;
  width: 7px;
  height: 7px;
  position: absolute;
  top: .6em;
  left: 2px;
}

.legal a {
  color: var(--accent-strong);
  font-weight: 600;
}

.legal .legal-note {
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 18px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .legal h2 {
    margin-top: 34px;
  }
}

.btn-row {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.page-hero .btn-row, .section-head .btn-row {
  margin-top: 26px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.center {
  text-align: center;
}

.footnote {
  color: var(--muted);
  font-size: 12.5px;
}

.ic {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 16px;
  height: 16px;
}

.inf-views {
  padding: 24px;
}

.inf-views .inf-kick {
  margin-bottom: 16px;
}

.inf-views .inf-start {
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px 30px;
  font-size: 11px;
  font-weight: 700;
}

.inf-views .inf-rail {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inf-views .inf-rail li {
  padding: 0 0 14px 30px;
  position: relative;
}

.inf-views .inf-rail li:last-child {
  padding-bottom: 0;
}

.inf-views .inf-rail li:before {
  content: "";
  background: var(--accent-soft);
  border-radius: 2px;
  width: 2px;
  position: absolute;
  top: 17px;
  bottom: -7px;
  left: 9px;
}

.inf-views .inf-rail li:last-child:before {
  content: none;
}

.inf-views .inf-rail li:after {
  content: "";
  background: var(--card);
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 4px;
}

.inf-views .inf-rail li.inf-final:after {
  background: var(--accent);
}

.inf-views .inf-hub {
  background: var(--accent);
  border-radius: 22px;
  max-width: 100%;
  padding: 10px 20px 11px;
  display: inline-block;
}

.inf-views .inf-hub b {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: #fff;
  font-size: 15.5px;
  font-weight: 800;
  display: block;
}

.inf-views .inf-hub span {
  color: #fff;
  margin-top: 1px;
  font-size: 11.5px;
  font-weight: 500;
  display: block;
}

.inf-views .inf-node {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 9px 14px 10px;
}

.inf-views .inf-node b {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  display: block;
}

.inf-views .inf-node span {
  color: var(--muted);
  margin-top: 1px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
  display: block;
}

.inf-views .inf-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 14px 13px;
}

.inf-views .inf-gt {
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 9px;
  font-size: 11.5px;
  font-weight: 800;
}

.inf-views .inf-chips {
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 7px;
  display: grid;
}

.inf-views .inf-chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 11px 8px;
}

.inf-views .inf-chip b {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 800;
  display: block;
}

.inf-views .inf-chip span {
  color: var(--muted);
  margin-top: 1px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.inf-views .inf-pair {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 10px;
  display: grid;
}

.inf-views .inf-pair .inf-chips {
  grid-template-columns: 1fr;
}

.inf-views .inf-end {
  background: var(--accent-wash);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: 11px 16px 12px;
}

.inf-views .inf-end b {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  display: block;
}

.inf-views .inf-end span {
  color: var(--ink-3);
  margin-top: 1px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.45;
  display: block;
}

@media (max-width: 640px) {
  .inf-views {
    padding: 20px 16px 22px;
  }

  .inf-views .inf-start {
    margin-left: 26px;
  }

  .inf-views .inf-rail li {
    padding: 0 0 11px 26px;
  }

  .inf-views .inf-rail li:before {
    bottom: -5px;
    left: 8px;
  }

  .inf-views .inf-rail li:after {
    left: 3px;
  }

  .inf-views .inf-chips {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 6px;
  }

  .inf-views .inf-pair {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .inf-views .inf-node {
    padding: 8px 10px 9px;
  }

  .inf-views .inf-node b {
    font-size: 12.5px;
  }

  .inf-views .inf-node span {
    font-size: 10.5px;
  }
}

.group-list {
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
}

.group-list li {
  color: var(--ink-2);
  grid-template-columns: 150px 1fr;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  display: grid;
}

.group-list b {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 640px) {
  .group-list li {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

.post-list {
  align-items: stretch;
}

.post-card {
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px;
  transition: border-color .12s, box-shadow .12s;
  display: flex;
  position: relative;
}

.post-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 8px 26px -10px #14152a24;
}

.post-meta {
  letter-spacing: .02em;
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.post-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.post-card h3 a {
  color: inherit;
  text-decoration: none;
}

.post-card h3 a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.post-card:hover h3 a, .post-card h3 a:hover {
  color: var(--accent);
}

.post-desc {
  color: var(--ink-2);
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.post-more {
  color: var(--accent);
  z-index: 1;
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.post-more:hover {
  text-decoration: underline;
}

.post-thumb {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  background: var(--paper);
  display: block;
  overflow: hidden;
}

.post-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.post-hero-img {
  aspect-ratio: 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--paper);
  width: 100%;
  margin: 0 0 34px;
  display: block;
}

.post-byline {
  font-size: 15px;
}

.post-body {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.75;
}

.post-body > :first-child {
  margin-top: 0;
}

.post-body h2 {
  color: var(--ink);
  margin: 40px 0 14px;
  font-size: 26px;
}

.post-body h3 {
  color: var(--ink);
  margin: 32px 0 10px;
  font-size: 20px;
}

.post-body p {
  margin: 0 0 16px;
}

.post-body ul, .post-body ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.post-body li {
  margin: 7px 0;
}

.post-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 26px 0;
  padding: 4px 0 4px 20px;
}

.post-body blockquote p {
  color: var(--ink);
  margin: 0;
  font-style: italic;
}

.post-body code {
  font-family: var(--font-mono);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 1px 6px;
  font-size: .85em;
}

.post-body a {
  color: var(--accent);
  font-weight: 600;
}

.post-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

.post-others {
  border-top: 1px solid var(--line);
  margin: 56px 0 0;
  padding-top: 28px;
}

.post-others ul {
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
}

.post-others li {
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  display: flex;
}

.post-others li a {
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
}

.post-others li a:hover {
  color: var(--accent);
}

.post-others li span {
  color: var(--muted);
  flex: none;
  font-size: 12.5px;
}

@media (max-width: 640px) {
  .post-body {
    font-size: 15.5px;
  }

  .post-others li {
    flex-direction: column;
    gap: 2px;
  }
}

.trusted {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0 30px;
}

.trusted-label {
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
}

.trusted-row {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0 24px;
  list-style: none;
  display: flex;
}

.trusted-row img {
  height: var(--h, 22px);
  filter: grayscale();
  opacity: .7;
  width: auto;
  transition: filter .18s, opacity .18s;
}

.trusted-row img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 640px) {
  .trusted {
    padding: 22px 0 26px;
  }

  .trusted-label {
    margin-bottom: 16px;
  }

  .trusted-row {
    gap: 22px 28px;
    padding: 0 16px;
  }

  .trusted-row img {
    height: calc(var(--h, 22px) * .9);
  }
}

/*# sourceMappingURL=app_site_1lykr2d.css.map*/