:root {

  --brand-50:  #fff1f4;
  --brand-100: #ffe1e8;
  --brand-200: #ffc8d4;
  --brand-300: #ff9db1;
  --brand-400: #ff6485;
  --brand-500: #f0335f;
  --brand-600: #d41948;
  --brand-700: #b1103c;
  --brand-800: #93113a;
  --brand-900: #7c1238;
  --brand: var(--brand-600);

  --zinc-50:  #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #9f9fa9;
  --zinc-500: #71717b;
  --zinc-600: #52525c;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;

  --accent: #3fd5df;

  --ink: var(--zinc-900);
  --body: var(--zinc-600);
  --muted: var(--zinc-500);
  --line: var(--zinc-200);
  --bg: #ffffff;
  --bg-soft: var(--zinc-50);
  --bg-deep: var(--zinc-950);

  --radius-md: .375rem;
  --radius-lg: .5rem;
  --radius-xl: .75rem;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-sm: 0 1px 3px rgba(9, 9, 11, .06), 0 1px 2px rgba(9, 9, 11, .04);
  --shadow-md: 0 4px 14px -4px rgba(9, 9, 11, .10), 0 1px 2px rgba(9, 9, 11, .04);

  --container: 1160px;

  --font-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;
  --font-body: var(--font-display);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.021em;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { letter-spacing: -.03em; font-weight: 700; }

p { margin: 0 0 1rem; }
a { color: var(--brand); text-decoration: none; }

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

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1em; height: 1em; flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.5rem); }
.section-head p { font-size: 1.1rem; color: var(--muted); margin: 0; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 4px 10px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 2px; }

.btn[hidden] { display: none !important; }
.btn-sm { padding: 9px 14px; font-size: .875rem; }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn .icon { width: 1.1em; height: 1.1em; }

.btn-primary { background: var(--brand-600); color: #fff; box-shadow: var(--shadow-xs); }
.btn-primary:hover { background: var(--brand-700); color: #fff; }

.btn-ghost {
  background: #fff; color: var(--zinc-700);
  border-color: var(--line); box-shadow: var(--shadow-xs);
}
.btn-ghost:hover { background: var(--zinc-50); color: var(--zinc-900); }

.btn-link { background: transparent; color: var(--brand-700); padding-left: 4px; padding-right: 4px; }
.btn-link:hover { color: var(--brand-800); text-decoration: underline; }

.btn-text { background: transparent; color: var(--zinc-600); font-weight: 500; }
.btn-text:hover { color: var(--zinc-900); }

.btn-quiet {
  background: transparent; color: var(--zinc-600);
  font-weight: 500; padding: 8px 12px; font-size: .9rem;
}
.btn-quiet:hover { background: var(--zinc-100); color: var(--zinc-900); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { flex: none; display: flex; }
.brand-logo { height: 32px; width: auto; flex: none; }

.main-nav { display: flex; gap: 4px; margin-left: 12px; }

.nav-mobile-extras { display: none; }

.main-nav > a {
  color: var(--zinc-600);
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 12px;
  border-radius: var(--radius-md);
}
.main-nav > a:hover { background: var(--zinc-100); color: var(--zinc-900); }

.nav-trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-chevron {
  width: 14px; height: 14px; color: var(--zinc-400);
  transition: transform .2s var(--ease-out);
}
.site-header.mega-open .nav-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.site-header.mega-open { background: #fff; backdrop-filter: none; }

.mega-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px -24px rgba(9, 9, 11, .28);
  animation: megaIn .16s var(--ease-out) both;
}
.mega-panel[hidden] { display: none; }
@keyframes megaIn { from { opacity: 0; transform: translateY(-6px) } to { opacity: 1; transform: none } }

.mega-inner {
  display: grid;
  grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr)) minmax(240px, 320px);
  gap: 40px; padding-top: 30px; padding-bottom: 32px;
}

.mega-inner.no-promo { grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr)); }

.mega-inner.is-split { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 48px; }

.mega-items { display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); gap: 0 20px; }

.mega-col { display: flex; flex-direction: column; }
.mega-col-wide .mega-items { flex: 1; align-content: start; }
.mega-more {
  display: inline-block; margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--brand-700);
}
.mega-col-wide .mega-more { display: block; }
.mega-more:hover { text-decoration: underline; }
.mega-head {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--zinc-500); margin: 0 0 12px;
}
a.mega-head:hover { color: var(--brand-700); }

.mega-item {
  position: relative;
  display: flex; align-items: flex-start; gap: 13px;
  padding: 11px 12px; margin: 0 -12px;
  border-radius: var(--radius-lg);
  transition: background .15s ease;
}
.mega-text { min-width: 0; flex: 1; }
.mega-item:hover { background: var(--zinc-50); }
.mega-icon {
  flex: none; width: 38px; height: 38px; border-radius: var(--radius-lg);
  display: grid; place-items: center;
  background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-600);
}
.mega-icon .icon { width: 19px; height: 19px; }
.mega-text { display: block; line-height: 1.45; }

.mega-text strong {
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--ink); font-size: .95rem; font-weight: 600;
}

.mega-text > span {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(2 * 1.45em);
  font-size: .88rem; color: var(--zinc-500);
}

.mega-soon {
  position: absolute; top: 13px; right: 12px;
  font-style: normal; font-size: .68rem; font-weight: 600;
  color: var(--zinc-500); background: var(--zinc-100);
  border: 1px solid var(--zinc-200); border-radius: var(--radius-md);
  padding: 1px 6px;
}

.mega-item.is-compact { align-items: center; padding: 7px 12px; gap: 11px; }
.mega-item.is-compact .mega-icon { width: 30px; height: 30px; border-radius: var(--radius-md); }
.mega-item.is-compact .mega-icon .icon { width: 16px; height: 16px; }

.mega-item.is-soon .mega-icon { background: var(--zinc-100); border-color: var(--zinc-200); color: var(--zinc-500); }

.mega-item.is-soon .mega-text strong { padding-right: 46px; }

.mega-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mega-card {
  display: flex; flex-direction: column; gap: 5px;
  padding: 20px; border-radius: var(--radius-xl);
  border: 1px solid var(--line); background: #fff;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.mega-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }
.mega-card .mega-icon { margin-bottom: 6px; }
.mega-card strong { color: var(--ink); font-size: 1rem; }
.mega-card-for { font-size: .8rem; font-weight: 600; color: var(--brand-700); }
.mega-card > span:not(.mega-card-for) { font-size: .87rem; color: var(--zinc-600); line-height: 1.5; }

.mega-promo {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  padding: 24px; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--brand-50), #eafafc);
  border: 1px solid var(--brand-100);
  transition: box-shadow .18s ease;
}
.mega-promo:hover { box-shadow: var(--shadow-md); }
.mega-promo-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--brand-700);
}
.mega-promo strong { color: var(--ink); font-size: 1.05rem; }
.mega-promo > span:not(.mega-promo-eyebrow):not(.mega-promo-cta) {
  font-size: .88rem; color: var(--zinc-600);
}
.mega-promo-cta { margin-top: auto; color: var(--brand-600); }
.mega-promo-cta .icon { width: 22px; height: 22px; }

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

.lang-picker { position: relative; }
.lang-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 10px;
  font-family: inherit; font-size: .75rem; font-weight: 500;
  color: var(--zinc-700); background: #fff;
  border: 1px solid var(--zinc-200); border-radius: var(--radius-md);
  cursor: pointer; transition: background .15s ease;
}
.lang-trigger:hover { background: var(--zinc-50); }
.lang-trigger .icon { width: 15px; height: 15px; color: var(--zinc-500); }

.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 60;
  min-width: 148px; margin: 0; padding: 5px; list-style: none;
  background: #fff; border: 1px solid var(--zinc-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.lang-picker.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button, .lang-menu .lang-option {
  display: block; width: 100%; text-align: left;
  font-family: inherit; font-size: .875rem; font-weight: 500; color: var(--zinc-700);
  background: none; border: 0; border-radius: var(--radius-md);
  padding: 8px 10px; cursor: pointer;
}
.lang-menu button:hover, .lang-menu .lang-option:hover { background: var(--zinc-100); color: var(--zinc-900); }
.lang-menu .lang-option[aria-current] { color: var(--brand-700); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex: none; }
.nav-toggle span { width: 22px; height: 2px; background: var(--zinc-700); border-radius: 2px; transition: .25s; }

.hero {
  position: relative;
  padding: 76px 0 84px;
  background:
    radial-gradient(900px 400px at 84% -10%, var(--brand-50), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--zinc-50) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.2rem, 4.8vw, 3.4rem); }
.hero-lead { font-size: 1.18rem; color: var(--zinc-600); max-width: 38ch; margin-bottom: 26px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero-bullets { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 0; }
.hero-bullets li {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--zinc-700); font-size: .95rem;
}
.hero-bullets .icon {
  width: 18px; height: 18px; padding: 2px;
  color: var(--brand-600); background: var(--brand-50);
  border: 1px solid var(--brand-100); border-radius: 50%;
  stroke-width: 2.6;
}

.appsource-badge { display: inline-block; margin-top: 28px; }
.appsource-badge img {
  height: 56px; width: auto;
  border-radius: var(--radius-md);
  transition: opacity .15s ease;
}
.appsource-badge:hover img { opacity: .85; }

.hero-visual { position: relative; }
.hero-shot {
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 10px;
}
.hero-shot img { border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute; bottom: -14px; left: 20px;
  background: var(--zinc-900); color: #fff; border-radius: var(--radius-md);
  padding: 8px 14px; font-weight: 500; font-size: .84rem;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.index-note { padding-top: 0; }
.note-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 30px; border-radius: var(--radius-xl);
  background: var(--bg-soft); border: 1px solid var(--line);
}
.note-icon {
  flex: none; width: 42px; height: 42px; border-radius: var(--radius-lg);
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--brand-100); color: var(--brand-600);
}
.note-icon .icon { width: 21px; height: 21px; }
.note-card h2 { font-size: 1.15rem; margin: 2px 0 8px; }
.note-card p { color: var(--zinc-600); max-width: 78ch; margin: 0; }
@media (max-width: 680px) {
  .note-card { flex-direction: column; gap: 14px; padding: 22px; }
}

.level-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  white-space: nowrap;
}
.level-badge.is-l1 { background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); }
.level-badge.is-l2 { background: #e6f4f5; color: #0f6f76; border: 1px solid #c5e6e8; }
.level-badge.is-l3 { background: var(--zinc-900); color: #fff; border: 1px solid var(--zinc-900); }

.tag-pill.is-level { background: none; border: 0; padding: 0; }
.tag-pill.is-level .level-badge {
  padding: 5px 13px;
  font-size: .8rem;
  letter-spacing: .01em;
}
.tag-pill.is-level .level-badge.is-l3 {
  background: var(--zinc-100); color: var(--zinc-700); border-color: var(--zinc-200);
}
.tag-pill.is-link { padding: 0; }
.tag-pill.is-link a {
  display: block; padding: 6px 13px; border-radius: 999px;
  color: inherit; text-decoration: none;
}
.tag-pill.is-link:hover { border-color: var(--brand-300); }
.product-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

.capabilities-section { background: var(--bg-soft); }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cap-col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 26px 28px; box-shadow: var(--shadow-xs);
}
.cap-col h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; margin: 0 0 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cap-col h3 .icon { color: var(--brand-600); width: 18px; height: 18px; flex: none; }
.cap-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.cap-col li {
  position: relative; padding-left: 20px;
  font-size: .93rem; line-height: 1.55; color: var(--zinc-600);
}
.cap-col li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand-200);
}

.req-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; max-width: 78ch; }
.req-list li {
  display: grid; gap: 4px;
  padding-left: 18px; border-left: 2px solid var(--brand-100);
}
.req-list strong { color: var(--ink); font-size: .98rem; }
.req-list span { color: var(--zinc-600); font-size: .93rem; line-height: 1.6; }

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

.features { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 26px 24px; box-shadow: var(--shadow-xs);
  transition: box-shadow .18s ease, border-color .18s ease;
}

.feature-grid.is-pair { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }

.feature-grid.is-trio { grid-template-columns: repeat(3, 1fr); }
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }
.feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius-lg); display: grid; place-items: center;
  margin-bottom: 16px;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  color: var(--brand-600);
}
.feature-icon .icon { width: 21px; height: 21px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .4em; }
.feature-card p { margin: 0; color: var(--body); font-size: .94rem; }

.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.solution-copy h2 { font-size: clamp(1.75rem, 3.2vw, 2.3rem); }
.solution-copy p { font-size: 1.06rem; }
.solution-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; }
.solution-visual img {
  border-radius: var(--radius-xl); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); padding: 10px; background: #fff;
}

.problem { background: var(--zinc-900); color: var(--zinc-400); }
.problem .section-head h2 { color: #fff; }
.problem .section-head p { color: var(--zinc-400); }

.problem-track { position: relative; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px; }
.problem-card {
  position: relative; z-index: 1;
  background: var(--zinc-800);
  border: 1px solid var(--zinc-700);
  border-radius: var(--radius-xl); padding: 28px;
}

.problem .flow-link .flow-path { stroke: rgba(0, 0, 0, .55); }
.problem .flow-link .flow-progress { stroke: var(--zinc-300); stroke-width: 2.5; }
.problem-icon {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: var(--radius-lg); margin-bottom: 16px;
  background: rgba(212, 25, 72, .16); color: var(--brand-300);
}
.problem-icon .icon { width: 17px; height: 17px; }
.problem-card h3 { color: #fff; font-size: 1.05rem; }
.problem-card p { margin: 0; color: var(--zinc-400); font-size: .95rem; }

.usecase-track { position: relative; }
.flow-link {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: visible;
}

.flow-link .flow-path {
  fill: none;
  stroke: var(--zinc-200);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 5 6;
}
.flow-link .flow-progress {
  fill: none;
  stroke: var(--zinc-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-check {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: #16a34a; color: #fff;
  box-shadow: 0 2px 6px rgba(9, 9, 11, .28);
  opacity: 0; transform: scale(.4);
  transition: opacity .26s var(--ease-out),
              transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.flow-check.is-on { opacity: 1; transform: none; }
.flow-check .icon { width: 15px; height: 15px; stroke-width: 3.2; }

.flow-dot {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--brand-500);
  opacity: 0; transform: scale(.4);
  transition: opacity .26s var(--ease-out),
              transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.flow-dot.is-on { opacity: 1; transform: none; animation: dotGlow 2.4s ease-in-out infinite; }
@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 51, 95, .55), 0 0 7px 1px rgba(240, 51, 95, .55); }
  50%      { box-shadow: 0 0 0 7px rgba(240, 51, 95, 0), 0 0 13px 3px rgba(240, 51, 95, .85); }
}

.usecase { position: relative; z-index: 1; }

.usecase {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px;
  align-items: center; padding: 40px 0;
}

.usecase.reverse .usecase-text { order: 2; }
.usecase-tag {
  display: inline-block; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  font-size: .72rem; color: var(--zinc-600); background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
  padding: 4px 10px; border-radius: var(--radius-md); margin-bottom: 14px;
}
.usecase-text h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.usecase-text p { font-size: 1.03rem; margin: 0; }

.usecase-cta { margin-top: 18px; padding-left: 0; white-space: normal; text-align: left; }

.usecase-cta { display: inline; }
.usecase-cta .icon { display: inline-block; vertical-align: -2px; margin-left: 6px; }

.usecase-text, .usecase-shot { min-width: 0; }
.usecase-cta .icon { transition: transform .2s var(--ease-out); }
.usecase-cta:hover .icon { transform: translateX(3px); }
.usecase-shot img {
  border-radius: var(--radius-xl); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); padding: 10px; background: #fff;
}

.pricing { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.billing-row { display: flex; flex-direction: column; align-items: center; }

.billing-toggle {
  position: relative;
  display: inline-flex; align-items: center;
  background: var(--zinc-100); border: 1px solid var(--zinc-200);
  border-radius: var(--radius-lg); padding: 3px;
}
.billing-thumb {
  position: absolute; top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  background: #fff; border-radius: 7px;
  box-shadow: 0 0 1px rgba(0, 0, 0, .08), 0 1px 3px rgba(0, 0, 0, .12);
  transition: transform .3s var(--ease-out);
}
.pricing[data-billing="annual"] .billing-thumb { transform: translateX(100%); }

.billing-toggle button {
  position: relative; z-index: 1;

  min-width: 136px;
  font: inherit; font-size: .875rem; font-weight: 600;
  border: none; background: transparent; color: var(--zinc-800);
  padding: 8px 16px; border-radius: var(--radius-md); cursor: pointer;
  opacity: .45;
  transition: opacity .2s ease;
}
.billing-toggle button:hover { opacity: .75; }
.billing-toggle button.is-active { opacity: 1; }

.billing-note {
  display: inline-flex; align-items: flex-start; gap: 5px;
  margin: 10px 0 0 46px;
  font-size: .84rem; font-weight: 600; color: var(--brand-600);
}

.billing-note .icon {
  width: 19px; height: 19px; margin-top: -7px;
  transform: scaleX(-1) rotate(-60deg);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  align-items: stretch; margin-top: 36px;
}
.plan {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 26px 22px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; height: 100%;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.plan:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }
.plan.featured { border-color: var(--brand-600); box-shadow: var(--shadow-md); }

.plan-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: .68rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  color: #fff; background: var(--brand-600);
  padding: 3px 9px; border-radius: var(--radius-md);
}
.plan-name { font-size: 1.1rem; margin: 0 0 2px; }
.plan-flows { font-size: .88rem; color: var(--muted); margin: 0 0 18px; }

.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 2px; }
.plan-amount { font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; }
.plan-period { font-size: .88rem; color: var(--muted); font-weight: 500; }
.plan-note { font-size: .82rem; color: var(--muted); margin: 0 0 20px; min-height: 1.4em; }

.pricing[data-billing="monthly"] .is-annual,
.pricing[data-billing="annual"] .is-monthly { display: none; }

.plan-features { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px;
  font-size: .89rem; color: var(--zinc-600);
}
.plan-features .icon { width: 15px; height: 15px; margin-top: .28em; color: var(--brand-600); }
.plan-features li.is-off, .plan-features li.is-off .icon { color: var(--zinc-400); }

.plan .btn { margin-top: auto; }
.pricing-note {
  text-align: center; font-size: .84rem; color: var(--muted);
  margin: 28px auto 0; max-width: 70ch;
}

.webinars { background: #fff; }
.webinar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.webinar-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.webinar-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }

.webinar-date {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.webinar-day {
  display: grid; place-items: center; flex: none;
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  line-height: 1.1;
}
.webinar-day .d { font-size: 1.25rem; font-weight: 700; color: var(--brand-700); letter-spacing: -.03em; }
.webinar-day .m { font-size: .66rem; font-weight: 600; text-transform: uppercase; color: var(--brand-600); letter-spacing: .05em; }

.webinar-when { flex: 1; min-width: 0; font-size: .86rem; color: var(--zinc-600); }
.webinar-when strong,
.webinar-when .webinar-time { display: flex; align-items: center; gap: 6px; }
.webinar-when strong { color: var(--ink); font-weight: 600; font-size: .92rem; margin-bottom: 2px; }
.webinar-when .icon { width: 14px; height: 14px; color: var(--zinc-400); }

.webinar-lang {
  align-self: flex-start; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  background: var(--zinc-100); border: 1px solid var(--line);
  font-size: .72rem; font-weight: 600; letter-spacing: .01em;
  color: var(--zinc-600); white-space: nowrap;
}
.webinar-lang .icon { width: 13px; height: 13px; color: var(--zinc-400); }

.webinar-card h3 { font-size: 1.05rem; margin-bottom: .45em; }
.webinar-card p { font-size: .92rem; margin: 0 0 20px; flex: 1; }
.webinar-card .btn { margin-top: auto; }

.webinar-empty {
  grid-column: 1 / -1; text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--radius-xl); padding: 40px;
}

.contact { background: var(--bg-soft); border-top: 1px solid var(--line); }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 0; align-items: stretch;
}
.contact-copy { padding: 48px 44px; align-self: center; }
.contact-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.contact-copy p { font-size: 1.03rem; max-width: 52ch; margin-bottom: 26px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.contact-person {
  margin: 0; padding: 36px 32px;
  background: var(--bg-soft); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center;
}
.contact-portrait {
  width: 168px; height: 168px; flex: none;
  border-radius: 50%; overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.contact-person strong { display: block; color: var(--ink); font-size: .95rem; }
.contact-person span { font-size: .85rem; color: var(--muted); }

.resources { background: #fff; }
.resource-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.resource-card {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease;
}
.resource-card:hover { transform: translateY(-3px); }
.resource-card.is-wide {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center;
}

.resource-body { padding: 34px 32px 26px; text-align: center; }
.resource-card.is-wide .resource-body { flex: 1; text-align: left; padding: 40px; }

.resource-icon {
  width: 40px; height: 40px; border-radius: var(--radius-lg);
  display: grid; place-items: center; margin: 0 auto 16px;
  background: rgba(255, 255, 255, .75);
}
.resource-card.is-wide .resource-icon { margin: 0 0 16px; }
.resource-icon .icon { width: 20px; height: 20px; }

.resource-card h3 { font-size: 1.3rem; margin-bottom: .35em; }
.resource-card p { font-size: .95rem; margin: 0 auto 18px; max-width: 40ch; }
.resource-card.is-wide p { margin-left: 0; }

.resource-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .97rem;
}
.resource-link:hover { text-decoration: underline; }
.resource-link .icon { width: 19px; height: 19px; }

.resource-shot { margin-top: auto; padding: 0 28px; }
.resource-card.is-wide .resource-shot { margin: 0; padding: 32px 40px 32px 0; width: 46%; }
.resource-shot img {
  width: 100%; border-radius: 12px 12px 0 0;
  border: 1px solid rgba(9, 9, 11, .08); border-bottom: 0;
  box-shadow: 0 -2px 16px -6px rgba(9, 9, 11, .18);
}
.resource-card.is-wide .resource-shot img { border-radius: 12px; border-bottom: 1px solid rgba(9, 9, 11, .08); }

.tone-brand { background: var(--brand-50); }
.tone-brand h3, .tone-brand .resource-link { color: var(--brand-900); }
.tone-brand p { color: #8a4358; }
.tone-brand .resource-icon { color: var(--brand-700); }

.tone-teal { background: #e9fbfd; }
.tone-teal h3, .tone-teal .resource-link { color: #0d4a52; }
.tone-teal p { color: #3d7078; }
.tone-teal .resource-icon { color: #10707c; }

.tone-zinc { background: var(--zinc-100); }
.tone-zinc h3, .tone-zinc .resource-link { color: var(--zinc-900); }
.tone-zinc p { color: var(--zinc-600); }
.tone-zinc .resource-icon { color: var(--zinc-700); }

.page-hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fff 0%, var(--zinc-50) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .35em; }
.page-lead {
  font-size: 1.12rem; color: var(--zinc-600);
  max-width: 62ch; margin: 0 auto;
}
.lead-copy { font-size: 1.12rem; color: var(--zinc-600); margin: 0; }

.tag-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; padding: 0; margin: 0 0 18px;
}

.pattern-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 34px;
  list-style: none; padding: 0;
  max-width: 980px; margin: -20px auto 68px;
}
.pattern { text-align: center; }
.pattern .tag-pill { margin-bottom: 12px; }
.pattern p { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--zinc-600); }
.tag-pill {
  display: inline-block;
  padding: 5px 13px; border-radius: 999px;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  color: var(--brand-700);
  font-size: .8rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
}

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 28px 26px; box-shadow: var(--shadow-xs);
  transition: box-shadow .18s ease, border-color .18s ease, transform .2s var(--ease-out);
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); transform: translateY(-3px); }
.product-card.is-soon { background: var(--zinc-50); box-shadow: none; }
.product-card.is-soon:hover { transform: none; box-shadow: none; border-color: var(--line); }
.product-icon {
  width: 42px; height: 42px; border-radius: var(--radius-lg);
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-600);
}
.product-icon .icon { width: 22px; height: 22px; }
.product-card h3 { font-size: 1.15rem; margin-bottom: .3em; }
.product-tagline { font-size: .95rem; font-weight: 600; color: var(--zinc-700); margin-bottom: .6em; }
.product-card p { font-size: .94rem; color: var(--body); }
.product-card .resource-link { margin-top: auto; color: var(--brand-700); }

.product-predecessor {
  margin: 0 0 4px !important;
  font-size: .84rem; color: var(--zinc-500);
}
.product-predecessor a {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; color: var(--zinc-600);
}
.product-predecessor a:hover { color: var(--brand-700); }
.product-predecessor .icon { width: 14px; height: 14px; }

.product-soon {
  margin-top: auto; font-size: .82rem; font-weight: 600;
  color: var(--zinc-500); background: var(--zinc-100);
  border: 1px solid var(--zinc-200); border-radius: var(--radius-md);
  padding: 4px 9px; align-self: flex-start;
}

.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 26px 24px; box-shadow: var(--shadow-xs);
}
.step-index {
  position: absolute; top: 18px; right: 20px;
  font-size: 1.6rem; font-weight: 700; line-height: 1;
  color: var(--zinc-200);
}
.step-icon {
  width: 38px; height: 38px; border-radius: var(--radius-lg);
  display: grid; place-items: center; margin-bottom: 15px;
  background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-600);
}
.step-icon .icon { width: 19px; height: 19px; }
.step-card h3 { font-size: 1.03rem; margin-bottom: .35em; }
.step-card p { font-size: .93rem; margin: 0; color: var(--body); }

.product-hero .hero-copy h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); }

.page-hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }

.steps-track { position: relative; }

.stepper {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(var(--steps, 4), 1fr); gap: 34px;
}
.step { position: relative; z-index: 1; }
.step-num {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 18px;
  background: #fff; border: 1px solid var(--line);
  font-size: 1.05rem; font-weight: 700; color: var(--zinc-400);
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.step h3 { font-size: 1.03rem; margin-bottom: .35em; }
.step p { font-size: .93rem; margin: 0; color: var(--body); }

.step-mark {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--brand-500); pointer-events: none;
  opacity: 0; transform: scale(.72);
  transition: opacity .26s var(--ease-out),
              transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.step-mark.is-on { opacity: 1; transform: none; }
.step:has(.step-mark.is-on) .step-num { color: var(--brand-700); border-color: var(--brand-200); }

.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch; }
.path-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 34px 32px; box-shadow: var(--shadow-xs);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.path-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }
.path-icon {
  width: 44px; height: 44px; border-radius: var(--radius-lg);
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-600);
}
.path-icon .icon { width: 22px; height: 22px; }
.path-card h3 { font-size: 1.3rem; margin-bottom: .2em; }
.path-for { font-size: .88rem; font-weight: 600; color: var(--brand-700); margin-bottom: .9em; }
.path-card > p { font-size: .97rem; color: var(--body); line-height: 1.65; }
.path-card .resource-link { margin-top: auto; padding-top: 18px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .18s ease, border-color .18s ease, transform .2s var(--ease-out);
}
.post-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); transform: translateY(-3px); }
.post-card-media { aspect-ratio: 16 / 9; background: var(--zinc-100); overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { display: flex; flex-direction: column; padding: 22px 24px 24px; flex: 1; }
.post-card h2 { font-size: 1.1rem; line-height: 1.35; margin-bottom: .5em; }
.post-card h2 a { color: var(--ink); }
.post-card h2 a:hover { color: var(--brand-700); }
.post-card p { font-size: .93rem; color: var(--body); }
.post-card .resource-link { margin-top: auto; color: var(--brand-700); font-size: .9rem; }

.post-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; color: var(--zinc-500); margin-bottom: .7em;
}
.post-category {
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  font-size: .72rem; color: var(--brand-700);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--radius-md); padding: 2px 8px;
}

.post-container { max-width: 760px; }
.post-header { padding: 52px 0 28px; border-bottom: 1px solid var(--line); background: var(--zinc-50); }
.post-header h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .3em; }
.post-excerpt { font-size: 1.1rem; color: var(--zinc-600); margin: 0; }

.post-hero-media, .post-video {
  display: block; position: relative; margin: 34px 0 8px;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.post-hero-media img, .post-video img { width: 100%; display: block; }
.post-video-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(9, 9, 11, .28); transition: background .2s ease;
}
.post-video:hover .post-video-play { background: rgba(9, 9, 11, .4); }
.post-video-play .icon {
  width: 30px; height: 30px; color: #fff; fill: #fff;
  background: var(--brand-600); border-radius: 50%; padding: 15px;
  box-shadow: var(--shadow-md);
}

.prose { padding: 28px 0 8px; }
.prose h2 { font-size: 1.35rem; margin: 1.6em 0 .5em; }
.prose p { font-size: 1.04rem; line-height: 1.75; color: var(--body); margin-bottom: 1.1em; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4em; }
.prose li {
  position: relative; padding-left: 26px; margin-bottom: 1em;
  font-size: 1.02rem; line-height: 1.7; color: var(--body);
}
.prose li::before {
  content: ""; position: absolute; left: 4px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand-400);
}
.post-footer {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 12px 0 64px; padding-top: 28px; border-top: 1px solid var(--line);
}

.legal-container { max-width: 760px; }

.legal-hero { padding-bottom: 40px; text-align: left; }
.legal-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-hero .page-lead { margin-left: 0; }
.legal-updated { margin-top: 14px; font-size: .9rem; color: var(--zinc-500); }
.legal-section { padding-top: 8px; }
.legal-prose h2 {
  font-size: 1.2rem; margin: 2.2em 0 .6em;
  padding-top: 1.1em; border-top: 1px solid var(--line);
}
.legal-prose h2:first-child { margin-top: .6em; padding-top: 0; border-top: 0; }
.legal-prose h3 { font-size: 1.02rem; margin: 1.8em 0 .5em; }
.legal-prose p { font-size: .99rem; line-height: 1.72; }
.legal-prose li { font-size: .99rem; }

.legal-lines { margin-bottom: 1.1em; }
.legal-lines span { display: block; }

.legal-table-scroll { overflow-x: auto; margin: 0 0 1.6em; -webkit-overflow-scrolling: touch; }
.legal-table { border-collapse: collapse; width: 100%; min-width: 540px; font-size: .92rem; }
.legal-table th, .legal-table td {
  text-align: left; vertical-align: top; padding: 10px 14px;
  border-bottom: 1px solid var(--line); line-height: 1.55;
}
.legal-table th { font-weight: 600; background: var(--bg-soft); white-space: nowrap; }
.legal-table td:first-child { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; white-space: nowrap; }
.legal-table tr:last-child td { border-bottom: 0; }

.legal-note {
  padding: 14px 18px; border-left: 3px solid var(--brand-400);
  background: var(--bg-soft); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: .94rem !important;
}

@media (max-width: 980px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .post-grid { grid-template-columns: 1fr; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.newsletter { background: var(--bg-soft); border-top: 1px solid var(--line); }

.newsletter-card {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  column-gap: 40px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm); padding: 40px 44px;
}
.newsletter-copy { display: contents; }
.newsletter-copy > * { grid-column: 1; }

.newsletter-copy .eyebrow { justify-self: start; }
.newsletter-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.newsletter-copy p { margin: 0; font-size: 1rem; max-width: 58ch; }

.newsletter-action { grid-column: 2; grid-row: 2 / span 3; margin-top: -4px; }

@media (max-width: 860px) {
  .newsletter-card { grid-template-columns: 1fr; padding: 32px 26px; }
  .newsletter-action { grid-column: 1; grid-row: auto; margin-top: 22px; }
}

.newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; }

.nl-trap {
  position: absolute; left: -5000px; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.newsletter-form input[type="email"] {
  flex: 1 1 200px; min-width: 0;
  padding: 12px 14px; font: inherit; font-size: .95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--zinc-300); border-radius: var(--radius-md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.newsletter-form input[type="email"]::placeholder { color: var(--zinc-400); }
.newsletter-form input[type="email"]:focus {
  outline: none; border-color: var(--brand-600);
  box-shadow: 0 0 0 3px var(--brand-50);
}
.newsletter-note {
  flex: 1 0 100%; margin: 2px 0 0; font-size: .85rem; color: var(--zinc-600);
}
.newsletter-note.is-error { color: var(--brand-700); }
.newsletter-note.is-ok { color: #15803d; }

.newsletter-note.is-demo {
  color: var(--zinc-700); background: var(--zinc-100);
  border: 1px dashed var(--zinc-300); border-radius: var(--radius-md);
  padding: 8px 10px;
}
.newsletter-legal { margin: 12px 0 0; font-size: .8rem; color: var(--zinc-500); }

[data-nl-trigger] { height: 1px; }

.nl-corner {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: min(340px, calc(100vw - 48px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: 0 20px 44px -18px rgba(9, 9, 11, .3);
  padding: 20px 22px 22px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .26s var(--ease-out), transform .26s var(--ease-out);
}
.nl-corner[hidden] { display: none; }
.nl-corner.is-open { opacity: 1; transform: none; }
.nl-corner strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: .3em; }
.nl-corner p { font-size: .89rem; margin-bottom: 12px; }
.nl-corner .newsletter-form { gap: 8px; }
.nl-corner .newsletter-form input[type="email"] { flex: 1 1 100%; }

.nl-corner .newsletter-legal { margin-top: 10px; font-size: .72rem; line-height: 1.5; }
.nl-corner-close {
  position: absolute; top: 10px; right: 10px;
  display: grid; place-items: center; width: 26px; height: 26px; padding: 0;
  color: var(--zinc-500); background: transparent;
  border: 0; border-radius: 50%; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.nl-corner-close:hover { background: var(--zinc-100); color: var(--zinc-900); }
.nl-corner-close .icon { width: 14px; height: 14px; }

@media (max-width: 560px) {
  .nl-corner { right: 12px; left: 12px; bottom: 12px; width: auto; }
}

.nl-modal {
  position: fixed; inset: 0; z-index: 190;
  display: grid; place-items: center; padding: 24px;
}
.nl-modal[hidden] { display: none; }

.nl-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(9, 9, 11, .62);
  backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .24s var(--ease-out);
}
.nl-modal.is-open .nl-modal-backdrop { opacity: 1; }

.nl-modal-panel {
  position: relative; width: min(560px, 100%);
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .55);
  padding: 36px 40px 32px;
  opacity: 0; transform: translateY(12px) scale(.98);
  transition: opacity .26s var(--ease-out), transform .26s var(--ease-out);
}
.nl-modal.is-open .nl-modal-panel { opacity: 1; transform: none; }

.nl-popup-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--brand-700); margin: 0 0 8px;
}
.nl-modal-panel strong {
  display: block; color: var(--ink);
  font-size: 1.5rem; line-height: 1.25; letter-spacing: -.02em; margin-bottom: .4em;
}
.nl-modal-panel > p { font-size: .97rem; margin-bottom: 18px; }
.nl-modal-panel .newsletter-legal { margin-top: 14px; }

.nl-modal-close {
  position: absolute; top: 14px; right: 14px;
  display: grid; place-items: center; width: 30px; height: 30px; padding: 0;
  color: var(--zinc-500); background: transparent;
  border: 0; border-radius: 50%; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.nl-modal-close:hover { background: var(--zinc-100); color: var(--zinc-900); }
.nl-modal-close .icon { width: 16px; height: 16px; }

@media (max-width: 560px) {
  .nl-modal { padding: 16px; }
  .nl-modal-panel { padding: 28px 22px 24px; }
}

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: #fff; padding: 0 22px; margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
}

.faq-item summary { -webkit-user-select: none; user-select: none; }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 0; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none;
  font-size: 1.3rem; font-weight: 400; line-height: 1; color: var(--zinc-400);
  transition: transform .2s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--body); font-size: .97rem; }

.statement { display: block; }

.statement-head { max-width: 900px; }
.statement h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.1; letter-spacing: -.025em; margin-bottom: 0;
}
.statement-body {
  margin-top: 36px; padding-top: 34px;
  border-top: 1px solid var(--line);

  columns: 2; column-gap: 60px;
}
.statement p {
  font-size: 1.06rem; line-height: 1.75; color: var(--zinc-600);
  margin: 0 0 1em; break-inside: avoid;
}
.statement p:last-child { margin-bottom: 0; }
.statement-section.is-opening { padding-top: 84px; }

.media-rows { display: grid; gap: 72px; }
.media-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.media-row.reverse .row-copy { order: 2; }

.media-row[id] { scroll-margin-top: 96px; }
.row-copy h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.2;
  letter-spacing: -.015em; margin-bottom: .5em;
}
.row-copy p { font-size: 1.05rem; line-height: 1.72; color: var(--body); margin: 0; }

.row-note {
  margin-top: 14px; padding-left: 14px;
  border-left: 2px solid var(--zinc-200);
  font-size: .93rem; font-style: italic; color: var(--zinc-400);
}

.row-note strong { font-weight: 600; font-style: italic; color: var(--zinc-500); }

.row-media { margin: 0; }
.row-media img {
  width: 100%; border-radius: var(--radius-xl);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}

.placeholder-box {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  aspect-ratio: 16 / 10; padding: 22px;
  background: var(--zinc-100);
  border: 1px dashed var(--zinc-300);
  border-radius: var(--radius-xl);
}
.placeholder-tag {
  align-self: flex-start; margin-bottom: auto;
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--zinc-500); background: #fff;
  border: 1px solid var(--zinc-200); border-radius: 999px; padding: 3px 9px;
}
.placeholder-caption { font-size: .88rem; line-height: 1.5; color: var(--zinc-500); max-width: 34ch; }

.bento-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(168px, auto); gap: 18px;
}
.bento-card {
  grid-column: span 2;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 26px 24px; box-shadow: var(--shadow-xs);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.bento-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }
.bento-card.is-wide { grid-column: span 3; }
.bento-card.is-full { grid-column: span 6; }
.bento-card.is-accent {
  background: linear-gradient(160deg, var(--brand-50), #eafafc);
  border-color: var(--brand-100);
}
.bento-icon {
  width: 40px; height: 40px; border-radius: var(--radius-lg);
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-600);
}
.bento-card.is-accent .bento-icon { background: #fff; }
.bento-icon .icon { width: 20px; height: 20px; }
.bento-card h3 { font-size: 1.08rem; margin-bottom: .4em; }
.bento-card.is-wide h3, .bento-card.is-full h3 { font-size: 1.25rem; }
.bento-card p { margin: 0; color: var(--body); font-size: .95rem; line-height: 1.6; }

.faq-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px;
  max-width: 1000px; margin: 0 auto; align-items: start;
}
.faq-col { min-width: 0; }

.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 40px; }
.quote-card {
  margin: 0; padding: 28px 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
}
.quote-card p { font-size: 1.02rem; line-height: 1.65; color: var(--ink); margin: 0 0 18px; }
.quote-card footer { display: flex; flex-direction: column; font-size: .88rem; }
.quote-card footer strong { color: var(--ink); }
.quote-card footer span { color: var(--zinc-500); }

.templates-section { background: var(--bg-soft); }

.proof-shot {
  margin: 34px auto 0; max-width: 860px;
}
.proof-shot img {
  width: 100%; border-radius: var(--radius-xl);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.proof-shot .placeholder-box { background: #fff; }

.tpl-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(var(--tpl-cols, 3), minmax(0, 1fr));
  max-width: min(100%, calc(var(--tpl-cols, 3) * 420px + (var(--tpl-cols, 3) - 1) * 22px));
  margin: 34px auto 0;
}
.tpl-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.tpl-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }

.tpl-preview {
  display: grid; place-items: center;
  height: 152px; padding: 16px 18px;
  background: var(--zinc-50); border-bottom: 1px solid var(--line);
}

.tpl-flow {

  --rowh: min(46px, calc(118px / var(--rows)));
  --node: clamp(14px, min(38px, calc(var(--rowh) - 8px)), 38px);
  --cell: calc(var(--node) + 18px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, var(--cell)));
  grid-auto-rows: var(--rowh);

  width: fit-content; max-width: 100%;
}
.tpl-edges {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible; pointer-events: none;
}

.tpl-edges line, .tpl-edges path {
  fill: none; stroke: var(--zinc-300); stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}
.tpl-node {
  position: relative; z-index: 1;
  display: grid; place-items: center; place-self: center;
  width: var(--node);
  aspect-ratio: 1; border-radius: 22%;
  border: 1.5px solid currentColor; background: #fff;
}
.tpl-node .icon { width: 58%; height: 58%; }
.tpl-node.is-trigger { color: #d99213; background: #fffbeb; }
.tpl-node.is-step    { color: #0e8ba0; background: #f2fcfd; }
.tpl-node.is-branch  { color: #9333ea; background: #faf5ff; }
.tpl-node.is-error   { color: #dc2626; background: #fef2f2; }

.tpl-body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.tpl-card h3 { font-size: 1.02rem; line-height: 1.3; margin-bottom: .4em; }
.tpl-card p { margin: 0 0 16px; color: var(--body); font-size: .93rem; line-height: 1.55; }

.tpl-card p { margin-bottom: auto; }
.tpl-card .btn-block { margin-top: 18px; }
.tpl-card .btn-block .icon { width: 16px; height: 16px; }

.terms-note-section { padding-top: 0; padding-bottom: 0; }

.start-section { padding-top: 0; }
.start-card {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: center;
  background: linear-gradient(160deg, var(--brand-50), #eafafc);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-xl); padding: 46px 48px;
  box-shadow: var(--shadow-xs);
}
.start-copy .eyebrow { background: #fff; border-color: var(--brand-100); }
.start-copy h2 {
  color: var(--ink); font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  line-height: 1.15; letter-spacing: -.02em; margin-bottom: .5em;
}
.start-copy p { margin: 0; max-width: 52ch; font-size: 1.04rem; line-height: 1.7; color: var(--zinc-600); }
.start-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.start-points {
  list-style: none; padding: 26px 24px; margin: 0;
  display: grid; gap: 14px;
  background: #fff; border: 1px solid var(--brand-100); border-radius: var(--radius-xl);
}
.start-points li { display: flex; align-items: flex-start; gap: 10px; font-size: .96rem; color: var(--body); }
.start-points .icon { color: var(--brand-600); margin-top: .18em; flex: none; }

.uc-grid {
  display: grid; grid-template-columns: repeat(var(--uc-cols, 3), minmax(0, 1fr)); gap: 22px;
  max-width: calc(var(--uc-cols, 3) * 380px + (var(--uc-cols, 3) - 1) * 22px);
  margin-inline: auto;
}
.uc-card {
  position: relative; min-width: 0;
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s var(--ease-out);
}
.uc-card:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); transform: translateY(-3px); }

.uc-shot {
  display: grid; place-items: center;
  aspect-ratio: 16 / 9; padding: 14px 16px; overflow: hidden;
  background: var(--zinc-50); border-bottom: 1px solid var(--line);
}
.uc-shot img { max-width: 100%; max-height: 100%; object-fit: contain; }
.uc-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.uc-body h3 { font-size: 1.08rem; line-height: 1.3; margin-bottom: .4em; }
.uc-body p { margin: 0 0 auto; font-size: .94rem; color: var(--body); }
.uc-body .resource-link { margin-top: 18px; color: var(--brand-700); }

.uc-body .resource-link::after { content: ""; position: absolute; inset: 0; }

.uc-links.is-related { background: var(--bg-soft); }

.uc-grid.is-wide { max-width: none; }
.uc-card.is-wide { flex-direction: row; }
.uc-card.is-wide .uc-shot {
  flex: none; width: 38%; max-width: 210px; aspect-ratio: auto; align-self: stretch;
  padding: 0; border-bottom: 0; border-right: 1px solid var(--line);
}

.uc-card.is-wide .uc-shot img {
  width: 100%; height: 100%; max-width: none; max-height: none;
  object-fit: cover; object-position: center;
}
.uc-card.is-wide .uc-body { padding: 22px 24px; }

@media (max-width: 1100px) {
  .uc-grid.is-wide { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .uc-card.is-wide { flex-direction: column; }
  .uc-card.is-wide .uc-shot {
    width: auto; max-width: none; aspect-ratio: 16 / 9;
    border-right: 0; border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .tpl-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .path-grid { grid-template-columns: 1fr; }
  .start-card { grid-template-columns: 1fr; gap: 30px; padding: 38px 32px; }
  .media-row, .media-row.reverse { grid-template-columns: 1fr; gap: 28px; }

  .stepper { grid-template-columns: 1fr; gap: 26px; }
  .step {
    display: grid; grid-template-columns: 46px 1fr;
    column-gap: 18px; align-items: start;
  }
  .step-num { margin-bottom: 0; grid-row: span 2; }
  .step h3 { align-self: center; margin-bottom: .3em; }
  .step p { grid-column: 2; }
  .media-row.reverse .row-copy { order: 0; }
  .media-rows { gap: 56px; }
  .statement-head { max-width: 100%; }
  .bento-card, .bento-card.is-wide { grid-column: span 3; }
  .quote-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .tpl-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .start-card { padding: 32px 24px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card, .bento-card.is-wide, .bento-card.is-full { grid-column: span 1; }
  .faq-columns { grid-template-columns: 1fr; }
  .statement-body { columns: 1; margin-top: 26px; padding-top: 26px; }
  .statement-section.is-opening { padding-top: 56px; }
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .step-grid { grid-template-columns: 1fr; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 28px;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(9, 9, 11, .82);
  backdrop-filter: blur(4px);
  animation: fadeIn .2s ease both;
}
.lightbox-panel {
  position: relative; width: min(980px, 100%);
  animation: popIn .28s var(--ease-out) both;
}
.lightbox-frame {
  position: relative; aspect-ratio: 16 / 9;
  background: #000; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .7);
}
.lightbox-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute; top: -46px; right: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0;
  color: #fff; background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%;
  cursor: pointer; transition: background .15s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .24); }
.lightbox-close .icon { width: 17px; height: 17px; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes popIn { from { opacity: 0; transform: translateY(10px) scale(.98) } to { opacity: 1; transform: none } }

body.no-scroll { overflow: hidden; }

@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox-close { top: -42px; }
}

.notfound { text-align: center; }

.notfound-flow { display: flex; justify-content: center; margin-bottom: 30px; }
.notfound-links {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 6px 18px; margin-top: 34px; font-size: .95rem; color: var(--zinc-500);
}
.notfound-links a { font-weight: 600; }

.site-footer { background: var(--bg-deep); color: var(--zinc-400); padding: 60px 0 26px; }

.footer-nl {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  column-gap: 40px;
  padding-bottom: 34px; margin-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-nl .eyebrow {
  grid-column: 1; justify-self: start;
  color: var(--brand-400); background: none; border-color: transparent;
  padding-left: 0; padding-right: 0; margin-bottom: 10px;
}
.footer-nl h2 { grid-column: 1; color: #fff; font-size: 1.45rem; margin: 0 0 8px; }
.footer-nl p { grid-column: 1; margin: 0; max-width: 62ch; font-size: .92rem; line-height: 1.6; }

.footer-nl-action { grid-column: 2; grid-row: 2 / span 3; margin-top: -12px; }

.footer-nl .newsletter-form input[type="email"] {
  color: #fff; background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
}
.footer-nl .newsletter-form input[type="email"]::placeholder { color: var(--zinc-500); }
.footer-nl .newsletter-form input[type="email"]:focus {
  border-color: var(--brand-400); box-shadow: 0 0 0 3px rgba(212, 25, 72, .28);
}
.footer-nl .newsletter-note { color: var(--zinc-400); }
.footer-nl .newsletter-note.is-error { color: var(--brand-300); }
.footer-nl .newsletter-note.is-ok { color: #4ade80; }
.footer-nl .newsletter-note.is-demo {
  color: var(--zinc-300); background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .18);
}
.footer-nl .newsletter-legal { color: var(--zinc-500); }
.footer-nl .newsletter-legal a { color: var(--zinc-400); text-decoration: underline; }
.footer-nl .newsletter-legal a:hover { color: #fff; }

@media (max-width: 860px) {
  .footer-nl { grid-template-columns: 1fr; }

  .footer-nl-action { grid-column: 1; grid-row: auto; margin-top: 20px; }
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 36px; }

.footer-logo { height: 30px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 32ch; font-size: .92rem; line-height: 1.6; }
.footer-brand h4, .footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer-brand h4 { margin-top: 26px; }
.footer-col ul, .footer-social { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--zinc-400); font-size: .91rem; }
.footer-col a:hover, .footer-social a:hover { color: #fff; }

.footer-col a.footer-all { display: inline-block; margin-top: 6px; color: var(--zinc-300); font-weight: 500; }

.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--zinc-400); font-size: .91rem;
}

.icon-brand { fill: currentColor; stroke: none; }
.footer-social .icon-brand { font-size: 1.05rem; }

.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .83rem; color: var(--zinc-500);
}
.footer-bottom a { color: var(--zinc-400); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 52ch; }
  .footer-brand h4 { margin-top: 22px; }
  .footer-social { flex-direction: row; gap: 22px; }
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

.funnel-section { padding: 56px 0 96px; background: var(--bg-soft); min-height: 70vh; }
.funnel-container { max-width: 720px; }

.funnel-intro { text-align: center; margin-bottom: 30px; }
.funnel-intro h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .35em; }
.funnel-intro .page-lead { font-size: 1.04rem; margin: 0 auto; max-width: 54ch; }

.funnel-intro[hidden] { display: none; }

.funnel-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); overflow: hidden;
}

.funnel-progress { padding: 20px 32px 0; }
.funnel-bar {
  height: 4px; border-radius: 999px; background: var(--zinc-200); overflow: hidden;
}
.funnel-bar span {
  display: block; height: 100%; width: 20%; border-radius: 999px;
  background: var(--brand-600); transition: width .34s var(--ease-out, ease);
}
.funnel-count {
  margin: 10px 0 0; font-size: .82rem; font-weight: 600; color: var(--muted);
  letter-spacing: .01em;
}
.funnel-progress[hidden] { display: none; }

.funnel-form { padding: 8px 32px 32px; }
.funnel-step {
  border: 0; margin: 0; padding: 24px 0 0; min-width: 0;
  opacity: 1; transform: none;
  transition: opacity .26s var(--ease-out, ease), transform .26s var(--ease-out, ease);
}

.funnel-step[hidden] { display: none !important; }

.funnel-step:focus, .funnel-step:focus-visible { outline: none; }
.funnel-step.is-entering { opacity: 0; transform: translateY(10px); }

.funnel-q {
  display: block; padding: 0; float: none; width: 100%;
  font-family: var(--font-display); color: var(--ink); font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem); line-height: 1.25;
  letter-spacing: -.021em; margin-bottom: .3em;
}
.funnel-help { margin: 0 0 22px; font-size: .95rem; color: var(--body); max-width: 52ch; }

.funnel-help.is-said {
  display: flex; align-items: center; gap: 12px; max-width: 56ch;
}
.funnel-avatar {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  object-fit: cover; object-position: center 18%;
  border: 1px solid var(--line); background: #fff;
}

.funnel-q:last-of-type { margin-bottom: .85em; }
.funnel-optional {
  display: inline-block; margin: -14px 0 14px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--brand-700); background: var(--brand-50);
  border: 1px solid var(--brand-100); border-radius: 999px; padding: 3px 10px;
}

.funnel-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.funnel-field { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.funnel-field.is-wide { grid-column: 1 / -1; }
.funnel-field label { font-size: .85rem; font-weight: 600; color: var(--zinc-700); }
.funnel-field input {
  padding: 12px 14px; font: inherit; font-size: .95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--zinc-300); border-radius: var(--radius-md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.funnel-field input::placeholder { color: var(--zinc-400); }
.funnel-field input:focus {
  outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 3px var(--brand-50);
}

.funnel-field.is-bad input { border-color: var(--brand-600); background: var(--brand-50); }

.funnel-hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.funnel-legal { margin: 18px 0 0; font-size: .8rem; color: var(--zinc-500); }
.funnel-legal a { color: var(--brand-700); text-decoration: underline; }

.funnel-error {
  margin: 14px 0 0; font-size: .88rem; font-weight: 600; color: var(--brand-700);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--radius-md); padding: 10px 12px;
}
.funnel-error[hidden] { display: none; }

.funnel-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.funnel-option {
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  text-align: left; cursor: pointer;
  padding: 16px 18px; font: inherit;
  background: #fff; border: 1px solid var(--zinc-300); border-radius: var(--radius-lg);
  color: var(--ink); font-weight: 600; font-size: 1rem;
  transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease, background .14s ease;
}
.funnel-option small {
  font-weight: 400; font-size: .84rem; color: var(--muted); line-height: 1.45;
}
.funnel-option:hover {
  border-color: var(--brand-400); background: var(--brand-50);
  transform: translateY(-1px); box-shadow: var(--shadow-sm);
}
.funnel-option:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 2px; }

.funnel-option.is-picked {
  border-color: var(--brand-600); background: var(--brand-50); color: var(--brand-800);
}

.funnel-option[aria-pressed="true"] {
  border-color: var(--brand-600); background: var(--brand-50); color: var(--brand-800);
}

.funnel-form textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: .95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--zinc-300); border-radius: var(--radius-md);
  resize: vertical; min-height: 120px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.funnel-form textarea::placeholder { color: var(--zinc-400); }
.funnel-form textarea:focus {
  outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 3px var(--brand-50);
}

.funnel-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
  justify-content: flex-end;
}

.funnel-done { padding: 44px 32px 40px; text-align: center; }
.funnel-done[hidden] { display: none; }
.funnel-done h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .3em; }
.funnel-done p { font-size: 1.02rem; max-width: 48ch; margin: 0 auto 1rem; }

.funnel-person { margin: 0 0 22px; }
.funnel-portrait {
  position: relative; width: 108px; height: 108px; margin: 0 auto;
  border-radius: 50%; overflow: visible;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
}
.funnel-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  border-radius: 50%;
}
.funnel-portrait-tick {
  position: absolute; right: -2px; bottom: -2px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-600); color: #fff; border: 3px solid #fff;
}
.funnel-portrait-tick .icon { width: 17px; height: 17px; }
.funnel-signature { margin: 20px 0 0; line-height: 1.4; }
.funnel-signature strong { display: block; color: var(--ink); font-size: .95rem; }
.funnel-signature span { font-size: .85rem; color: var(--muted); }
.funnel-done-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px;
}

.funnel-note {
  color: var(--zinc-700); background: var(--zinc-100);
  border: 1px dashed var(--zinc-300); border-radius: var(--radius-md);
  padding: 10px 12px; font-size: .86rem; max-width: 46ch; margin: 18px auto 0;
}
.funnel-note[hidden] { display: none; }

@media (max-width: 680px) {
  .funnel-section { padding: 32px 0 64px; }
  .funnel-progress { padding: 16px 20px 0; }
  .funnel-form { padding: 4px 20px 24px; }
  .funnel-fields { grid-template-columns: 1fr; }
  .funnel-options { grid-template-columns: 1fr; }
  .funnel-done { padding: 36px 20px 32px; }
  .funnel-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .funnel-step, .funnel-bar span, .funnel-option { transition: none; }
  .funnel-step.is-entering { opacity: 1; transform: none; }
}

.order-container { max-width: 820px; }

.order-form[hidden], .funnel-progress[hidden] { display: none !important; }
.order-card { padding: 0; }
.order-form { padding: 8px 32px 32px; }

.order-step {
  border: 0; margin: 0; padding: 24px 0 0; min-width: 0;
  opacity: 1; transform: none;
  transition: opacity .26s var(--ease-out, ease), transform .26s var(--ease-out, ease);
}
.order-step[hidden] { display: none !important; }

.order-step:focus, .order-step:focus-visible { outline: none; }
.order-step.is-entering { opacity: 0; transform: translateY(10px); }

.order-legend {
  display: block; width: 100%; padding: 0;
  font-size: 1.24rem; font-weight: 700; color: var(--ink); line-height: 1.3;
}
.order-help { margin: .4em 0 20px; font-size: .9rem; color: var(--muted); max-width: 52ch; }
.order-legend + .funnel-fields { margin-top: 20px; }

.order-subhead {
  margin: 28px 0 12px; font-size: 1rem; font-weight: 700; color: var(--ink);
  padding-top: 22px; border-top: 1px solid var(--line);
}

.order-step-name {
  display: block; margin-top: 2px;
  font-size: .95rem; font-weight: 700; color: var(--ink); letter-spacing: 0;
}

.order-nav {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
  justify-content: flex-end; align-items: center;
}
.order-nav .btn[disabled] { opacity: .6; pointer-events: none; }

.order-radio {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 14px; margin-top: 10px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; cursor: pointer; font-size: .92rem; line-height: 1.45;
  transition: border-color .16s ease, background .16s ease;
}
.order-radio:hover { border-color: var(--zinc-300); }
.order-radio input { margin-top: .22em; accent-color: var(--brand-600); flex: none; }
.order-radio:has(input:checked) { border-color: var(--brand-600); background: var(--brand-50); }
.order-radio:focus-within { outline: 2px solid var(--brand-600); outline-offset: 2px; }

.order-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.order-item:first-of-type { padding-top: 6px; }
.order-item-head {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; cursor: default;
}
label.order-item-head { cursor: pointer; }
.order-item-head input[type="checkbox"] {
  accent-color: var(--brand-600); flex: none; align-self: center;
  width: 17px; height: 17px;
}
.order-item-name { font-weight: 650; color: var(--ink); font-size: .98rem; }
.order-item-meta { font-size: .82rem; color: var(--muted); }

.order-item-sum {
  margin-left: auto; font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.order-item-note {
  margin: .5em 0 0; font-size: .86rem; color: var(--muted);
  line-height: 1.5; max-width: 60ch;
}

.order-badge {
  display: inline-block; margin-top: 10px;
  padding: 3px 9px; border-radius: 999px;
  background: var(--zinc-100); color: var(--zinc-700);
  font-size: .74rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
}

.order-item:has([data-item-toggle]:not(:checked)) .order-item-sum,
.order-item:has([data-item-toggle]:not(:checked)) .order-item-name { color: var(--muted); }

.order-qty { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; flex-wrap: wrap; }
.order-qty label { font-size: .85rem; font-weight: 600; color: var(--zinc-700); }
.order-qty input {
  width: 5.5rem; padding: 9px 10px; font: inherit; color: var(--ink);
  border: 1px solid var(--zinc-300); border-radius: var(--radius-md); background: #fff;
  font-variant-numeric: tabular-nums;
}
.order-qty input:focus {
  outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 3px var(--brand-50);
}

.order-qty.is-bad input { border-color: var(--brand-600); background: var(--brand-50); }
.order-unit { font-size: .85rem; color: var(--muted); }

.order-item[data-kind="plan"] .order-item-sum { display: none; }

.order-plans { display: grid; gap: 10px; margin-top: 14px; }
.order-plan { align-items: center; }
.order-plan > span:first-of-type { display: flex; flex-direction: column; gap: 3px; }
.order-plan strong { font-weight: 650; color: var(--ink); font-size: .95rem; }
.order-plan small { font-size: .84rem; color: var(--muted); line-height: 1.45; }
.order-plan-price {
  margin-left: auto; text-align: right; white-space: nowrap;
  display: flex; flex-direction: column; align-items: flex-end;
}
.order-plan-price strong { font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.order-plan-price small { font-size: .78rem; color: var(--muted); }

.order-saves {
  align-self: flex-start; margin-top: 2px;
  padding: 2px 8px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-700);
  font-size: .74rem; font-weight: 700; letter-spacing: .01em;
}

.order-cycles { margin-top: 26px; }
.order-cycle { align-items: center; gap: 10px; }
.order-cycle > span:not(.order-saves) { font-weight: 600; color: var(--ink); }
.order-cycle .order-saves { margin-left: auto; align-self: center; }

.order-term {
  margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--zinc-700); line-height: 1.5;
}

.order-totals {
  margin-top: 22px; padding: 18px 20px;
  background: var(--zinc-100); border-radius: var(--radius-lg);
}

.order-totals.is-final {
  background: var(--brand-50); border: 1px solid var(--brand-200, var(--line));
}
.order-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  margin: 0; font-size: 1.12rem; font-weight: 700; color: var(--ink);
}
.order-totals.is-final .order-total { font-size: 1.3rem; }
.order-total strong { font-variant-numeric: tabular-nums; white-space: nowrap; }
.order-total.is-sub { margin-top: 8px; font-size: .95rem; font-weight: 600; color: var(--zinc-700); }
.order-totals.is-final .order-total.is-sub { font-size: 1rem; }
.order-net { margin: 14px 0 0; font-size: .8rem; color: var(--muted); }

.order-sum { margin-top: 22px; }
.order-sum-block { padding: 16px 0; border-bottom: 1px solid var(--line); }
.order-sum-block:first-child { padding-top: 0; }
.order-sum-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin: 0 0 10px; font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
}

.order-edit {
  border: 0; background: none; padding: 0; cursor: pointer;
  font: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  color: var(--brand-700); text-decoration: underline; text-transform: none;
}
.order-edit:hover { color: var(--brand-600); }
.order-edit:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 2px; border-radius: 2px; }

.order-sum-row, .order-sum-line {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  margin: 0 0 5px; font-size: .9rem; line-height: 1.45;
}
.order-sum-row span { color: var(--muted); flex: none; }
.order-sum-row strong { font-weight: 600; color: var(--ink); text-align: right; }
.order-sum-line span { color: var(--ink); }
.order-sum-line strong {
  font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--ink);
}
.order-sum-body p:last-child, .order-sum-lines p:last-child { margin-bottom: 0; }

.order-prefill {
  margin: 10px 0 0; font-size: .82rem; color: var(--muted); line-height: 1.5;
}
.order-prefill[hidden] { display: none; }

.order-declare {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 24px; padding: 15px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; font-size: .92rem; line-height: 1.5;
}
.order-declare input { margin-top: .2em; accent-color: var(--brand-600); flex: none; width: 17px; height: 17px; }
.order-declare label { cursor: pointer; }
.order-declare:has(input:checked) { border-color: var(--brand-600); background: var(--brand-50); }
.order-declare:focus-within { outline: 2px solid var(--brand-600); outline-offset: 2px; }
.order-declare a { color: var(--brand-700); text-decoration: underline; }

.order-declare.is-bad { border-color: var(--brand-600); }

.order-terms-link {
  border: 0; background: none; padding: 0; cursor: pointer;
  font: inherit; color: var(--brand-700); text-decoration: underline;
}
.order-terms-link:hover { color: var(--brand-600); }
.order-terms-link:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 2px; border-radius: 2px; }

.order-terms-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: min(80vh, 760px);
  padding: 0; border: 0; border-radius: var(--radius-xl);
  background: #fff; color: var(--body);
  box-shadow: 0 24px 60px rgba(9, 9, 11, .24);
  overflow: hidden;
}
.order-terms-dialog::backdrop { background: rgba(9, 9, 11, .62); }
.order-terms-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 24px 14px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff;
}
.order-terms-head h2 { margin: 0; font-size: 1.1rem; }
.order-terms-close {
  flex: none; width: 32px; height: 32px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: #fff; color: var(--muted); cursor: pointer;
}
.order-terms-close:hover { background: var(--zinc-100); color: var(--ink); }
.order-terms-close .icon { width: 15px; height: 15px; }
.order-terms-body {
  padding: 18px 24px 26px;
  overflow-y: auto; max-height: calc(min(80vh, 760px) - 68px);
  overscroll-behavior: contain;
}
.order-terms-body h3 {
  font-size: .98rem; font-weight: 700; color: var(--ink); margin: 1.4em 0 .4em;
}
.order-terms-body h3:first-child { margin-top: 0; }
.order-terms-body p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0 0 .7em; }

@media (max-width: 680px) {
  .order-form { padding: 4px 20px 24px; }
  .order-totals { padding: 16px; }
  .order-total { font-size: 1.02rem; }
  .order-totals.is-final .order-total { font-size: 1.14rem; }
  .order-nav .btn { flex: 1 1 auto; justify-content: center; }
  .order-sum-row, .order-sum-line { flex-direction: column; gap: 0; }
  .order-sum-row strong, .order-sum-line strong { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .order-step { transition: none; }
  .order-step.is-entering { opacity: 1; transform: none; }
}

:root {
  --ease-out: cubic-bezier(.16, .84, .44, 1);
  --dur: .62s;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--dur) var(--ease-out) var(--d, 0ms),
    transform var(--dur) var(--ease-out) var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; will-change: auto; }

.reveal.no-anim, .reveal-media.no-anim { transition: none; }

.reveal-media { opacity: 0; transform: translateY(26px) scale(.985); }
.reveal-media.in { opacity: 1; transform: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes riseVisual {
  from { opacity: 0; transform: translateY(26px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.hero-copy > *, .hero-visual { opacity: 0; animation: rise .72s var(--ease-out) forwards; }
.hero-copy > .eyebrow      { animation-delay: .05s; }
.hero-copy > h1            { animation-delay: .12s; }
.hero-copy > .hero-lead    { animation-delay: .20s; }
.hero-copy > .hero-cta     { animation-delay: .28s; }
.hero-copy > .hero-bullets { animation-delay: .35s; }
.hero-copy > .appsource-badge { animation-delay: .42s; }
.hero-visual { animation-name: riseVisual; animation-duration: .9s; animation-delay: .18s; }

@keyframes badgeIn {
  from { opacity: 0; transform: translateY(8px) scale(.94); }
  to   { opacity: 1; transform: none; }
}
.hero-badge { opacity: 0; animation: badgeIn .5s var(--ease-out) .85s forwards; }
.hero-badge .dot { animation: pulse 2.4s ease-in-out 1.4s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 213, 223, .55); }
  50%      { box-shadow: 0 0 0 6px rgba(63, 213, 223, 0); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-2.5%, 1.5%, 0) scale(1.06); }
}
.hero::before {
  content: ""; position: absolute; inset: -12% -6% auto -6%; height: 92%;
  background: radial-gradient(52% 60% at 82% 6%, var(--brand-100), transparent 68%);
  opacity: .5; animation: drift 22s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.hero-grid { position: relative; z-index: 1; }

.tilt-layer {
  transform-style: preserve-3d;
  transition: transform .45s var(--ease-out);
}
.tilt-layer.is-tilting { transition: none; }

.hero-visual { perspective: 1200px; }
.hero-tilt { position: relative; }

.usecase-shot { perspective: 900px; }
.usecase-tilt { position: relative; border-radius: var(--radius-xl); }

.usecase-tilt img { transition: box-shadow .3s var(--ease-out); }
.usecase-tilt:hover img { box-shadow: 0 18px 40px -22px rgba(9, 9, 11, .22); }

.btn-primary:hover, .btn-ghost:hover { transform: translateY(-1px); }
.btn-primary:active, .btn-ghost:active { transform: translateY(0); }
.feature-card:hover .feature-icon { transform: scale(1.06) rotate(-3deg); }
.feature-icon { transition: transform .25s var(--ease-out); }
.resource-link .icon { transition: transform .2s var(--ease-out); }
.resource-link:hover .icon { transform: translateX(3px); }
.plan.featured { transition: box-shadow .18s ease, border-color .18s ease, transform .3s var(--ease-out); }
.pricing-grid.in-view .plan.featured { transform: translateY(-6px); }
.webinar-card .btn { transition: background .15s ease, color .15s ease, border-color .15s ease; }
.webinar-card:hover .btn { border-color: var(--brand-600); color: var(--brand-700); }

.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { transition: height .25s var(--ease-out); }
.site-header.scrolled .header-inner { height: 62px; }
.brand-logo { transition: height .25s var(--ease-out); }
.site-header.scrolled .brand-logo { height: 28px; }

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

@media (max-width: 980px) {
  .hero-grid, .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid, .feature-grid.is-trio { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; gap: 56px; }
  .webinar-grid { grid-template-columns: 1fr; }
  .pattern-row { grid-template-columns: 1fr; gap: 22px; margin-bottom: 48px; }
  .usecase, .usecase.reverse { grid-template-columns: 1fr; gap: 24px; }
  .usecase.reverse .usecase-text { order: 0; }

  .usecase-text { padding-left: 42px; }
  .hero-visual { max-width: 560px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-copy { padding: 36px 28px; }
  .contact-person { border-left: 0; border-top: 1px solid var(--line); }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card.is-wide { flex-direction: column; align-items: stretch; }
  .resource-card.is-wide .resource-body { text-align: center; padding: 34px 32px 26px; }
  .resource-card.is-wide .resource-icon { margin: 0 auto 16px; }
  .resource-card.is-wide p { margin-left: auto; }
  .resource-card.is-wide .resource-shot { width: auto; margin-top: auto; padding: 0 28px; }
  .resource-card.is-wide .resource-shot img { border-radius: 12px 12px 0 0; border-bottom: 0; }
}

@media (max-width: 1180px) {
  .main-nav { gap: 0; }
  .main-nav > a { padding: 8px 9px; font-size: .875rem; }
  .header-inner { gap: 16px; }
}

@media (max-width: 1080px) {

  .site-header { background: #fff; backdrop-filter: none; --bar-h: 72px; }
  .site-header.scrolled { --bar-h: 62px; }
  .header-inner { position: relative; z-index: 2; background: #fff; }

  .main-nav {

    position: fixed; top: var(--bar-h, 72px); bottom: 0; left: 0; right: 0;
    z-index: 1;
    background: #fff; flex-direction: column; gap: 0;
    padding: 4px 24px 24px; margin: 0;
    overflow-y: auto;

    clip-path: inset(0 -40px 100% -40px);
    visibility: hidden;
    transition: clip-path .28s var(--ease-out), visibility .28s;
  }
  .main-nav.open {
    clip-path: inset(0 -40px -40px -40px);
    visibility: visible;
    box-shadow: 0 24px 40px -24px rgba(9, 9, 11, .28);
  }
  body.nav-open { overflow: hidden; }

  .main-nav > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; font-size: .98rem; font-weight: 500;
    border-bottom: 1px solid var(--line); border-radius: 0;
  }
  .main-nav > a:hover { background: none; }

  .nav-chevron { display: block; width: 18px; height: 18px; }
  .nav-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

  .main-nav .mega-panel {
    position: static; animation: none;
    border: 0; border-bottom: 1px solid var(--line);
    box-shadow: none; background: var(--zinc-50);
    margin: 0 -24px; padding: 4px 24px 12px;
  }
  .main-nav .mega-inner { display: block; padding: 0; }
  .main-nav .mega-col { padding: 0; }
  .main-nav .mega-head {
    display: block; padding: 12px 0 8px;
    font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
    color: var(--zinc-500);
  }
  .main-nav .mega-item { padding: 9px 0; border: 0; }

  .main-nav .mega-items { grid-template-columns: 1fr; }
  .main-nav .mega-cards { grid-template-columns: 1fr; gap: 8px; }
  .main-nav .mega-card { padding: 14px; }

  .main-nav .mega-promo { display: none; }

  .nav-toggle { display: flex; margin-left: -6px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile-extras {
    display: grid; gap: 10px;
    margin-top: auto; padding-top: 26px;
  }
  .nav-mobile-extras .btn { width: 100%; justify-content: center; font-size: .95rem; padding: 13px 16px; }

  .nav-mobile-extras .lang-picker { position: static; }
  .nav-mobile-extras .lang-trigger { display: none; }
  .nav-mobile-extras .lang-menu {

    position: relative; top: auto; right: auto; z-index: auto;
    opacity: 1; visibility: visible; transform: none;
    display: flex; min-width: 0; margin: 0;
    padding: 3px; border-radius: var(--radius-lg);
    background: var(--zinc-100); border: 1px solid var(--zinc-200);
    box-shadow: none;
  }
  .nav-mobile-extras .lang-menu .lang-option { flex: 1; }

  .nav-mobile-extras .lang-menu::before {
    content: ""; position: absolute; top: 3px; bottom: 3px; left: 3px;
    width: calc(50% - 3px);
    background: #fff; border-radius: 7px;
    box-shadow: 0 0 1px rgba(0, 0, 0, .08), 0 1px 3px rgba(0, 0, 0, .12);
    transition: transform .3s var(--ease-out);
  }
  .nav-mobile-extras .lang-menu:has(.lang-option:last-child[aria-current])::before {
    transform: translateX(100%);
  }
  .nav-mobile-extras .lang-menu button, .nav-mobile-extras .lang-menu .lang-option {
    position: relative; z-index: 1;
    flex: 1; text-align: center; padding: 10px 12px;
    border: 0; border-radius: var(--radius-md); background: none;
    font-weight: 600; color: var(--zinc-800);
    opacity: .45; transition: opacity .2s ease;
  }
  .nav-mobile-extras .lang-menu button:hover { opacity: .75; background: none; }
  .nav-mobile-extras .lang-menu button[aria-selected="true"] { opacity: 1; color: var(--zinc-900); }
}

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

  .header-inner { gap: 10px; }
  .brand-logo { height: 26px; }
  .header-actions { gap: 4px; }
  .header-actions .btn-primary { padding: 9px 11px; font-size: .82rem; }
  .header-actions .btn-text { padding: 8px 7px; font-size: .82rem; }
  .lang-switch { margin-right: 0; }
  .lang-switch button { padding: 4px 2px; font-size: .8rem; }
  .feature-grid, .feature-grid.is-pair, .feature-grid.is-trio, .pricing-grid { grid-template-columns: 1fr; }
  .resources-inner { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-media, .hero-copy > *, .hero-visual, .hero-badge {
    opacity: 1 !important; transform: none !important;
  }
  .pricing-grid.in-view .plan.featured { transform: none; }
  .hero::before { animation: none; }
  [data-parallax], .tilt-layer { transform: none !important; }
}

.consent-banner {
  position: fixed; z-index: 120; left: 16px; right: 16px; bottom: 16px;
  max-width: 560px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: 22px 24px;
}
.consent-banner h2 { font-size: 1.05rem; margin: 0 0 .5em; }
.consent-banner p { margin: 0; font-size: .93rem; line-height: 1.6; color: var(--body); }
.consent-more { color: var(--brand-700); text-decoration: underline; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.consent-actions .consent-btn { flex: 1 1 0; min-width: 0; justify-content: center; }

.consent-banner:focus { outline: none; }
.consent-banner:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 3px; }

.footer-linklike {
  appearance: none; background: none; border: 0; padding: 0;
  font: inherit; color: inherit; cursor: pointer; text-align: left;
}
.footer-linklike:hover { text-decoration: underline; }

@media (max-width: 460px) {
  .consent-actions { flex-direction: column; }
  .consent-actions .consent-btn { width: 100%; }
}

.product-hero .appsource-badge { display: inline-block; margin-top: 26px; }
.product-hero .appsource-badge img { height: 44px; width: auto; display: block; }
