:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6f737b;
  --faint: #9aa0a8;
  --paper: #ffffff;
  --soft: #f7f7f8;
  --soft-2: #f2f4f7;
  --line: #dfe3e8;
  --blue: #002fa7;
  --red: #e4002b;
  --orange: #ff4f00;
  --green: #127a4b;
  --black: #111111;
  font-family: Montserrat, "Helvetica Neue", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
p,
li,
a,
button,
strong,
span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 800;
}

.brand img {
  width: 164px;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  order: 2;
}

.nav-links a {
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 3;
}

.nav-download-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nav-download-button:hover,
.nav-download-button.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.locale-toggle {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  align-content: center;
  gap: 4px;
  place-items: center;
}

.mobile-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.locale-menu {
  position: relative;
}

.locale-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 132px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 24, 40, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.locale-popover.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.locale-option {
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.locale-option:hover,
.locale-option.active {
  background: var(--soft);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 72%, rgba(0, 47, 167, 0.12), transparent 34%),
    radial-gradient(circle at 83% 58%, rgba(255, 79, 0, 0.15), transparent 34%),
    radial-gradient(circle at 58% 72%, rgba(228, 0, 43, 0.08), transparent 38%),
    linear-gradient(#fff, #fbfbfa 48%, #fff);
}

.product-hero {
  min-height: calc(100vh - 72px);
  padding: 58px 0 0;
}

.product-hero.focused-hero {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 48px 0 0;
}

.product-hero h1 {
  max-width: 860px;
  font-size: 50px;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-title {
  display: grid;
  gap: 4px;
}

.hero-title span {
  display: block;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  color: #8a8f98;
  font-size: 18px;
  font-weight: 600;
}

.hero-subtitle {
  max-width: 760px;
  margin-top: 14px;
  color: #5d6570;
  font-size: 19px;
  line-height: 1.65;
}

.focused-hero-copy {
  order: 1;
  max-width: 940px;
}

.hero-conversion-copy {
  order: 2;
}

.hero-problem {
  display: grid;
  max-width: 780px;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-problem span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-problem p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}

.hero-release-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-release-note a {
  margin-left: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-actions-center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--black);
  font-weight: 900;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
}

.button.pill {
  min-width: 168px;
  border-radius: 999px;
}

.button.primary {
  background: var(--black);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-pill-row span {
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-product-stage {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 64px auto 0;
  padding-bottom: 76px;
}

.hero-real-shot-stage {
  order: 3;
  width: min(1180px, calc(100% - 48px));
  margin: 30px auto 0;
  padding-bottom: 72px;
}

.hero-social-console {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-platform-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1px;
  align-items: stretch;
  background: var(--line);
}

.hero-platform-strip > span,
.hero-platform-list,
.hero-ops-panel,
.hero-data-panel {
  background: #fff;
}

.hero-platform-strip > span {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-platform-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hero-platform-chip {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  background: #fff;
}

.hero-platform-chip i {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--platform-color);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.hero-platform-chip strong,
.hero-platform-chip em {
  display: block;
  grid-column: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-platform-chip strong {
  font-size: 14px;
}

.hero-platform-chip em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.hero-shot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 276px;
  gap: 1px;
  background: var(--line);
}

.hero-shot-focus {
  position: relative;
  min-width: 0;
  background: #fff;
}

.hero-shot-grid .desktop-client-shot {
  border: 0;
  border-radius: 0;
}

.hero-screenshot-loupe {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(320px, calc(100% - 48px));
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--blue);
  border-left-width: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-screenshot-loupe span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-screenshot-loupe strong {
  font-size: 17px;
  line-height: 1.18;
}

.hero-screenshot-loupe p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-ops-panel {
  display: grid;
  align-content: stretch;
  gap: 1px;
  min-width: 0;
  background: var(--line);
}

.hero-ops-panel > p {
  min-height: 54px;
  padding: 18px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-ops-panel ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.hero-ops-panel li {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fff;
}

.hero-ops-panel li span {
  width: max-content;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.hero-ops-panel li strong {
  font-size: 16px;
  line-height: 1.2;
}

.hero-ops-panel li em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.hero-data-panel {
  display: grid;
  gap: 1px;
  align-self: end;
  background: var(--line);
}

.hero-data-panel p {
  padding: 16px 18px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-data-panel dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.hero-data-panel div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  background: #fff;
}

.hero-data-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-data-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.hero-proof-rail {
  display: grid;
  grid-template-columns: 180px repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hero-proof-rail > span,
.hero-proof-rail article {
  background: #fff;
}

.hero-proof-rail > span {
  display: flex;
  min-height: 92px;
  align-items: center;
  padding: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof-rail article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  border-top: 4px solid var(--blue);
}

.hero-proof-rail article:nth-of-type(1) {
  border-top-color: #111;
}

.hero-proof-rail article:nth-of-type(2) {
  border-top-color: var(--blue);
}

.hero-proof-rail article:nth-of-type(3) {
  border-top-color: var(--green);
}

.hero-proof-rail strong {
  font-size: 14px;
  line-height: 1.15;
}

.hero-proof-rail p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.minimal-home {
  background: #fff;
}

.minimal-hero {
  padding: 74px 0 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 47, 167, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 47, 167, 0.05) 1px, transparent 1px),
    #fff;
  background-size: 40px 40px;
}

.minimal-home .button.pill {
  border-radius: 6px;
}

.minimal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: end;
}

.minimal-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.minimal-kicker {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.minimal-hero h1 {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.minimal-hero h1 span {
  display: block;
}

.minimal-hero-copy > p:not(.minimal-kicker):not(.minimal-note) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.minimal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.minimal-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.minimal-hero-facts {
  border: 1px solid var(--line);
  background: #fff;
}

.minimal-hero-facts dl {
  display: grid;
  margin: 0;
}

.minimal-hero-facts div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.minimal-hero-facts div:last-child {
  border-bottom: 0;
}

.minimal-hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.minimal-hero-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.minimal-product-frame {
  margin-top: 54px;
  padding: 18px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
  box-shadow: 0 28px 90px rgba(18, 24, 40, 0.1);
}

.minimal-product-frame .desktop-client-shot {
  overflow: hidden;
}

.minimal-product-frame .desktop-client-shot {
  border-radius: 0;
}

.minimal-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.56fr);
  gap: 46px;
  align-items: end;
}

.minimal-section-head .section-index {
  grid-column: 1 / -1;
}

.minimal-section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.minimal-section-head > p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.minimal-workflow {
  padding: 96px 0;
  background: #fff;
}

.minimal-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
}

.minimal-workflow-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.minimal-workflow-grid span,
.minimal-problem span,
.minimal-proof-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.minimal-workflow-grid strong {
  font-size: 24px;
  line-height: 1.12;
}

.minimal-workflow-grid p,
.minimal-proof-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.minimal-problem {
  padding: 0 0 96px;
  background: #fff;
}

.minimal-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.minimal-problem-grid article {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.minimal-problem-grid article + article {
  border-left: 1px solid var(--line);
  background: var(--soft);
}

.minimal-problem-grid p {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.minimal-service {
  background: #fff;
}

.minimal-proof {
  padding: 96px 0;
  background: var(--soft);
}

.minimal-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--line);
  background: var(--line);
}

.minimal-proof-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 28px;
  background: #fff;
}

.minimal-proof-grid strong {
  font-size: 24px;
  line-height: 1.14;
}

.minimal-trust {
  padding: 74px 0;
  background: #fff;
}

.minimal-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.8fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
}

.minimal-trust-grid h2 {
  margin-top: 10px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.minimal-trust-grid > p {
  color: var(--muted);
  line-height: 1.75;
}

.minimal-final {
  padding: 90px 0 100px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 47, 167, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 47, 167, 0.05) 1px, transparent 1px),
    #fff;
  background-size: 40px 40px;
  text-align: center;
}

.minimal-final .section-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.minimal-final h2 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 66px);
}

.preview-focus-section {
  background: var(--soft);
}

.preview-focus-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
}

.preview-focus-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.preview-focus-stage {
  margin-top: 42px;
  padding-bottom: 0;
}

.browser-product {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 34px 100px rgba(18, 24, 40, 0.16);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.browser-product-top {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.browser-product-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9dde3;
}

.browser-product-top strong {
  margin-left: 12px;
  color: #9aa0a8;
  font-size: 13px;
}

.browser-product-body {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 466px;
}

.product-side {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(247, 248, 250, 0.78);
}

.side-search {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #a1a6ae;
  font-size: 13px;
}

.product-side strong {
  margin: 14px 0 4px;
  font-size: 13px;
  color: var(--muted);
}

.product-side p {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #626872;
  font-size: 14px;
  font-weight: 700;
}

.product-side p.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 30px rgba(18, 24, 40, 0.08);
}

.product-canvas {
  padding: 34px;
}

.canvas-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.canvas-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.canvas-head h2 {
  margin-top: 6px;
  font-size: 42px;
}

.canvas-head strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 79, 0, 0.12);
  color: var(--orange);
  font-size: 12px;
  white-space: nowrap;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.context-grid article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    #fff;
  box-shadow: 0 20px 50px rgba(18, 24, 40, 0.08);
}

.context-grid span,
.section-index {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.context-grid h3 {
  margin: 40px 0 8px;
}

.context-grid p,
.surface-row p,
.workflow-card p,
.soft-feature-card p,
.narrow-copy p,
.showcase-grid p,
.promise-grid p,
.promise-grid li,
.legal p,
.legal li,
.support-row p,
.card p {
  color: var(--muted);
}

.timeline-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.timeline-line span {
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.desktop-client-shot {
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 28px 28px 0 0;
  background: #fff;
  box-shadow: 0 34px 100px rgba(18, 24, 40, 0.18);
}

.desktop-client-real-image {
  display: block;
  width: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: top left;
}

.hero-real-shot-stage .desktop-client-shot {
  min-height: auto;
}

.hero-real-shot-stage .desktop-client-real-image {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.desktop-client-titlebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #f6f7f9;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d5d9df;
}

.window-controls span:nth-child(1) {
  background: #ff5f57;
}

.window-controls span:nth-child(2) {
  background: #ffbd2e;
}

.window-controls span:nth-child(3) {
  background: #28c840;
}

.desktop-client-titlebar strong {
  color: var(--ink);
  font-size: 13px;
}

.desktop-client-titlebar em,
.client-toolbar strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 79, 0, 0.12);
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
  justify-self: end;
}

.desktop-client-body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 556px;
}

.desktop-client-nav {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  background: #111;
  color: #fff;
}

.desktop-client-nav strong {
  margin-bottom: 12px;
  font-size: 18px;
}

.desktop-client-nav button {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.desktop-client-nav button.active {
  background: #fff;
  color: var(--ink);
}

.desktop-client-main {
  padding: 28px;
  background:
    linear-gradient(180deg, #fff, #f7f8fa);
}

.client-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.client-search {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #8b929c;
  font-size: 13px;
  font-weight: 800;
}

.client-main-head {
  display: block;
}

.client-main-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.client-main-head h2 {
  max-width: 700px;
  margin-top: 6px;
  font-size: 34px;
}

.client-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.client-metric-row article {
  min-height: 58px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.client-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
  margin-top: 16px;
}

.client-account-table {
  grid-row: span 2;
}

.client-panel {
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 24, 40, 0.06);
}

.client-panel h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.client-account-row,
.client-task-row {
  display: grid;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.client-account-row {
  grid-template-columns: 34px minmax(74px, 0.75fr) minmax(72px, 0.7fr) minmax(92px, 1fr);
}

.client-task-row {
  grid-template-columns: 30px minmax(0, 1fr) auto;
}

.client-account-row:last-child,
.client-task-row:last-child {
  border-bottom: 0;
}

.client-account-row strong,
.client-task-row span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.platform-mark,
.client-task-row i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.client-task-row i {
  background: rgba(255, 79, 0, 0.12);
  color: var(--orange);
}

.client-account-row span,
.client-account-row em,
.client-task-row strong,
.record-panel p {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.client-task-row strong {
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 47, 167, 0.1);
  color: var(--blue);
  white-space: nowrap;
}

.record-panel p {
  min-height: 36px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.record-panel p:last-child {
  border-bottom: 0;
}

.analytics-panel {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 47, 167, 0.12), transparent 34%),
    #fff;
}

.sync-status-list {
  display: grid;
  gap: 10px;
}

.sync-status-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.sync-status-row:last-child {
  border-bottom: 0;
}

.sync-status-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.sync-status-row strong {
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(18, 122, 75, 0.1);
  color: var(--green);
  font-size: 12px;
  white-space: nowrap;
}

.section {
  padding: 108px 0;
  background: #fff;
}

.download-cta-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 88% 32%, rgba(255, 79, 0, 0.12), transparent 34%),
    var(--soft);
}

.download-cta-section.compact {
  padding: 48px 0;
}

.download-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(18, 24, 40, 0.08);
}

.download-cta-copy {
  display: grid;
  gap: 12px;
}

.download-cta-copy span {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 47, 167, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.download-cta-copy h2 {
  font-size: 42px;
}

.download-cta-copy p,
.download-cta-fallback {
  color: var(--muted);
}

.download-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.download-cta-actions .button {
  width: 100%;
  min-width: 0;
}

.download-cta-actions .button.disabled {
  border-color: rgba(17, 17, 17, 0.12);
  background: var(--soft);
  color: var(--muted);
  cursor: not-allowed;
}

.download-cta-detail {
  display: inline-flex;
  min-height: 44px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.download-cta-fallback {
  grid-column: 1 / -1;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 800;
}

.spacious-section {
  padding-top: 132px;
}

.audience-section {
  background:
    radial-gradient(circle at 14% 24%, rgba(0, 47, 167, 0.08), transparent 30%),
    radial-gradient(circle at 86% 60%, rgba(255, 79, 0, 0.1), transparent 32%),
    var(--soft);
}

.audience-grid {
  margin-top: 44px;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow-copy {
  display: grid;
  justify-items: center;
  max-width: 920px;
  gap: 18px;
  text-align: center;
}

.narrow-copy p:not(.section-index) {
  max-width: 760px;
  font-size: 19px;
}

.feature-row,
.surface-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.platform-support-section {
  background: #fff;
}

.platform-support-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
}

.platform-support-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.platform-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.platform-logo-card {
  display: grid;
  min-width: 0;
  min-height: 154px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(18, 24, 40, 0.07);
}

.platform-logo-mark {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-left: 5px solid var(--platform-color);
  border-radius: 8px;
  background: #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.platform-logo-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.platform-logo-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.platform-logo-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.interaction-support-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 47, 167, 0.08), transparent 30%),
    radial-gradient(circle at 88% 60%, rgba(255, 79, 0, 0.11), transparent 32%),
    #fbfbfa;
}

.interaction-support-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
}

.interaction-support-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.interaction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.interaction-card {
  display: grid;
  min-height: 174px;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(18, 24, 40, 0.07);
}

.interaction-card span {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.interaction-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.interaction-card p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.platform-capability-section {
  background: #fff;
}

.platform-capability-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.platform-capability-head p:not(.section-index),
.capability-note p {
  color: var(--muted);
  font-size: 18px;
}

.capability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.capability-table-shell {
  margin-top: 44px;
  overflow-x: auto;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(18, 24, 40, 0.08);
}

.capability-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.capability-table th,
.capability-table td {
  min-height: 58px;
  padding: 14px 12px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
  vertical-align: middle;
}

.capability-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.capability-table thead th:first-child,
.capability-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 190px;
  background: #fff;
}

.capability-table thead th:first-child {
  z-index: 3;
  background: var(--soft);
}

.capability-table tr:last-child th,
.capability-table tr:last-child td {
  border-bottom: 0;
}

.capability-table th:last-child,
.capability-table td:last-child {
  border-right: 0;
}

.capability-table tbody th {
  display: flex;
  gap: 10px;
  align-items: center;
}

.platform-mini-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--platform-color);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.capability-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.status-supported {
  border-color: rgba(18, 122, 75, 0.16);
  background: rgba(18, 122, 75, 0.1);
  color: var(--green);
}

.status-beta {
  border-color: rgba(0, 47, 167, 0.16);
  background: rgba(0, 47, 167, 0.1);
  color: var(--blue);
}

.status-planned {
  border-color: rgba(255, 79, 0, 0.2);
  background: rgba(255, 79, 0, 0.1);
  color: var(--orange);
}

.status-notOpen {
  border-color: rgba(17, 17, 17, 0.1);
  background: var(--soft);
  color: var(--muted);
}

.capability-note {
  margin-top: 18px;
}

.screenshot-showcase-section {
  background: var(--soft);
}

.screenshot-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.82fr);
  gap: 48px;
  align-items: end;
}

.screenshot-showcase-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.screenshot-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.screenshot-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(18, 24, 40, 0.08);
}

.screenshot-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.screenshot-copy h3 {
  font-size: 28px;
}

.screenshot-copy p {
  color: var(--muted);
  font-size: 15px;
}

.screenshot-copy em {
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.screenshot-copy code {
  width: 100%;
  word-break: break-all;
}

.product-screenshot-frame {
  overflow: hidden;
  align-self: stretch;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.product-screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 318px;
  object-fit: cover;
  object-position: top left;
}

.product-screenshot-titlebar {
  display: grid;
  grid-template-columns: 10px 10px 10px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #f6f7f9;
}

.product-screenshot-titlebar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d5d9df;
}

.product-screenshot-titlebar span:nth-child(1) {
  background: #ff5f57;
}

.product-screenshot-titlebar span:nth-child(2) {
  background: #ffbd2e;
}

.product-screenshot-titlebar span:nth-child(3) {
  background: #28c840;
}

.proof-ledger-section {
  background: #fff;
}

.service-help-section {
  background: #fff;
}

.service-help-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.service-help-head h2 {
  max-width: 780px;
  font-size: 42px;
  line-height: 1.08;
}

.service-help-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.service-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-help-card {
  display: grid;
  min-height: 220px;
  align-content: start;
  gap: 16px;
  padding: 26px;
  border-top: 5px solid var(--blue);
  background: #fff;
  color: var(--ink);
}

.service-help-card:nth-child(2) {
  border-top-color: var(--orange);
}

.service-help-card:nth-child(3) {
  border-top-color: var(--green);
}

.service-help-card span {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.service-help-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.service-help-card strong {
  align-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.proof-ledger-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 48px;
  align-items: end;
}

.proof-ledger-head h2 {
  max-width: 760px;
  font-size: 42px;
  line-height: 1.08;
}

.proof-ledger-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.proof-ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-ledger-card {
  display: grid;
  min-width: 0;
  min-height: 224px;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: #fff;
}

.proof-ledger-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-ledger-card strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.proof-ledger-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.proof-ledger-card:last-child {
  grid-column: auto;
}

.proof-ledger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: fit-content;
  max-width: min(1180px, calc(100% - 32px));
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-ledger-links a {
  min-height: 44px;
  padding: 11px 16px;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.product-screenshot-titlebar strong {
  padding-left: 6px;
  color: var(--muted);
  font-size: 12px;
}

.product-screenshot-body {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 286px;
}

.screenshot-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 14px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  background: #111;
}

.screenshot-sidebar i {
  display: block;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.screenshot-sidebar i:first-child {
  background: #fff;
}

.screenshot-canvas {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f7f8fa);
}

.shot-table {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.shot-table span {
  min-height: 27px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.shot-table span:nth-child(-n + 5) {
  background: var(--soft);
}

.shot-table span:nth-child(5n + 2),
.shot-table span:nth-child(5n + 3) {
  background: rgba(18, 122, 75, 0.1);
}

.shot-table span:nth-child(5n + 4) {
  background: rgba(255, 79, 0, 0.1);
}

.shot-queue-row,
.shot-log-row {
  display: grid;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: #fff;
}

.shot-queue-row {
  grid-template-columns: 34px minmax(0, 1fr) 72px;
}

.shot-log-row {
  grid-template-columns: 74px minmax(0, 1fr) 62px;
}

.shot-queue-row span,
.shot-queue-row strong,
.shot-queue-row em,
.shot-log-row strong,
.shot-log-row span,
.shot-log-row em {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
}

.shot-queue-row span {
  width: 22px;
  height: 22px;
  background: rgba(0, 47, 167, 0.16);
}

.shot-queue-row em,
.shot-log-row em {
  background: rgba(18, 122, 75, 0.16);
}

.shot-queue-row:nth-child(2) em,
.shot-log-row:nth-child(3) em {
  background: rgba(255, 79, 0, 0.18);
}

.shot-analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shot-analytics-grid span {
  min-height: 58px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0, 47, 167, 0.12), transparent),
    #fff;
}

.shot-chart {
  display: flex;
  height: 152px;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: #fff;
}

.shot-chart i {
  display: block;
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: var(--blue);
}

.shot-chart i:nth-child(1) {
  height: 42%;
}

.shot-chart i:nth-child(2) {
  height: 68%;
  background: var(--orange);
}

.shot-chart i:nth-child(3) {
  height: 54%;
}

.shot-chart i:nth-child(4) {
  height: 82%;
  background: var(--green);
}

.shot-chart i:nth-child(5) {
  height: 63%;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.open-client-section {
  padding-top: 72px;
  padding-bottom: 0;
}

.open-client-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 79, 0, 0.12), transparent 34%),
    #111;
  color: #fff;
  box-shadow: 0 28px 90px rgba(18, 24, 40, 0.18);
}

.open-client-panel h2 {
  font-size: 42px;
}

.open-client-panel p:not(.section-index) {
  max-width: 720px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.open-client-panel .button.primary {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.open-client-status {
  font-weight: 800;
}

.release-waiting-hero .hero-actions {
  justify-content: flex-start;
}

.release-waiting-section {
  background: #fff;
}

.release-waiting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.release-waiting-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 190px;
  padding: 26px;
  border-top: 5px solid var(--blue);
  background: #fff;
}

.release-waiting-card span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
}

.release-waiting-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.release-waiting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.download-card {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(18, 24, 40, 0.08);
}

.download-card h3 {
  font-size: 32px;
}

.download-card p {
  color: var(--muted);
}

.download-card h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.download-card strong {
  display: inline-flex;
  width: max-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 79, 0, 0.12);
  color: var(--orange);
  font-size: 13px;
}

.download-meta-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.download-meta-list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.download-meta-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.download-meta-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.download-meta-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.download-checksum-note {
  margin-top: -6px;
  font-size: 13px;
  font-weight: 800;
}

.installer-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.08);
}

.installer-trust-grid section {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: var(--soft);
}

.installer-trust-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.installer-trust-grid a,
.download-release-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.download-release-link {
  width: max-content;
  max-width: 100%;
}

.download-trust-section {
  background: #fff;
}

.download-trust-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: end;
}

.download-trust-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.download-trust-flow,
.install-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.download-trust-step,
.install-quick-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.download-trust-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.download-trust-step h3 {
  font-size: 28px;
}

.download-trust-step p,
.install-quick-card p {
  color: var(--muted);
}

.install-quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.install-quick-card {
  min-height: 210px;
  color: inherit;
  text-decoration: none;
}

.install-quick-card span {
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.install-quick-card:hover {
  border-color: rgba(0, 47, 167, 0.22);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  border-color: rgba(17, 17, 17, 0.14);
  background: #dfe3e8;
  color: #7d838c;
}

.soft-feature-card,
.surface-row article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(18, 24, 40, 0.07);
}

.soft-feature-card h3,
.surface-row h3 {
  margin-bottom: 80px;
}

.glow-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(0, 47, 167, 0.1), transparent 30%),
    radial-gradient(circle at 86% 56%, rgba(255, 79, 0, 0.14), transparent 32%),
    #fbfbfa;
}

.showcase-grid,
.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.showcase-grid > div:first-child,
.promise-grid > div:first-child {
  display: grid;
  gap: 18px;
}

.workflow-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 32px 90px rgba(18, 24, 40, 0.12);
}

.workflow-card article {
  display: grid;
  grid-template-columns: 64px 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.workflow-card article:last-child {
  border-bottom: 0;
}

.workflow-card span {
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.workflow-card strong {
  font-size: 15px;
}

.trust-strip-section {
  padding: 84px 0;
  background: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 8px solid var(--orange);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(18, 24, 40, 0.08);
}

.trust-strip h2 {
  font-size: 38px;
}

.trust-strip p:not(.section-index) {
  color: var(--muted);
}

.privacy-promise {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 47, 167, 0.12), transparent 32%),
    var(--black);
  color: #fff;
}

.privacy-promise .section-index {
  color: var(--orange);
}

.promise-grid p,
.promise-grid li {
  color: rgba(255, 255, 255, 0.76);
}

.promise-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 26px 26px 26px 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

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

.trust-boundary-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-boundary-card span {
  color: var(--orange);
  font-size: 36px;
  font-weight: 900;
}

.trust-boundary-card h2 {
  color: #fff;
  font-size: 42px;
}

.trust-boundary-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.trust-boundary-card li {
  color: rgba(255, 255, 255, 0.76);
}

.trust-boundary-matrix-section {
  background: #fff;
}

.trust-boundary-matrix-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.82fr);
  gap: 48px;
  align-items: end;
}

.trust-boundary-matrix-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.trust-boundary-matrix-shell {
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(18, 24, 40, 0.08);
}

.trust-boundary-matrix {
  width: 100%;
  border-collapse: collapse;
}

.trust-boundary-matrix th,
.trust-boundary-matrix td {
  padding: 22px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
  vertical-align: top;
}

.trust-boundary-matrix th:last-child,
.trust-boundary-matrix td:last-child {
  border-right: 0;
}

.trust-boundary-matrix tr:last-child th,
.trust-boundary-matrix tr:last-child td {
  border-bottom: 0;
}

.trust-boundary-matrix thead th {
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.trust-boundary-matrix tbody th {
  width: 210px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.trust-boundary-matrix td {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.trust-boundary-matrix td:nth-child(2) {
  color: var(--green);
}

.trust-boundary-matrix td:nth-child(3) {
  color: var(--ink);
}

.trust-boundary-matrix td:nth-child(4) {
  color: var(--orange);
}

.trust-data-flow-section {
  background: #fff;
}

.trust-data-flow-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.82fr);
  gap: 48px;
  align-items: end;
}

.trust-data-flow-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.trust-data-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.08);
}

.trust-data-flow-card {
  min-width: 0;
  padding: 28px;
  background: #fff;
}

.trust-data-flow-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.trust-data-flow-card h3 {
  margin-top: 30px;
  font-size: 26px;
  line-height: 1.08;
}

.trust-data-flow-card p {
  margin-top: 18px;
  color: var(--muted);
}

.trust-local-cloud-section {
  background: var(--soft);
}

.trust-local-cloud-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.82fr);
  gap: 48px;
  align-items: end;
}

.trust-local-cloud-head p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.trust-local-cloud-diagram {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.08);
}

.trust-local-cloud-node {
  min-width: 0;
  min-height: 320px;
  padding: 24px;
  background: #fff;
}

.trust-local-cloud-node span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.trust-local-cloud-node h3 {
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.12;
}

.trust-local-cloud-node ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.trust-local-cloud-node:nth-child(1) span,
.trust-local-cloud-node:nth-child(4) span {
  color: var(--blue);
}

.trust-local-cloud-node:nth-child(2) span {
  color: var(--green);
}

.trust-local-cloud-node:nth-child(3) span,
.trust-local-cloud-node:nth-child(5) span {
  color: var(--orange);
}

.trust-local-cloud-node:nth-child(1),
.trust-local-cloud-node:nth-child(4) {
  box-shadow: inset 0 4px 0 rgba(0, 47, 167, 0.72);
}

.trust-local-cloud-node:nth-child(2) {
  box-shadow: inset 0 4px 0 rgba(27, 128, 97, 0.72);
}

.trust-local-cloud-node:nth-child(3),
.trust-local-cloud-node:nth-child(5) {
  box-shadow: inset 0 4px 0 rgba(255, 79, 0, 0.72);
}

.trust-faq-section {
  background:
    radial-gradient(circle at 12% 26%, rgba(0, 47, 167, 0.08), transparent 30%),
    #fff;
}

.trust-faq-list {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

.trust-faq-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.trust-faq-item > span {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.trust-faq-item h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.trust-faq-item p {
  color: var(--muted);
}

.final-soft-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 79, 0, 0.14), transparent 34%),
    #fff;
}

.final-soft-cta .section-inner {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-panel,
.info-columns,
.feature-matrix {
  display: grid;
  gap: 18px;
}

.metric-panel {
  grid-template-columns: 1fr;
  align-content: center;
}

.metric-panel article,
.info-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(18, 24, 40, 0.07);
}

.metric-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.metric-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.1;
}

.info-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 230px;
}

.info-card h2 {
  font-size: 30px;
}

.info-card p,
.info-card li,
.support-row li,
.soft-feature-card li {
  color: var(--muted);
}

.info-card ul,
.support-row ul,
.soft-feature-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.dark-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.dark-card h2 {
  color: #fff;
}

.dark-card li {
  color: rgba(255, 255, 255, 0.76);
}

.feature-matrix {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-matrix .soft-feature-card {
  min-height: 300px;
}

.feature-matrix .soft-feature-card h3 {
  margin: 28px 0 22px;
}

.feature-scenario-hero .hero-actions {
  margin-top: 28px;
}

.scenario-intent-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.scenario-intent-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.scenario-entry-section,
.scenario-workflow-section {
  background: var(--soft);
}

.scenario-entry-grid,
.scenario-point-grid,
.scenario-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.scenario-entry-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.scenario-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scenario-related-card {
  color: inherit;
  text-decoration: none;
}

.scenario-related-card:hover {
  border-color: rgba(0, 47, 167, 0.24);
  box-shadow: 0 24px 80px rgba(18, 24, 40, 0.1);
}

.scenario-sales-section {
  background: #fff;
}

.scenario-sales-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.08);
}

.scenario-sales-card {
  min-width: 0;
  padding: 28px;
  background: #fff;
}

.scenario-sales-card h2 {
  margin-top: 32px;
  font-size: 26px;
  line-height: 1.08;
}

.scenario-sales-card p {
  margin-top: 18px;
  color: var(--muted);
}

.scenario-sales-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-sales-marker span {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.scenario-sales-overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scenario-sales-overview-card {
  display: grid;
  align-content: start;
  gap: 22px;
}

.scenario-sales-overview-card h3 {
  margin-bottom: 2px;
  font-size: 26px;
  line-height: 1.08;
}

.scenario-sales-flow {
  display: grid;
  gap: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.scenario-sales-preview {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.scenario-sales-preview:first-child {
  border-top: 0;
}

.scenario-sales-preview span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-sales-preview strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.scenario-sales-preview p {
  color: var(--muted);
  font-size: 15px;
}

.real-scenario-section {
  background: #fff;
}

.product-path-section {
  background: #fff;
}

.product-path-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.product-path-head p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.product-path-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1.8fr) minmax(180px, 0.58fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.08);
}

.product-path-summary,
.product-path-card {
  min-width: 0;
  background: #fff;
}

.product-path-summary {
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 28px;
}

.product-path-summary span,
.product-path-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-path-summary.result span {
  color: var(--orange);
}

.product-path-summary p {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
}

.product-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.08);
}

.product-path-card {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 28px;
}

.product-path-card strong {
  font-size: 26px;
  line-height: 1.08;
}

.product-path-card p {
  color: var(--muted);
}

.social-proof-section {
  background: var(--soft);
}

.social-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.social-proof-head p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.08);
}

.social-proof-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
  background: #fff;
}

.social-proof-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-proof-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-size: 58px;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.social-proof-metric small {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.social-proof-card p {
  color: var(--muted);
}

.real-scenario-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.real-scenario-head p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.real-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.08);
}

.real-scenario-card {
  min-width: 0;
  padding: 28px;
  background: #fff;
}

.real-scenario-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.real-scenario-topline span {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.real-scenario-card h3 {
  margin-top: 34px;
  font-size: 26px;
  line-height: 1.08;
}

.real-scenario-card dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.real-scenario-card dl div {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.real-scenario-card dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.real-scenario-card dd {
  margin: 0;
  color: var(--muted);
}

.release-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.support-contact {
  margin-top: 36px;
}

.support-contact a {
  color: var(--blue);
  font-weight: 900;
}

.support-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.support-ticket-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.support-ticket-panel > div:first-child {
  display: grid;
  gap: 14px;
}

.support-ticket-panel h2 {
  font-size: 36px;
}

.support-ticket-panel p:not(.section-index),
.support-ticket-form small {
  color: var(--muted);
}

.support-ticket-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-ticket-form label {
  display: grid;
  gap: 8px;
}

.support-ticket-form label span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.support-ticket-form input,
.support-ticket-form select,
.support-ticket-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.support-ticket-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.support-ticket-form input[type="file"] {
  padding: 10px 14px;
  background: #fff;
}

.support-ticket-form input:focus,
.support-ticket-form select:focus,
.support-ticket-form textarea:focus {
  border-color: rgba(0, 47, 167, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 47, 167, 0.08);
}

.support-ticket-wide,
.support-ticket-form .button {
  grid-column: 1 / -1;
}

.card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.card h3,
.card h4 {
  margin: 0 0 10px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.tag.green {
  color: var(--green);
}

.tag.gold {
  color: var(--orange);
}

.notice {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--orange);
  border-radius: 16px;
  background: #fff;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.matrix th,
.matrix td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.matrix th {
  background: var(--soft);
  font-size: 13px;
}

.matrix tr:last-child td {
  border-bottom: 0;
}

.matrix td {
  color: var(--muted);
}

.matrix td:first-child {
  width: 260px;
  color: var(--ink);
}

.legal {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.legal article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.legal ul,
.legal ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.legal-updated {
  margin-top: 12px;
  font-weight: 700;
}

.page-title {
  padding: 84px 0 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 79, 0, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(0, 47, 167, 0.94), rgba(0, 47, 167, 0.76)),
    var(--blue);
  color: #fff;
}

.soft-page-title {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  background:
    radial-gradient(circle at 14% 72%, rgba(0, 47, 167, 0.14), transparent 34%),
    radial-gradient(circle at 88% 36%, rgba(255, 79, 0, 0.18), transparent 32%),
    linear-gradient(#fff, #fbfbfa);
  color: var(--ink);
}

.soft-page-title p {
  color: var(--muted);
}

.page-title p {
  max-width: 840px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.soft-page-title p {
  color: var(--muted);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 48px;
  align-items: center;
}

.extension-preview {
  display: grid;
  justify-items: end;
}

.extension-window {
  display: grid;
  width: min(360px, 100%);
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(18, 24, 40, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.extension-window strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.extension-window span {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.polished-legal {
  max-width: 980px;
  border-top: 0;
}

.polished-legal article {
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.polished-legal article:last-child {
  margin-bottom: 0;
}

.support-list {
  display: grid;
  gap: 18px;
}

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

.help-home-hero {
  padding: 86px 0 54px;
  border-bottom: 1px solid rgba(0, 47, 167, 0.08);
  background:
    linear-gradient(180deg, rgba(0, 47, 167, 0.11), rgba(255, 255, 255, 0.92) 72%),
    linear-gradient(90deg, rgba(0, 47, 167, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 47, 167, 0.08) 1px, transparent 1px),
    #f7f8ff;
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.help-home-hero-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.help-home-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

.help-home-search {
  display: grid;
  grid-template-columns: 1fr 58px;
  width: min(760px, 100%);
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(0, 47, 167, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 47, 167, 0.1);
}

.help-home-search input {
  min-width: 0;
  border: 0;
  padding: 0 22px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  outline: none;
}

.help-home-search input::placeholder {
  color: rgba(17, 17, 17, 0.42);
  font-weight: 700;
}

.help-home-search button {
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(17, 17, 17, 0.06);
  background: #fff;
  cursor: pointer;
}

.help-home-search button span {
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transform: rotate(45deg);
}

.help-hot-question-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 720px;
}

.help-hot-question-list a {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 47, 167, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.help-hot-question-list a:hover {
  border-color: rgba(0, 47, 167, 0.35);
  color: var(--blue);
}

.help-home-hero .help-filter-group {
  justify-content: center;
  max-width: 900px;
}

.help-section-title {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 42px;
}

.help-section-title h2 {
  max-width: 820px;
  font-size: clamp(32px, 4.2vw, 52px);
}

.help-module-section,
.help-resource-section {
  background: #fff;
}

.help-module-grid,
.help-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.help-module-card,
.help-resource-card {
  display: grid;
  gap: 24px;
  min-height: 252px;
  align-content: space-between;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(18, 24, 40, 0.06);
}

.help-module-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.help-module-head h2 {
  font-size: 28px;
  line-height: 1.12;
}

.help-module-icon {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(0, 47, 167, 0.1);
}

.help-module-icon::before,
.help-module-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
}

.help-module-icon::before {
  inset: 10px 18px 10px 10px;
  border-radius: 8px;
}

.help-module-icon::after {
  inset: 10px 10px 10px 24px;
  border-radius: 8px;
  opacity: 0.72;
}

.help-module-icon-account::before,
.help-module-icon-account::after,
.help-module-icon-support::before,
.help-module-icon-support::after {
  border-radius: 50%;
}

.help-module-icon-sync::before,
.help-module-icon-updates::before {
  inset: 11px 9px auto;
  height: 8px;
}

.help-module-icon-sync::after,
.help-module-icon-updates::after {
  inset: auto 9px 11px;
  height: 8px;
}

.help-module-icon-queue::before,
.help-module-icon-solutions::before {
  inset: 9px;
  border-radius: 4px;
}

.help-module-icon-queue::after,
.help-module-icon-solutions::after {
  inset: 15px 9px auto;
  height: 3px;
  background: #fff;
}

.help-module-icon-client::before {
  inset: 10px 8px 14px;
  border-radius: 4px;
}

.help-module-icon-client::after {
  inset: auto 16px 8px;
  height: 4px;
  border-radius: 2px;
}

.help-module-icon-safe::before {
  inset: 8px 12px 10px;
  border-radius: 16px 16px 8px 8px;
}

.help-module-icon-safe::after {
  inset: 17px 18px 12px;
  border-radius: 4px;
  background: #fff;
}

.help-module-links {
  display: grid;
  gap: 12px;
}

.help-module-links a {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
}

.help-module-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}

.help-module-links a:hover {
  color: var(--blue);
}

.help-more-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.help-more-link::after {
  content: " >";
}

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

.help-knowledge-section {
  display: none;
}

.help-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.help-card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.help-search-section {
  padding-bottom: 0;
}

.help-search-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.help-search-panel label {
  display: grid;
  gap: 10px;
}

.help-search-panel label span,
.help-filter-group > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.help-search-panel input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.help-search-panel input:focus {
  border-color: rgba(0, 47, 167, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 47, 167, 0.08);
}

.help-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.help-filter-group button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.help-filter-group button.active,
.help-filter-group button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.help-knowledge-section {
  background: #fff;
}

.help-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-knowledge-panel {
  display: grid;
  gap: 28px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.help-knowledge-panel h2 {
  font-size: 40px;
}

.help-knowledge-panel p:not(.section-index) {
  margin-top: 10px;
  color: var(--muted);
}

.help-knowledge-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.08);
}

.help-knowledge-list a {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.help-knowledge-list a:hover {
  background: var(--soft);
}

.help-knowledge-list strong {
  color: var(--ink);
  font-size: 18px;
}

.help-knowledge-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.help-link-card {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.help-link-card span {
  width: max-content;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 47, 167, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.help-link-card h2 {
  font-size: 32px;
}

.help-link-card p {
  color: var(--muted);
}

.help-no-result {
  margin-top: 44px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.help-no-result p {
  color: var(--muted);
}

.help-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-detail-card {
  min-height: 420px;
}

.help-detail-card h2 {
  font-size: 36px;
}

.help-detail-card ol,
.help-detail-card ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.help-detail-card li {
  color: var(--muted);
}

.help-unsolved-section {
  background: #fff;
}

.help-unsolved-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: var(--soft);
}

.help-unsolved-card h2 {
  font-size: 40px;
}

.help-unsolved-card p:not(.section-index) {
  margin-top: 10px;
  color: var(--muted);
}

.support-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(18, 24, 40, 0.06);
}

.support-row h2 {
  font-size: 28px;
}

.support-row a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  padding: 38px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 0.9fr) minmax(260px, auto);
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  gap: 24px;
  align-items: start;
}

.footer-inner strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner span,
.footer-support span {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand,
.footer-support {
  min-width: 0;
}

.footer-support p {
  max-width: 420px;
  margin-bottom: 14px;
}

.footer-links {
  justify-content: flex-end;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
}

code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--blue);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.95em;
}

.mobile-density-action {
  display: none;
}

.mobile-scroll-hint {
  display: none;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header,
  .desktop-client-shot,
  .browser-product,
  .workflow-card,
  .extension-window,
  .interaction-card {
    background: #fff;
  }
}

@media (max-width: 1180px) {
  .nav {
    width: min(100% - 40px, 1240px);
    gap: 18px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a,
  .locale-toggle {
    padding-inline: 10px;
    font-size: 13px;
  }

  .platform-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .interaction-grid,
  .feature-matrix,
  .scenario-entry-grid,
  .scenario-point-grid,
  .scenario-sales-grid,
  .release-waiting-grid,
  .install-quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scenario-sales-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .context-grid,
  .feature-row,
  .surface-row,
  .info-columns,
  .help-card-grid,
  .help-knowledge-grid,
  .help-module-grid,
  .help-resource-grid,
  .help-result-list,
  .product-path-grid,
  .social-proof-grid,
  .service-help-grid,
  .screenshot-showcase-grid,
  .real-scenario-grid,
  .download-trust-flow,
  .trust-local-cloud-diagram,
  .trust-data-flow-grid,
  .trust-boundary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .minimal-hero-grid,
  .minimal-section-head,
  .minimal-trust-grid {
    grid-template-columns: 1fr;
  }

  .minimal-hero-grid {
    gap: 32px;
    align-items: start;
  }

  .minimal-hero-facts dl,
  .minimal-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .minimal-hero-facts div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .minimal-hero-facts div:last-child {
    border-right: 0;
  }

  .minimal-workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .minimal-workflow-grid article {
    min-height: 220px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 1100px) {
  .proof-ledger-head {
    grid-template-columns: 1fr;
  }

  .service-help-head {
    grid-template-columns: 1fr;
  }

  .proof-ledger-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-ledger-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .help-home-hero {
    padding: 56px 0 36px;
  }

  .help-home-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .help-home-search {
    grid-template-columns: 1fr 48px;
    min-height: 52px;
  }

  .help-home-search input {
    padding: 0 14px;
    font-size: 14px;
  }

  .help-hot-question-list {
    gap: 8px;
  }

  .help-hot-question-list a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .help-module-grid,
  .help-resource-grid,
  .help-result-list {
    grid-template-columns: 1fr;
  }

  .help-module-card,
  .help-resource-card {
    min-height: auto;
    padding: 22px;
  }

  .help-module-head h2 {
    font-size: 24px;
  }

  .proof-ledger-grid {
    grid-template-columns: 1fr;
  }

  .service-help-grid {
    grid-template-columns: 1fr;
  }

  .service-help-card {
    min-height: auto;
    padding: 22px;
  }

  .proof-ledger-card {
    min-height: auto;
    padding: 22px;
  }

  .proof-ledger-card:last-child {
    grid-column: auto;
  }

  .proof-ledger-links {
    display: grid;
    width: min(1180px, calc(100% - 32px));
  }

  .mobile-extra {
    display: none !important;
  }

  .mobile-density-action {
    display: grid;
    margin-top: 18px;
  }

  .mobile-density-action .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .mobile-scroll-hint {
    display: block;
    margin-top: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
  }

  .screenshot-showcase-grid,
  .platform-logo-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-showcase-grid::-webkit-scrollbar,
  .platform-logo-grid::-webkit-scrollbar,
  .hero-platform-list::-webkit-scrollbar,
  .hero-ops-panel ol::-webkit-scrollbar,
  .hero-data-panel dl::-webkit-scrollbar,
  .hero-proof-rail::-webkit-scrollbar {
    display: none;
  }

  .screenshot-showcase-grid .screenshot-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
  }

  .platform-logo-grid .platform-logo-card {
    flex: 0 0 min(64vw, 260px);
    scroll-snap-align: start;
  }

  .minimal-hero {
    padding-top: 42px;
    background-size: 28px 28px;
  }

  .minimal-hero-copy {
    gap: 14px;
  }

  .minimal-kicker {
    padding: 6px 9px;
    font-size: 12px;
  }

  .minimal-hero h1 {
    gap: 4px;
    font-size: 39px;
    line-height: 1;
  }

  .minimal-hero-copy > p:not(.minimal-kicker):not(.minimal-note) {
    font-size: 16px;
    line-height: 1.62;
  }

  .minimal-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .minimal-actions .button.pill {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
    text-align: center;
  }

  .minimal-note {
    font-size: 13px;
    line-height: 1.5;
  }

  .minimal-hero-facts dl,
  .minimal-proof-grid,
  .minimal-problem-grid {
    grid-template-columns: 1fr;
  }

  .minimal-hero-facts {
    display: none;
  }

  .minimal-hero-facts div {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .minimal-hero-facts dd {
    font-size: 22px;
  }

  .minimal-product-frame {
    width: 100%;
    margin-top: 26px;
    padding: 8px 0 0 8px;
    border-right: 0;
    box-shadow: none;
  }

  .minimal-product-frame .desktop-client-real-image {
    max-width: none;
    width: 760px;
    height: auto;
  }

  .minimal-product-frame .desktop-client-shot {
    overflow-x: auto;
    border-right: 0;
    border-bottom: 0;
    -webkit-overflow-scrolling: touch;
  }

  .minimal-workflow,
  .minimal-proof {
    padding: 66px 0;
  }

  .minimal-problem {
    padding-bottom: 66px;
  }

  .minimal-section-head {
    gap: 14px;
  }

  .minimal-section-head h2,
  .minimal-final h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .minimal-section-head > p:not(.section-index) {
    font-size: 15px;
    line-height: 1.65;
  }

  .minimal-workflow-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .minimal-workflow-grid article,
  .minimal-proof-grid article {
    min-height: auto;
    padding: 22px;
  }

  .minimal-workflow-grid strong,
  .minimal-proof-grid strong {
    font-size: 20px;
  }

  .minimal-problem-grid article {
    padding: 22px;
  }

  .minimal-problem-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .minimal-problem-grid p {
    font-size: 20px;
  }

  .minimal-proof-grid {
    margin-top: 26px;
  }

  .minimal-trust {
    padding: 58px 0;
  }

  .minimal-trust-grid {
    gap: 18px;
    padding: 22px;
  }

  .minimal-trust-grid h2 {
    font-size: 28px;
  }

  .minimal-trust-grid .button {
    width: 100%;
  }

  .minimal-final {
    padding: 64px 0 72px;
    background-size: 28px 28px;
    text-align: left;
  }

  .minimal-final .section-inner {
    justify-items: stretch;
  }
}

@media (max-width: 1100px) {
  .browser-product-body,
  .desktop-client-body,
  .download-cta-panel,
  .showcase-grid,
  .promise-grid,
  .trust-strip,
  .page-hero-grid,
  .platform-support-head,
  .platform-capability-head,
  .preview-focus-head,
  .screenshot-showcase-head,
  .product-path-head,
  .product-path-layout,
  .social-proof-head,
  .real-scenario-head,
  .trust-boundary-matrix-head,
  .trust-data-flow-head,
  .trust-local-cloud-head,
  .download-trust-head,
  .support-ticket-panel,
  .help-unsolved-card,
  .interaction-support-head {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .surface-row,
  .download-grid,
  .release-waiting-grid,
  .installer-trust-grid,
  .open-client-panel {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .platform-logo-grid,
  .interaction-grid,
  .context-grid,
  .info-columns,
  .help-card-grid,
  .help-knowledge-grid,
  .help-detail-grid,
  .feature-matrix,
  .scenario-entry-grid,
  .scenario-point-grid,
  .scenario-sales-grid,
  .scenario-related-grid,
  .product-path-grid,
  .social-proof-grid,
  .service-help-grid,
  .screenshot-showcase-grid,
  .real-scenario-grid,
  .download-trust-flow,
  .trust-local-cloud-diagram,
  .trust-data-flow-grid,
  .install-quick-grid,
  .trust-boundary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-side {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .desktop-client-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .desktop-client-nav strong {
    grid-column: 1 / -1;
  }

  .client-metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-workspace-grid {
    grid-template-columns: 1fr;
  }

  .client-account-table {
    grid-row: auto;
  }

  .extension-preview {
    justify-items: start;
  }

  .product-hero {
    min-height: auto;
  }

  h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  h2 {
    font-size: 32px;
  }

  .product-hero h1 {
    max-width: 760px;
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .canvas-head h2,
  .download-cta-copy h2,
  .service-help-head h2,
  .proof-ledger-head h2,
  .open-client-panel h2,
  .trust-boundary-card h2,
  .help-knowledge-panel h2,
  .help-unsolved-card h2,
  .download-hero h1,
  .download-final h2 {
    font-size: 32px;
  }

  .hero-product-stage {
    width: min(100% - 40px, 1180px);
  }

  .hero-platform-strip,
  .hero-shot-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-rail {
    grid-template-columns: 1fr;
  }

  .hero-platform-strip > span {
    min-height: auto;
    padding: 14px 16px;
  }

  .hero-ops-panel ol,
  .hero-data-panel dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-data-panel p {
    grid-column: 1 / -1;
  }

  .hero-screenshot-loupe {
    position: static;
    width: auto;
    margin: 1px;
    border-right: 0;
    border-bottom: 0;
    border-left-width: 6px;
    border-radius: 0;
  }
}

@media (max-width: 720px) {
  .nav {
    width: min(100% - 32px, 1240px);
    min-height: auto;
    padding: 10px 0;
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-height: 42px;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(18, 24, 40, 0.1);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--soft);
    color: var(--ink);
  }

  .nav-links a.active {
    background: var(--ink);
    color: #fff;
  }

  .locale-popover {
    right: 0;
    left: auto;
  }

  .section-inner,
  .footer-inner,
  .hero-center {
    width: min(100% - 32px, 1240px);
  }

  .product-hero {
    padding-top: 42px;
  }

  .focused-hero-copy {
    width: min(100% - 24px, 1240px);
  }

  .hero-conversion-copy {
    order: 3;
    width: min(100% - 32px, 1240px);
  }

  .hero-conversion-copy .hero-problem {
    margin-top: 24px;
  }

  .hero-product-stage {
    margin-top: 48px;
  }

  .hero-real-shot-stage {
    order: 2;
    width: min(100% - 32px, 1180px);
    margin-top: 22px;
    padding-bottom: 0;
  }

  .hero-social-console {
    display: flex;
    flex-direction: column;
  }

  .hero-shot-grid {
    order: 1;
  }

  .hero-platform-strip {
    order: 2;
  }

  .hero-proof-rail {
    order: 3;
  }

  .hero-real-shot-stage .hero-shot-grid {
    grid-template-columns: 1fr;
  }

  .hero-real-shot-stage .hero-platform-strip,
  .hero-real-shot-stage .hero-ops-panel,
  .hero-real-shot-stage .hero-proof-rail {
    display: grid;
  }

  .hero-real-shot-stage .hero-platform-strip {
    grid-template-columns: 1fr;
  }

  .hero-real-shot-stage .hero-platform-list,
  .hero-real-shot-stage .hero-ops-panel ol,
  .hero-real-shot-stage .hero-data-panel dl,
  .hero-real-shot-stage .hero-proof-rail {
    display: flex;
    gap: 1px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hero-real-shot-stage .hero-platform-chip,
  .hero-real-shot-stage .hero-ops-panel li,
  .hero-real-shot-stage .hero-data-panel div,
  .hero-real-shot-stage .hero-proof-rail > span,
  .hero-real-shot-stage .hero-proof-rail article {
    flex: 0 0 min(72vw, 240px);
    scroll-snap-align: start;
  }

  .hero-real-shot-stage .hero-data-panel div {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .hero-real-shot-stage .hero-proof-rail > span {
    align-items: flex-start;
  }

  .hero-real-shot-stage .desktop-client-real-image {
    aspect-ratio: 16 / 7;
    object-position: top left;
  }

  .hero-real-shot-stage .hero-screenshot-loupe {
    gap: 6px;
    padding: 12px;
  }

  .hero-real-shot-stage .hero-screenshot-loupe p {
    display: none;
  }

  .hero-platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-platform-chip {
    min-height: 68px;
    padding: 12px;
  }

  .hero-ops-panel ol,
  .hero-data-panel dl {
    grid-template-columns: 1fr;
  }

  .hero-proof-rail > span,
  .hero-proof-rail article {
    min-height: auto;
    padding: 16px;
  }

  .desktop-client-shot,
  .browser-product {
    min-height: auto;
    border-radius: 22px 22px 0 0;
  }

  .desktop-client-body,
  .browser-product-body {
    min-height: auto;
  }

  .desktop-client-nav,
  .product-side {
    padding: 16px;
  }

  .desktop-client-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    align-items: center;
    padding: 12px;
  }

  .desktop-client-nav button:nth-of-type(n + 5) {
    display: none;
  }

  .desktop-client-nav strong {
    display: none;
  }

  .desktop-client-nav button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
  }

  .product-side p:nth-of-type(n + 3) {
    display: none;
  }

  .desktop-client-main,
  .product-canvas {
    padding: 22px;
  }

  .client-main-head,
  .canvas-head,
  .workflow-card article {
    grid-template-columns: 1fr;
  }

  .client-main-head,
  .canvas-head {
    display: grid;
  }

  .timeline-line,
  .client-workspace-grid,
  .grid.three,
  .grid.two,
  .support-row,
  .support-ticket-form,
  .platform-logo-grid,
  .interaction-grid,
  .context-grid,
  .info-columns,
  .help-card-grid,
  .help-card-grid.compact,
  .help-knowledge-grid,
  .help-detail-grid,
  .feature-matrix,
  .scenario-entry-grid,
  .scenario-point-grid,
  .scenario-sales-grid,
  .scenario-related-grid,
  .product-path-layout,
  .product-path-grid,
  .social-proof-grid,
  .service-help-grid,
  .screenshot-showcase-grid,
  .real-scenario-grid,
  .download-trust-flow,
  .trust-local-cloud-diagram,
  .trust-data-flow-grid,
  .install-quick-grid,
  .trust-boundary-grid {
    grid-template-columns: 1fr;
  }

  .context-grid article {
    min-height: 132px;
  }

  .context-grid h3 {
    margin-top: 24px;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  h2 {
    font-size: 29px;
  }

  .product-hero h1 {
    font-size: 34px;
  }

  .hero-kicker {
    font-size: 16px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.62;
  }

  .canvas-head h2,
  .download-cta-copy h2,
  .service-help-head h2,
  .proof-ledger-head h2,
  .open-client-panel h2,
  .trust-boundary-card h2,
  .help-knowledge-panel h2,
  .help-unsolved-card h2,
  .download-hero h1,
  .download-checklist h2,
  .download-faq h2,
  .download-final h2 {
    font-size: 28px;
    line-height: 1.14;
  }

  .button.pill {
    width: 100%;
    min-width: 0;
  }

  .hero-actions,
  .hero-actions-center {
    width: 100%;
  }

  .product-hero .hero-actions-unavailable {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-hero .hero-actions-unavailable .button.pill {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    line-height: 1.2;
    text-align: center;
  }

  .support-entry-actions {
    width: 100%;
  }

  .open-client-panel,
  .trust-strip,
  .release-waiting-card,
  .download-card,
  .download-trust-step,
  .install-quick-card,
  .info-card,
  .help-link-card,
  .trust-local-cloud-node,
  .trust-faq-item,
  .support-row,
  .support-ticket-panel,
  .screenshot-card,
  .product-path-card,
  .product-path-summary,
  .social-proof-card,
  .soft-feature-card,
  .trust-boundary-card {
    padding: 22px;
    border-radius: 20px;
  }

  .download-meta-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .download-cta-section,
  .download-cta-section.compact {
    padding: 34px 0;
  }

  .download-cta-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .download-cta-actions {
    grid-template-columns: 1fr;
  }

  .desktop-client-titlebar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .desktop-client-titlebar em {
    display: none;
  }

  .client-account-row,
  .client-task-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .client-toolbar {
    grid-template-columns: 1fr;
  }

  .platform-mark,
  .client-task-row i {
    display: none;
  }

  .platform-logo-card,
  .interaction-card {
    min-height: 128px;
  }

  .screenshot-card {
    grid-template-columns: 1fr;
  }

  .product-screenshot-body {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .screenshot-sidebar {
    padding: 14px 10px;
  }

  .screenshot-canvas {
    padding: 14px;
  }

  .shot-analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-faq-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-boundary-matrix-shell {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .trust-boundary-matrix,
  .trust-boundary-matrix thead,
  .trust-boundary-matrix tbody,
  .trust-boundary-matrix tr,
  .trust-boundary-matrix th,
  .trust-boundary-matrix td {
    display: block;
    width: 100%;
  }

  .trust-boundary-matrix thead {
    display: none;
  }

  .trust-boundary-matrix tbody {
    display: grid;
    gap: 14px;
  }

  .trust-boundary-matrix tr {
    padding: 20px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(18, 24, 40, 0.07);
  }

  .trust-boundary-matrix tbody th {
    padding: 0 0 14px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 20px;
  }

  .trust-boundary-matrix tbody td {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .trust-boundary-matrix tbody td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .trust-boundary-matrix td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
  }

  .capability-table-shell {
    overflow-x: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .capability-table,
  .capability-table thead,
  .capability-table tbody,
  .capability-table tr,
  .capability-table th,
  .capability-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .capability-table thead {
    display: none;
  }

  .capability-table tbody {
    display: grid;
    gap: 14px;
  }

  .capability-table tbody tr {
    padding: 20px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(18, 24, 40, 0.07);
  }

  .capability-table tbody th {
    position: static;
    display: flex;
    width: 100%;
    padding: 0 0 14px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .capability-table tbody td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 42px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .capability-table tbody td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .capability-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
  }

  .matrix {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .section-inner,
  .footer-inner,
  .hero-center,
  .nav {
    width: min(100% - 24px, 1240px);
  }

  .brand img {
    width: 142px;
  }

  .locale-toggle {
    min-height: 32px;
    padding: 5px 9px;
    font-size: 12px;
  }

  .mobile-menu-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .product-hero h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.12;
  }

  .canvas-head h2,
  .download-cta-copy h2,
  .service-help-head h2,
  .proof-ledger-head h2,
  .open-client-panel h2,
  .trust-boundary-card h2,
  .help-knowledge-panel h2,
  .help-unsolved-card h2,
  .download-hero h1,
  .download-checklist h2,
  .download-faq h2,
  .download-final h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 18px;
  }

  .minimal-hero {
    padding-top: 34px;
  }

  .minimal-hero h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  .minimal-actions {
    grid-template-columns: 1fr;
  }

  .minimal-product-frame {
    margin-top: 22px;
  }

  .minimal-product-frame .desktop-client-real-image {
    width: 680px;
  }

  .minimal-section-head h2,
  .minimal-final h2 {
    font-size: 29px;
  }

  .minimal-workflow,
  .minimal-proof {
    padding: 58px 0;
  }

  .minimal-problem {
    padding-bottom: 58px;
  }

  .minimal-workflow-grid article,
  .minimal-proof-grid article,
  .minimal-problem-grid article,
  .minimal-trust-grid {
    padding: 18px;
  }

  .hero-kicker,
  .hero-subtitle,
  .platform-support-head p:not(.section-index),
  .platform-capability-head p:not(.section-index),
  .screenshot-showcase-head p:not(.section-index),
  .trust-boundary-matrix-head p:not(.section-index),
  .interaction-support-head p:not(.section-index),
  .narrow-copy p:not(.section-index) {
    font-size: 15px;
  }

  .soft-page-title,
  .page-title {
    padding: 72px 0 56px;
  }

  .section {
    padding: 58px 0;
  }

  .product-canvas {
    padding: 18px;
  }

  .product-screenshot-titlebar strong {
    font-size: 11px;
  }

  .product-screenshot-body {
    grid-template-columns: 1fr;
  }

  .screenshot-sidebar {
    display: none;
  }

  .shot-queue-row,
  .shot-log-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .canvas-head strong {
    width: max-content;
  }

  .timeline-line span {
    min-height: 32px;
    font-size: 11px;
  }

  .context-grid h3,
  .soft-feature-card h3,
  .surface-row h3 {
    margin-bottom: 20px;
  }

  .trust-boundary-card {
    min-height: auto;
  }

  .footer-inner span {
    gap: 10px;
  }
}

/* Tabbit-inspired homepage */
.tabbit-home {
  --tabbit-ink: #14120f;
  --tabbit-muted: rgba(20, 18, 15, 0.58);
  --tabbit-soft: #fff8f4;
  --tabbit-peach: #fbece4;
  --tabbit-line: rgba(20, 18, 15, 0.1);
  --tabbit-orange: #ff8a2a;
  --tabbit-yellow: #ffd976;
  --tabbit-green: #94e2b6;
  min-height: 100vh;
  color: var(--tabbit-ink);
  background: #fff;
}

.tabbit-reference-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: #fff;
}

.tabbit-reference-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tabbit-reference-brand {
  display: inline-flex;
  align-items: center;
}

.tabbit-reference-brand img {
  width: 148px;
  height: auto;
}

.tabbit-reference-left nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.tabbit-reference-left nav a,
.tabbit-reference-actions > a:first-child {
  color: #222;
  font-size: 14px;
  font-weight: 800;
}

.tabbit-reference-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tabbit-reference-actions > a:last-child,
.tabbit-reference-actions > button:last-child {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 18px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.download-verify-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 15, 28, 0.46);
}

.download-verify-dialog {
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.22);
}

.download-verify-dialog header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.download-verify-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.download-verify-dialog header button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}

.download-verify-dialog p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.download-verify-slider {
  position: relative;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: var(--soft);
  user-select: none;
  touch-action: none;
}

.download-verify-slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 47, 167, 0.16), rgba(255, 79, 0, 0.18));
}

.download-verify-slider span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.download-verify-slider-thumb {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  cursor: grab;
}

.download-verify-slider-thumb::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}

.download-verify-slider-thumb span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  transform: translateY(-1px);
}

.download-verify-slider.dragging .download-verify-slider-thumb {
  cursor: grabbing;
}

.tabbit-reference-actions > button:last-child {
  cursor: not-allowed;
  opacity: 0.72;
}

.tabbit-home h1,
.tabbit-home h2,
.tabbit-home p {
  margin: 0;
}

.tabbit-hero {
  position: relative;
  overflow: hidden;
  min-height: 920px;
  padding: 1px 24px 0;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 26%, var(--tabbit-peach) 100%);
}

.tabbit-home-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 0 auto;
  color: var(--tabbit-muted);
  font-size: 15px;
  font-weight: 800;
}

.tabbit-home-nav a:hover {
  color: var(--tabbit-ink);
}

.tabbit-hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 980px;
  margin: 214px auto 0;
  text-align: center;
}

.tabbit-hero-copy p {
  color: rgba(20, 18, 15, 0.26);
  font-size: 24px;
  font-weight: 800;
}

.tabbit-hero-copy h1 {
  font-size: clamp(82px, 12vw, 190px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
}

.tabbit-hero-copy strong {
  color: var(--tabbit-muted);
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.1;
}

.tabbit-downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 38px;
}

.tabbit-downloads.compact {
  margin-top: 28px;
}

.tabbit-download-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 238px;
}

.tabbit-download-card a {
  display: flex;
  min-height: 64px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 22px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(20, 18, 15, 0.18);
}

.tabbit-download-card a:hover {
  transform: translateY(-2px);
}

.tabbit-download-card b,
.tabbit-download-card small,
.tabbit-download-card em {
  display: block;
}

.tabbit-download-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.tabbit-download-card em {
  color: rgba(20, 18, 15, 0.42);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.tabbit-os-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tabbit-orange), #ff5b2f);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.tabbit-home .tabbit-download-note {
  max-width: 720px;
  margin: 14px auto 0;
  color: rgba(20, 18, 15, 0.45);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.tabbit-preview-wrap {
  position: relative;
  width: min(1050px, 70vw);
  margin: 118px auto -94px;
  perspective: 1400px;
}

.tabbit-hero-shot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  object-position: top left;
  opacity: 0.34;
  filter: saturate(0.82) brightness(1.12);
  box-shadow: 0 44px 130px rgba(120, 70, 34, 0.18);
  transform: rotateX(18deg);
  transform-origin: top center;
}

.tabbit-glow {
  position: absolute;
  inset: 15% 8% auto;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 160, 86, 0.55), rgba(255, 217, 118, 0.26) 40%, transparent 72%);
  filter: blur(22px);
}

.tabbit-browser {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 42px 130px rgba(92, 43, 14, 0.2);
  transform: rotateX(24deg);
  transform-origin: top center;
}

.tabbit-browser-top {
  display: grid;
  grid-template-columns: repeat(3, 12px) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--tabbit-line);
}

.tabbit-browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e3ddd8;
}

.tabbit-browser-top div {
  min-height: 34px;
  margin-left: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f5f2ef;
  color: rgba(20, 18, 15, 0.42);
  font-size: 13px;
  font-weight: 800;
}

.tabbit-browser-body {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  min-height: 582px;
}

.tabbit-browser aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border-right: 1px solid var(--tabbit-line);
  background: #fbfaf8;
}

.tabbit-browser aside b {
  margin-bottom: 18px;
  font-size: 22px;
}

.tabbit-browser aside span {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--tabbit-muted);
  font-weight: 800;
}

.tabbit-browser aside span:nth-child(3) {
  background: #fff;
  color: var(--tabbit-ink);
  box-shadow: 0 10px 28px rgba(20, 18, 15, 0.06);
}

.tabbit-browser section {
  padding: 36px;
}

.tabbit-command {
  min-height: 72px;
  padding: 21px 24px;
  border: 1px solid rgba(20, 18, 15, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #fff8f4);
  color: rgba(20, 18, 15, 0.5);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 20px 55px rgba(92, 43, 14, 0.1);
}

.tabbit-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.tabbit-panels article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(20, 18, 15, 0.08);
}

.tabbit-panels span,
.tabbit-context-card strong {
  color: #d96922;
  font-size: 13px;
  font-weight: 900;
}

.tabbit-panels strong {
  font-size: 24px;
  line-height: 1.1;
}

.tabbit-panels p,
.tabbit-feature-stack p,
.tabbit-voices p,
.tabbit-faq p,
.tabbit-final p,
.tabbit-omnibox p {
  color: var(--tabbit-muted);
  font-weight: 700;
  line-height: 1.7;
}

.tabbit-omnibox,
.tabbit-feature-stack,
.tabbit-voices,
.tabbit-faq,
.tabbit-final {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.tabbit-omnibox {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 138px 0 88px;
}

.tabbit-home h2 {
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.tabbit-omnibox form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--tabbit-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(20, 18, 15, 0.08);
}

.tabbit-omnibox input {
  min-height: 48px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--tabbit-ink);
  font: inherit;
  outline: 0;
}

.tabbit-omnibox button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font: inherit;
  font-weight: 900;
}

.tabbit-feature-stack {
  display: grid;
  gap: 28px;
  padding: 26px 0 88px;
}

.tabbit-feature-stack > article,
.tabbit-voices,
.tabbit-faq,
.tabbit-final {
  border: 1px solid var(--tabbit-line);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 20px 80px rgba(20, 18, 15, 0.07);
}

.tabbit-model-card,
.tabbit-agent-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.58fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
}

.tabbit-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tabbit-models span {
  min-height: 58px;
  padding: 17px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8f4, #fff);
  font-weight: 900;
  text-align: center;
}

.tabbit-context-card {
  display: grid;
  gap: 26px;
  padding: 42px;
  background: linear-gradient(135deg, #fff, #fff8f4) !important;
}

.tabbit-context-card > div,
.tabbit-split-card,
.tabbit-voices > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tabbit-context-card section,
.tabbit-split-card section,
.tabbit-voices article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--tabbit-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.tabbit-agent-card {
  background: #15120f !important;
  color: #fff;
}

.tabbit-agent-card p {
  color: rgba(255, 255, 255, 0.68);
}

.tabbit-agent-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.tabbit-agent-card li {
  counter-increment: step;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.tabbit-agent-card li::before {
  content: counter(step, decimal-leading-zero);
  margin-right: 14px;
  color: var(--tabbit-yellow);
}

.tabbit-split-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
}

.tabbit-split-card section {
  min-height: 280px;
}

.tabbit-privacy-card {
  display: grid;
  gap: 20px;
  justify-items: start;
  padding: 42px;
  background: linear-gradient(135deg, #eafaf1, #fff) !important;
}

.tabbit-privacy-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-weight: 900;
}

.tabbit-voices,
.tabbit-faq,
.tabbit-final {
  display: grid;
  gap: 24px;
  margin-bottom: 88px;
  padding: 42px;
}

.tabbit-voices {
  background: #fff8f4;
}

.tabbit-voices strong {
  font-size: 22px;
}

.tabbit-home .tabbit-voices {
  display: block;
  width: 100%;
  max-width: none;
  overflow: hidden;
  gap: 14px;
  margin: 0 0 70px;
  padding: 88px 0 74px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  text-align: center;
}

.tabbit-voices-head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.tabbit-home .tabbit-voices .tabbit-voices-head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.tabbit-home .tabbit-voices h2 {
  color: #050505;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.tabbit-voices-case-link {
  display: inline-flex;
  min-height: 38px;
  width: max-content;
  align-items: center;
  justify-self: center;
  gap: 8px;
  margin-top: 6px;
  padding: 0 17px 0 21px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.tabbit-voices-case-link span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  font-size: 18px;
  line-height: 1;
}

.tabbit-home .tabbit-voice-track {
  --voice-start-offset: -88px;
  --voice-loop-distance: 2016px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  margin-top: 44px;
  padding: 0 0 24px;
  animation: tabbit-voice-marquee 42s linear infinite;
  transform: translateX(var(--voice-start-offset));
  will-change: transform;
}

.tabbit-home .tabbit-voices:hover .tabbit-voice-track {
  animation-play-state: paused;
}

.tabbit-command-map {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 150px;
}

.tabbit-command-mark {
  position: relative;
  width: 86px;
  height: 72px;
  margin: 0 auto 42px;
}

.tabbit-command-mark span {
  position: absolute;
  display: block;
  width: 48px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6a15b, #ed7525);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 14px 26px rgba(237, 117, 37, 0.18);
}

.tabbit-command-mark span:nth-child(1) {
  left: 4px;
  top: 28px;
  transform: rotate(-45deg);
}

.tabbit-command-mark span:nth-child(2) {
  left: 32px;
  top: 12px;
  transform: rotate(45deg);
}

.tabbit-command-mark span:nth-child(3) {
  left: 38px;
  top: 42px;
  transform: rotate(45deg);
}

.tabbit-command-stage {
  position: relative;
  min-height: 520px;
}

.tabbit-command-input {
  position: relative;
  z-index: 3;
  width: min(760px, 78vw);
  height: 124px;
  margin: 0 auto;
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(20, 18, 15, 0.09);
}

.tabbit-command-placeholder {
  position: absolute;
  left: 26px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(20, 18, 15, 0.28);
  font-size: 18px;
  font-weight: 800;
}

.tabbit-command-placeholder::before {
  content: "";
  width: 15px;
  height: 13px;
  border: 2px solid #ff8b31;
  border-radius: 3px;
  box-shadow: -2px 2px 0 #fff;
}

.tabbit-command-left-tools,
.tabbit-command-right-tools {
  position: absolute;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tabbit-command-left-tools {
  left: 18px;
}

.tabbit-command-right-tools {
  right: 18px;
}

.tabbit-command-left-tools span,
.tabbit-command-right-tools span {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f4f4;
  color: rgba(20, 18, 15, 0.32);
  font-size: 15px;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(20, 18, 15, 0.03);
}

.tabbit-command-left-tools span:nth-child(2)::before,
.tabbit-command-right-tools span::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.tabbit-command-left-tools span:nth-child(2)::after,
.tabbit-command-right-tools span:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.tabbit-command-right-tools span:nth-child(2)::before {
  border-radius: 2px;
  transform: rotate(8deg);
}

.tabbit-command-right-tools span:nth-child(3)::before {
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  transform: rotate(-135deg);
}

.tabbit-command-lines {
  position: absolute;
  inset: 92px 0 auto;
  height: 190px;
  pointer-events: none;
}

.tabbit-command-lines span {
  position: absolute;
  display: block;
  border-color: rgba(20, 18, 15, 0.13);
}

.tabbit-command-lines span:nth-child(1) {
  left: calc(50% - 378px);
  top: 0;
  width: 1px;
  height: 156px;
  border-left: 1px solid rgba(20, 18, 15, 0.13);
}

.tabbit-command-lines span:nth-child(2) {
  left: calc(50% - 344px);
  top: 32px;
  width: 304px;
  height: 94px;
  border-left: 1px solid rgba(20, 18, 15, 0.13);
  border-top: 1px solid rgba(20, 18, 15, 0.13);
  border-right: 1px solid rgba(20, 18, 15, 0.13);
  border-radius: 0 12px 0 0;
}

.tabbit-command-lines span:nth-child(3) {
  right: calc(50% - 378px);
  top: 0;
  width: 1px;
  height: 156px;
  border-left: 1px solid rgba(20, 18, 15, 0.13);
}

.tabbit-command-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 246px 246px 298px;
  gap: 62px;
  align-items: start;
  justify-content: center;
  margin-top: 116px;
}

.tabbit-command-cards article {
  min-height: 120px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 18, 15, 0.08);
  border-radius: 22px;
  background: rgba(247, 247, 249, 0.92);
  box-shadow: 0 38px 78px rgba(20, 18, 15, 0.08);
}

.tabbit-command-cards h3 {
  margin: 0;
  color: #080808;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.25;
}

.tabbit-command-cards p {
  margin: 12px 0 0;
  color: rgba(20, 18, 15, 0.72);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.tabbit-command-card-2 {
  margin-top: 0;
}

.tabbit-command-card-3 {
  min-height: 178px;
}

.tabbit-command-models {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
}

.tabbit-command-models span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #3b3b3b;
  font-size: 9px;
  font-weight: 950;
  box-shadow: 0 7px 18px rgba(20, 18, 15, 0.09);
}

.tabbit-command-models span:nth-child(1) {
  color: #ff5f8f;
}

.tabbit-command-models span:nth-child(2) {
  color: #4667ff;
}

.tabbit-command-models span:nth-child(3) {
  color: #050505;
}

.tabbit-command-models span:nth-child(4) {
  color: #050505;
}

.tabbit-command-models span:nth-child(5) {
  color: #7c5cff;
}

.tabbit-command-models span:nth-child(6) {
  color: #5d62ff;
}

.tabbit-command-models span:nth-child(7) {
  color: #25d66f;
}

.tabbit-context-flow {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 80px;
  text-align: center;
}

.tabbit-context-flow-copy h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #080808;
  font-size: clamp(36px, 3.15vw, 46px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.tabbit-context-flow-copy p {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(20, 18, 15, 0.48);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.95;
}

.tabbit-context-flow-panel {
  position: relative;
  width: min(900px, 82vw);
  aspect-ratio: 1.78;
  margin: 38px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.5), transparent 28%),
    radial-gradient(circle at 72% 34%, rgba(196, 167, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #d9c8ff 0%, #a98df3 42%, #7d61d6 69%, #503b9b 100%);
  box-shadow: 0 34px 88px rgba(79, 56, 154, 0.2);
  text-align: left;
}

.tabbit-context-flow-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  pointer-events: none;
}

.tabbit-context-glass {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 46%);
  opacity: 0.86;
}

.tabbit-context-words {
  position: absolute;
  left: 80px;
  top: 39%;
  z-index: 2;
  display: grid;
  gap: 34px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 16px 34px rgba(67, 43, 150, 0.3);
}

.tabbit-context-window {
  position: absolute;
  right: 102px;
  top: 136px;
  z-index: 2;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  width: 300px;
  height: 142px;
  overflow: hidden;
  border: 4px solid rgba(244, 239, 255, 0.9);
  border-radius: 14px;
  background: rgba(236, 229, 255, 0.92);
  box-shadow: 0 22px 54px rgba(77, 51, 151, 0.18);
}

.tabbit-context-window aside {
  display: grid;
  align-content: start;
  justify-items: center;
  padding-top: 18px;
  background: rgba(247, 244, 255, 0.94);
}

.tabbit-context-window aside span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffc400 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, #f6edda 0 100%);
}

.tabbit-context-window aside i {
  display: block;
  width: 56px;
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(157, 123, 236, 0.52);
}

.tabbit-context-window aside i:last-child {
  width: 72px;
  margin-top: 12px;
  background: rgba(157, 123, 236, 0.16);
}

.tabbit-context-window main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 0 0 4px;
}

.tabbit-context-window main span {
  border-radius: 10px;
  background: rgba(238, 231, 255, 0.9);
  box-shadow: inset 0 0 0 3px rgba(171, 147, 230, 0.08);
}

.tabbit-context-prompt {
  position: absolute;
  right: 72px;
  bottom: 142px;
  z-index: 3;
  width: 364px;
  min-height: 138px;
  padding: 20px 22px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 72px rgba(56, 38, 130, 0.22);
  color: rgba(20, 18, 15, 0.86);
}

.tabbit-context-prompt p {
  position: relative;
  margin: 0 0 8px;
  padding-left: 22px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.tabbit-context-prompt p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(157, 123, 236, 0.62);
  border-radius: 3px;
}

.tabbit-context-prompt ul {
  margin: 0;
  padding-left: 24px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.75;
}

.tabbit-context-prompt-tools {
  position: absolute;
  left: 18px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tabbit-context-prompt-tools span {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(20, 18, 15, 0.2);
  border-radius: 50%;
}

.tabbit-context-prompt-tools span:nth-child(2) {
  border-radius: 4px;
}

.tabbit-context-prompt-tools span:nth-child(3) {
  margin-left: auto;
}

.tabbit-context-prompt-tools b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, #fff 47% 54%, transparent 55%),
    linear-gradient(135deg, transparent 46%, #fff 47% 54%, transparent 55%),
    #a989ff;
}

.tabbit-autonomous {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 80px;
  text-align: center;
}

.tabbit-autonomous-copy h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #080808;
  font-size: clamp(36px, 3.15vw, 46px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.tabbit-autonomous-copy p {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(20, 18, 15, 0.48);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.95;
}

.tabbit-autonomous-stage {
  position: relative;
  width: min(900px, 100%);
  margin: 38px auto 0;
  padding-bottom: 72px;
}

.tabbit-autonomous-browser {
  position: relative;
  width: min(720px, 76vw);
  aspect-ratio: 1.78;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 210, 225, 0.82), transparent 36%),
    radial-gradient(circle at 98% 76%, rgba(1, 108, 205, 0.86), transparent 32%),
    linear-gradient(135deg, #5dd7df, #f2dfb4 55%, #076cb4);
  box-shadow: 0 34px 88px rgba(20, 18, 15, 0.13);
  text-align: left;
}

.tabbit-autonomous-browser::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  background: rgba(7, 46, 62, 0.86);
}

.tabbit-autonomous-shell {
  position: absolute;
  inset: 18px 46px 28px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 96px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 248, 238, 0.88);
  box-shadow: 0 20px 64px rgba(10, 50, 80, 0.2);
}

.tabbit-autonomous-shell aside {
  padding: 34px 18px 16px;
  background: rgba(255, 255, 255, 0.42);
}

.tabbit-autonomous-shell aside strong {
  display: block;
  margin-bottom: 18px;
  color: rgba(20, 18, 15, 0.72);
  font-size: 12px;
  font-weight: 950;
}

.tabbit-autonomous-shell aside span {
  display: block;
  height: 8px;
  width: 70%;
  margin: 13px 0;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.13);
}

.tabbit-autonomous-shell aside span:nth-child(3n) {
  width: 92%;
  background: rgba(238, 153, 81, 0.18);
}

.tabbit-autonomous-shell main {
  padding: 22px;
}

.tabbit-auto-topbar {
  height: 22px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: rgba(20, 18, 15, 0.1);
}

.tabbit-autonomous-shell main section {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
}

.tabbit-autonomous-shell main b {
  grid-column: 1 / -1;
  color: rgba(20, 18, 15, 0.86);
  font-size: 14px;
}

.tabbit-auto-list span {
  display: block;
  height: 50px;
  margin-bottom: 12px;
  border-radius: 6px;
  background: rgba(238, 153, 81, 0.18);
}

.tabbit-auto-list span:first-child {
  background: rgba(238, 153, 81, 0.3);
}

.tabbit-autonomous-shell main article {
  min-height: 220px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.tabbit-autonomous-shell main article strong {
  display: block;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.12), rgba(238, 153, 81, 0.18));
  color: transparent;
}

.tabbit-autonomous-shell main article p {
  height: 8px;
  margin: 13px 0;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.16);
}

.tabbit-autonomous-shell main article p:nth-of-type(2n) {
  width: 72%;
}

.tabbit-auto-runner {
  padding: 40px 12px 16px;
  background: rgba(255, 255, 255, 0.24);
}

.tabbit-auto-runner span {
  display: block;
  min-height: 18px;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(20, 18, 15, 0.48);
  font-size: 8px;
  font-weight: 850;
}

.tabbit-auto-chat {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 160px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.tabbit-auto-chat strong {
  display: block;
  color: rgba(20, 18, 15, 0.62);
  font-size: 10px;
  font-weight: 900;
}

.tabbit-auto-chat p {
  margin: 7px 0 0;
  color: rgba(20, 18, 15, 0.42);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
}

.tabbit-autonomous-browser > em {
  position: absolute;
  left: 50%;
  bottom: 7px;
  z-index: 2;
  width: max-content;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  transform: translateX(-50%);
}

.tabbit-autonomous-card {
  position: absolute;
  right: -30px;
  top: 70px;
  width: 344px;
  padding: 28px 30px;
  border: 1px solid rgba(20, 18, 15, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 72px rgba(20, 18, 15, 0.16);
  backdrop-filter: blur(10px);
  text-align: left;
}

.tabbit-autonomous-card h3 {
  margin: 0;
  color: #080808;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.2;
}

.tabbit-autonomous-card strong {
  display: block;
  margin-top: 16px;
  color: rgba(20, 18, 15, 0.86);
  font-size: 16px;
  font-weight: 950;
}

.tabbit-autonomous-card p {
  margin: 18px 0 0;
  color: rgba(20, 18, 15, 0.66);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.75;
}

.tabbit-autonomous-pager {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-flex;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.04);
  transform: translateX(-50%);
}

.tabbit-autonomous-pager span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.08);
}

.tabbit-autonomous-pager span:first-child {
  background: #050505;
}

.tabbit-tricks {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 76px;
  text-align: center;
}

.tabbit-tricks-copy h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #080808;
  font-size: clamp(36px, 3.15vw, 46px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.tabbit-tricks-copy p {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(20, 18, 15, 0.48);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.95;
}

.tabbit-tricks-stage {
  width: min(960px, 100%);
  margin: 38px auto 0;
}

.tabbit-tricks-browser {
  position: relative;
  width: min(900px, 82vw);
  aspect-ratio: 1.78;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 210, 225, 0.84), transparent 34%),
    radial-gradient(circle at 92% 72%, rgba(1, 108, 205, 0.9), transparent 32%),
    linear-gradient(135deg, #63d7df, #f1e6b8 55%, #036bb8);
  box-shadow: 0 34px 88px rgba(20, 18, 15, 0.13);
}

.tabbit-tricks-browser::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  background: rgba(7, 46, 62, 0.86);
}

.tabbit-tricks-shell {
  position: absolute;
  inset: 36px 92px 28px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 190px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(245, 250, 252, 0.78);
  box-shadow: 0 20px 64px rgba(10, 50, 80, 0.2);
}

.tabbit-tricks-shell aside {
  padding: 36px 18px 20px;
  background: rgba(255, 255, 255, 0.2);
  text-align: left;
}

.tabbit-tricks-shell aside strong {
  display: block;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(20, 18, 15, 0.6);
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabbit-tricks-shell aside span {
  display: block;
  height: 7px;
  width: 70%;
  margin: 12px 0;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.13);
}

.tabbit-tricks-shell aside span:nth-child(2n) {
  width: 88%;
}

.tabbit-tricks-shell article {
  margin-top: 28px;
  padding: 0 58px 34px;
  background: rgba(255, 255, 255, 0.96);
  text-align: left;
}

.tabbit-doc-toolbar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 8px;
  margin: 0 -40px 34px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(20, 18, 15, 0.08);
}

.tabbit-doc-toolbar span,
.tabbit-doc-toolbar i {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.2);
}

.tabbit-doc-toolbar i {
  width: 12px;
  height: 5px;
  border-radius: 999px;
}

.tabbit-tricks-shell article h3 {
  margin: 0 0 22px;
  color: rgba(20, 18, 15, 0.86);
  font-size: 20px;
  font-weight: 950;
  text-align: center;
}

.tabbit-tricks-shell article p {
  height: 6px;
  margin: 10px 0;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.18);
}

.tabbit-tricks-shell article p:nth-of-type(3n) {
  width: 74%;
}

.tabbit-tricks-shell section {
  position: relative;
  padding: 22px;
  background: rgba(255, 255, 255, 0.2);
  text-align: left;
}

.tabbit-tricks-shell section b {
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(20, 18, 15, 0.5);
  font-size: 11px;
}

.tabbit-tricks-chat {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.tabbit-tricks-chat strong {
  display: block;
  color: rgba(20, 18, 15, 0.62);
  font-size: 11px;
  font-weight: 850;
}

.tabbit-tricks-chat span {
  display: block;
  height: 5px;
  width: 80%;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.13);
}

.tabbit-tricks-chat span:last-child {
  width: 55%;
}

.tabbit-tricks-cursor {
  position: absolute;
  right: 214px;
  bottom: 78px;
  width: 0;
  height: 0;
  border-left: 24px solid #fff;
  border-top: 43px solid transparent;
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.75)) drop-shadow(0 5px 8px rgba(0, 0, 0, 0.25));
  transform: rotate(-18deg);
  z-index: 4;
}

.tabbit-tricks-browser > em {
  position: absolute;
  left: 50%;
  bottom: 7px;
  z-index: 2;
  width: max-content;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  transform: translateX(-50%);
}

.tabbit-tricks-caption {
  margin-top: 24px;
}

.tabbit-tricks-caption h3 {
  margin: 0;
  color: #080808;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.2;
}

.tabbit-tricks-caption p {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 8px 0 0;
  padding: 0 15px;
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(20, 18, 15, 0.48);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(20, 18, 15, 0.08);
}

.tabbit-tricks-pager {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.04);
}

.tabbit-tricks-pager span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.08);
}

.tabbit-tricks-pager span:first-child {
  background: #050505;
}

.tabbit-browse-possibility {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 76px;
  text-align: center;
}

.tabbit-browse-copy h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #080808;
  font-size: clamp(36px, 3.15vw, 46px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.tabbit-browse-copy p {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(20, 18, 15, 0.48);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.95;
}

.tabbit-browse-stage {
  position: relative;
  width: min(920px, 100%);
  margin: 38px auto 0;
  padding-bottom: 68px;
}

.tabbit-resource-browser {
  position: relative;
  display: grid;
  grid-template-columns: 1.36fr 1fr;
  width: min(760px, 76vw);
  aspect-ratio: 1.78;
  overflow: hidden;
  border-radius: 0 28px 28px 28px;
  background: #fff;
  box-shadow: 0 34px 88px rgba(20, 18, 15, 0.14);
  text-align: left;
}

.tabbit-resource-browser::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background: rgba(7, 46, 62, 0.86);
}

.tabbit-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 14px 48px 0;
  background: #fff;
}

.tabbit-resource-grid article {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 64% 22%, rgba(255, 230, 179, 0.86), transparent 24%),
    linear-gradient(155deg, #fff1d8, #d92016 54%, #f7be55);
  box-shadow: inset 0 0 0 1px rgba(20, 18, 15, 0.05);
}

.tabbit-resource-grid article:nth-child(4n + 1) {
  background:
    radial-gradient(circle at 45% 30%, rgba(255, 255, 255, 0.78), transparent 22%),
    linear-gradient(155deg, #f1dec4, #fff7e9 44%, #deac55);
}

.tabbit-resource-grid article:nth-child(3n) {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 230, 190, 0.9), transparent 24%),
    linear-gradient(150deg, #ffe7bd, #f8d67e 42%, #b80f0d);
}

.tabbit-resource-grid article:nth-child(n + 5) {
  min-height: 118px;
}

.tabbit-resource-grid span {
  position: absolute;
  left: 12px;
  right: 10px;
  bottom: 34px;
  color: rgba(180, 17, 11, 0.9);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.1;
}

.tabbit-resource-grid small {
  position: absolute;
  left: 10px;
  bottom: 8px;
  color: rgba(20, 18, 15, 0.58);
  font-size: 10px;
  font-weight: 800;
}

.tabbit-ai-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 30px 46px;
  background:
    radial-gradient(circle at 38% 28%, rgba(170, 241, 215, 0.8), transparent 30%),
    radial-gradient(circle at 75% 60%, rgba(5, 111, 200, 0.82), transparent 34%),
    linear-gradient(135deg, #e7e6c7, #68c8ff 48%, #016dad);
}

.tabbit-ai-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 100%;
  background: rgba(255, 255, 255, 0.62);
}

.tabbit-ai-panel strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 300px;
  color: rgba(18, 32, 42, 0.66);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabbit-ai-panel p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(24, 44, 54, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.tabbit-ai-panel div {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.tabbit-ai-panel div span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(29, 71, 84, 0.42);
}

.tabbit-browse-cursor {
  position: absolute;
  right: 187px;
  bottom: 86px;
  width: 0;
  height: 0;
  border-left: 24px solid #fff;
  border-top: 43px solid transparent;
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.75)) drop-shadow(0 5px 8px rgba(0, 0, 0, 0.25));
  transform: rotate(-18deg);
  z-index: 4;
}

.tabbit-resource-browser > em {
  position: absolute;
  left: 50%;
  bottom: 7px;
  z-index: 2;
  width: max-content;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  transform: translateX(-50%);
}

.tabbit-browse-card {
  position: absolute;
  right: -14px;
  top: 64px;
  width: 340px;
  padding: 27px 30px;
  border: 1px solid rgba(20, 18, 15, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 72px rgba(20, 18, 15, 0.16);
  backdrop-filter: blur(10px);
  text-align: left;
}

.tabbit-browse-card h3 {
  margin: 0;
  color: #080808;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
}

.tabbit-browse-card p {
  margin: 16px 0 0;
  color: rgba(20, 18, 15, 0.66);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
}

.tabbit-browse-pager {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-flex;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.04);
  transform: translateX(-50%);
}

.tabbit-browse-pager span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.08);
}

.tabbit-browse-pager span:first-child {
  background: #050505;
}

.tabbit-tab-order {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 76px;
  text-align: center;
}

.tabbit-tab-order-copy h2,
.tabbit-privacy-promise-copy h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #080808;
  font-size: clamp(36px, 3.15vw, 46px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.tabbit-tab-order-copy h2 span,
.tabbit-privacy-promise-copy h2 span {
  display: block;
}

.tabbit-tab-order-copy h2 span + span,
.tabbit-privacy-promise-copy h2 span + span {
  margin-top: 8px;
}

.tabbit-tab-order-copy p {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(20, 18, 15, 0.48);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.95;
}

.tabbit-tab-order-stage {
  position: relative;
  width: min(920px, 100%);
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow: 0 24px 68px rgba(20, 18, 15, 0.1);
}

.site-page-content {
  padding-top: 56px;
}

.tabbit-tab-order-stage > img {
  display: block;
  width: 100%;
  height: auto;
}

.tabbit-tab-browser {
  position: relative;
  width: min(760px, 76vw);
  aspect-ratio: 1.78;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 78% 78%, rgba(255, 170, 74, 0.68), transparent 30%),
    radial-gradient(circle at 18% 8%, rgba(35, 176, 207, 0.9), transparent 35%),
    linear-gradient(135deg, #124d7d, #d8b682);
  box-shadow: 0 34px 88px rgba(20, 18, 15, 0.13);
  text-align: left;
}

.tabbit-tab-topbar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  background: rgba(214, 236, 251, 0.82);
  backdrop-filter: blur(8px);
}

.tabbit-tab-topbar span,
.tabbit-tab-topbar i {
  display: inline-flex;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.tabbit-tab-topbar span:nth-child(1) {
  background: #ff5e57;
}

.tabbit-tab-topbar span:nth-child(2) {
  background: #ffbd2e;
}

.tabbit-tab-topbar span:nth-child(3) {
  background: #28c840;
  margin-right: 26px;
}

.tabbit-tab-topbar i {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: rgba(57, 139, 168, 0.5);
  opacity: 0.78;
}

.tabbit-tab-topbar i:nth-of-type(4n) {
  background: rgba(239, 95, 42, 0.75);
}

.tabbit-tab-topbar i:nth-of-type(3n) {
  background: rgba(61, 181, 91, 0.75);
}

.tabbit-tab-toolbar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  background: rgba(214, 236, 251, 0.7);
  color: rgba(16, 42, 54, 0.7);
}

.tabbit-tab-toolbar b {
  font-size: 26px;
  font-weight: 700;
}

.tabbit-tab-toolbar em {
  min-width: 210px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(20, 18, 15, 0.68);
  font-size: 15px;
  font-style: normal;
  font-weight: 850;
}

.tabbit-tab-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 24px 36px;
}

.tabbit-tab-page strong {
  display: flex;
  min-height: 212px;
  align-items: flex-start;
  padding: 20px 18px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(0, 0, 0, 0.1));
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-weight: 950;
}

.tabbit-tab-preview {
  position: absolute;
  left: 42%;
  top: 17%;
  width: 230px;
  min-height: 252px;
  padding: 22px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(20, 18, 15, 0.22);
  text-align: left;
}

.tabbit-tab-preview p {
  margin: 0;
  color: rgba(20, 18, 15, 0.76);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.tabbit-tab-preview small {
  display: block;
  margin-top: 8px;
  color: rgba(20, 18, 15, 0.44);
  font-size: 13px;
  font-weight: 800;
}

.tabbit-tab-preview span {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 78px;
  height: 78px;
  border: 9px solid rgba(20, 18, 15, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tabbit-tab-preview span::before,
.tabbit-tab-preview span::after {
  content: "";
  position: absolute;
  background: rgba(20, 18, 15, 0.1);
}

.tabbit-tab-preview span::before {
  left: 31px;
  top: -8px;
  width: 9px;
  height: 76px;
}

.tabbit-tab-preview span::after {
  left: -8px;
  top: 31px;
  width: 76px;
  height: 9px;
}

.tabbit-cursor {
  position: absolute;
  left: 40%;
  top: 18%;
  width: 0;
  height: 0;
  border-left: 34px solid #fff;
  border-top: 62px solid transparent;
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.75)) drop-shadow(0 5px 8px rgba(0, 0, 0, 0.25));
  transform: rotate(-19deg);
  z-index: 3;
}

.tabbit-tab-order-card {
  position: absolute;
  right: -14px;
  top: 64px;
  width: 340px;
  padding: 27px 30px;
  border: 1px solid rgba(20, 18, 15, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 72px rgba(20, 18, 15, 0.16);
  backdrop-filter: blur(10px);
  text-align: left;
}

.tabbit-tab-order-card h3 {
  margin: 0;
  color: #080808;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
}

.tabbit-tab-order-card p {
  margin: 16px 0 0;
  color: rgba(20, 18, 15, 0.66);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
}

.tabbit-tab-pager {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-flex;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.04);
  transform: translateX(-50%);
}

.tabbit-tab-pager span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.08);
}

.tabbit-tab-pager span:first-child {
  background: #050505;
}

.tabbit-privacy-promise {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 72px;
  text-align: center;
}

.tabbit-privacy-promise-copy p {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(20, 18, 15, 0.48);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.95;
}

.tabbit-privacy-visual {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 1.78;
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow: 0 24px 68px rgba(20, 18, 15, 0.1);
}

.tabbit-privacy-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tabbit-settings-panel {
  position: absolute;
  left: 6%;
  bottom: -9%;
  width: 71%;
  height: 86%;
  padding: 28px;
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(41, 110, 129, 0.13);
  text-align: left;
}

.tabbit-settings-panel strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 18px;
  font-weight: 950;
}

.tabbit-settings-panel strong span {
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #ff7a1a;
  color: #111;
  font-size: 13px;
  line-height: 1;
}

.tabbit-settings-panel i {
  position: absolute;
  left: 28px;
  display: block;
  height: 35px;
  border-radius: 999px;
  background: rgba(119, 156, 159, 0.12);
}

.tabbit-settings-panel i:nth-of-type(1) {
  top: 70px;
  width: 174px;
}

.tabbit-settings-panel i:nth-of-type(2) {
  top: 130px;
  width: 174px;
}

.tabbit-settings-panel i:nth-of-type(3) {
  top: 250px;
  width: 164px;
}

.tabbit-settings-panel i:nth-of-type(4) {
  top: 312px;
  width: 128px;
}

.tabbit-settings-panel i:nth-of-type(5) {
  top: 372px;
  width: 172px;
}

.tabbit-settings-panel i:nth-of-type(6) {
  top: 432px;
  width: 124px;
}

.tabbit-settings-panel i:nth-of-type(7) {
  top: 492px;
  width: 174px;
}

.tabbit-settings-panel em {
  position: absolute;
  left: 28px;
  top: 190px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 25px;
  border-radius: 999px;
  background: #5f94a0;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

.tabbit-settings-panel > div {
  position: absolute;
  left: 262px;
  right: 28px;
  height: 115px;
  border-radius: 17px;
  background: rgba(119, 156, 159, 0.09);
}

.tabbit-settings-panel > div:nth-of-type(1) {
  top: 70px;
}

.tabbit-settings-panel > div:nth-of-type(2) {
  top: 220px;
}

.tabbit-privacy-card-visual {
  position: absolute;
  right: 6%;
  top: 21%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  width: 350px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(80, 128, 137, 0.18);
  border-radius: 30px;
  background: rgba(237, 255, 252, 0.7);
  box-shadow: 17px 16px 0 rgba(195, 250, 237, 0.38), 0 26px 70px rgba(31, 101, 111, 0.18);
  backdrop-filter: blur(12px);
}

.tabbit-privacy-card-visual b {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(109, 161, 171, 0.15);
  color: #4d8996;
}

.tabbit-privacy-card-visual span {
  display: inline-flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #57909c;
  color: #fff;
}

.tabbit-privacy-card-visual svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .tabbit-command-map {
    width: min(100% - 40px, 380px);
    padding: 56px 0 72px;
  }

  .tabbit-command-mark {
    width: 62px;
    height: 54px;
    margin-bottom: 30px;
  }

  .tabbit-command-mark span {
    width: 36px;
    height: 14px;
  }

  .tabbit-command-mark span:nth-child(1) {
    left: 2px;
    top: 22px;
  }

  .tabbit-command-mark span:nth-child(2) {
    left: 24px;
    top: 9px;
  }

  .tabbit-command-mark span:nth-child(3) {
    left: 28px;
    top: 33px;
  }

  .tabbit-command-stage {
    min-height: 0;
  }

  .tabbit-command-input {
    width: 100%;
    height: 110px;
    border-radius: 18px;
  }

  .tabbit-command-placeholder {
    left: 18px;
    top: 20px;
    font-size: 15px;
  }

  .tabbit-command-left-tools,
  .tabbit-command-right-tools {
    bottom: 18px;
  }

  .tabbit-command-left-tools {
    left: 16px;
  }

  .tabbit-command-right-tools {
    right: 16px;
  }

  .tabbit-command-left-tools span,
  .tabbit-command-right-tools span {
    width: 30px;
    height: 30px;
  }

  .tabbit-command-lines {
    display: none;
  }

  .tabbit-command-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .tabbit-command-cards article {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .tabbit-command-cards h3 {
    font-size: 20px;
  }

  .tabbit-command-cards p {
    font-size: 14px;
  }

  .tabbit-command-card-3 {
    min-height: auto;
  }

  .tabbit-command-models {
    gap: 8px;
    margin-top: 16px;
  }

  .tabbit-command-models span {
    width: 28px;
    height: 28px;
    font-size: 8px;
  }

  .tabbit-context-flow {
    width: min(100% - 40px, 380px);
    padding: 70px 0 62px;
  }

  .tabbit-context-flow-copy h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.04;
  }

  .tabbit-context-flow-copy p {
    max-width: 350px;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.9;
  }

  .tabbit-context-flow-panel {
    width: 100%;
    aspect-ratio: 0.76;
    margin-top: 24px;
    border-radius: 22px;
  }

  .tabbit-context-flow-panel::before {
    inset: 12px;
    border-radius: 16px;
  }

  .tabbit-context-words {
    left: 34px;
    top: 78px;
    gap: 18px;
    font-size: 24px;
    line-height: 1.18;
  }

  .tabbit-context-window {
    right: 30px;
    top: 214px;
    width: 214px;
    height: 104px;
    grid-template-columns: 78px minmax(0, 1fr);
    border-width: 3px;
  }

  .tabbit-context-window aside {
    padding-top: 13px;
  }

  .tabbit-context-window aside span {
    width: 30px;
    height: 30px;
  }

  .tabbit-context-window aside i {
    width: 40px;
    height: 8px;
    margin-top: 10px;
  }

  .tabbit-context-window aside i:last-child {
    width: 52px;
    margin-top: 8px;
  }

  .tabbit-context-window main {
    gap: 4px;
    padding-left: 3px;
  }

  .tabbit-context-window main span {
    border-radius: 8px;
  }

  .tabbit-context-prompt {
    left: 22px;
    right: 22px;
    bottom: 54px;
    width: auto;
    min-height: 128px;
    padding: 16px 16px 44px;
    border-radius: 16px;
  }

  .tabbit-context-prompt p,
  .tabbit-context-prompt ul {
    font-size: 10px;
  }

  .tabbit-context-prompt-tools {
    left: 14px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .tabbit-context-prompt-tools b {
    width: 24px;
    height: 24px;
  }

  .tabbit-autonomous {
    width: min(100% - 40px, 380px);
    padding: 70px 0 62px;
  }

  .tabbit-autonomous-copy h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.04;
  }

  .tabbit-autonomous-copy p {
    max-width: 350px;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.9;
  }

  .tabbit-autonomous-stage {
    width: 100%;
    margin-top: 24px;
    padding-bottom: 56px;
  }

  .tabbit-autonomous-browser {
    width: 100%;
    border-radius: 22px;
  }

  .tabbit-autonomous-shell {
    inset: 12px 18px 22px;
    grid-template-columns: 58px minmax(0, 1fr) 42px;
  }

  .tabbit-autonomous-shell aside {
    padding: 18px 7px 8px;
  }

  .tabbit-autonomous-shell aside strong {
    margin-bottom: 10px;
    font-size: 6px;
  }

  .tabbit-autonomous-shell aside span {
    height: 4px;
    margin: 7px 0;
  }

  .tabbit-autonomous-shell main {
    padding: 10px;
  }

  .tabbit-auto-topbar {
    height: 12px;
    margin-bottom: 10px;
  }

  .tabbit-autonomous-shell main section {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
  }

  .tabbit-autonomous-shell main b {
    font-size: 7px;
  }

  .tabbit-auto-list span {
    height: 26px;
    margin-bottom: 7px;
  }

  .tabbit-autonomous-shell main article {
    min-height: 118px;
    padding: 8px;
  }

  .tabbit-autonomous-shell main article strong {
    height: 25px;
    margin-bottom: 10px;
  }

  .tabbit-autonomous-shell main article p {
    height: 4px;
    margin: 7px 0;
  }

  .tabbit-auto-runner {
    padding: 22px 5px 8px;
  }

  .tabbit-auto-runner span {
    min-height: 9px;
    margin-bottom: 4px;
    padding: 2px 4px;
    font-size: 4px;
  }

  .tabbit-auto-chat {
    right: 6px;
    bottom: 7px;
    width: 70px;
    padding: 6px;
    border-radius: 9px;
  }

  .tabbit-auto-chat strong {
    font-size: 5px;
  }

  .tabbit-auto-chat p {
    margin-top: 4px;
    font-size: 4px;
  }

  .tabbit-autonomous-browser > em {
    bottom: 5px;
    font-size: 6px;
  }

  .tabbit-autonomous-card {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: 20px 0 0;
    padding: 22px;
    border-radius: 16px;
  }

  .tabbit-autonomous-card h3 {
    font-size: 23px;
  }

  .tabbit-autonomous-card strong {
    font-size: 15px;
  }

  .tabbit-autonomous-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .tabbit-tricks {
    width: min(100% - 40px, 380px);
    padding: 56px 0 58px;
  }

  .tabbit-tricks-copy h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.04;
  }

  .tabbit-tricks-copy p {
    max-width: 350px;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.9;
  }

  .tabbit-tricks-stage {
    width: 100%;
    margin-top: 24px;
  }

  .tabbit-tricks-browser {
    width: 100%;
    border-radius: 22px;
  }

  .tabbit-tricks-shell {
    inset: 22px 22px 22px;
    grid-template-columns: 58px minmax(0, 1fr) 62px;
  }

  .tabbit-tricks-shell aside {
    padding: 20px 8px 10px;
  }

  .tabbit-tricks-shell aside strong {
    padding: 5px 7px;
    font-size: 6px;
  }

  .tabbit-tricks-shell aside span {
    height: 4px;
    margin: 7px 0;
  }

  .tabbit-tricks-shell article {
    margin-top: 14px;
    padding: 0 18px 16px;
  }

  .tabbit-doc-toolbar {
    height: 24px;
    gap: 4px;
    margin: 0 -12px 18px;
    padding: 0 8px;
  }

  .tabbit-doc-toolbar span {
    width: 5px;
    height: 5px;
  }

  .tabbit-doc-toolbar i {
    width: 7px;
    height: 3px;
  }

  .tabbit-tricks-shell article h3 {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .tabbit-tricks-shell article p {
    height: 3px;
    margin: 6px 0;
  }

  .tabbit-tricks-shell section {
    padding: 10px;
  }

  .tabbit-tricks-shell section b {
    right: 8px;
    top: 8px;
    font-size: 6px;
  }

  .tabbit-tricks-chat {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px;
    border-radius: 11px;
  }

  .tabbit-tricks-chat strong {
    font-size: 6px;
  }

  .tabbit-tricks-chat span {
    height: 3px;
    margin-top: 5px;
  }

  .tabbit-tricks-cursor {
    right: 72px;
    bottom: 45px;
    border-left-width: 16px;
    border-top-width: 28px;
  }

  .tabbit-tricks-browser > em {
    bottom: 5px;
    font-size: 6px;
  }

  .tabbit-tricks-caption h3 {
    font-size: 23px;
  }

  .tabbit-tricks-caption p {
    margin-top: 7px;
    font-size: 13px;
  }

  .tabbit-browse-possibility {
    width: min(100% - 40px, 380px);
    padding: 56px 0 58px;
  }

  .tabbit-browse-copy h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.04;
  }

  .tabbit-browse-copy p {
    max-width: 350px;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.9;
  }

  .tabbit-browse-stage {
    width: 100%;
    margin-top: 24px;
    padding-bottom: 52px;
  }

  .tabbit-resource-browser {
    grid-template-columns: 1.42fr 1fr;
    width: 100%;
    border-radius: 0 22px 22px 22px;
  }

  .tabbit-resource-grid {
    gap: 7px;
    padding: 14px 8px 32px 0;
  }

  .tabbit-resource-grid article {
    min-height: 84px;
    border-radius: 6px;
  }

  .tabbit-resource-grid article:nth-child(n + 5) {
    min-height: 62px;
  }

  .tabbit-resource-grid span {
    left: 6px;
    right: 5px;
    bottom: 22px;
    font-size: 10px;
  }

  .tabbit-resource-grid small {
    left: 5px;
    bottom: 5px;
    font-size: 6px;
  }

  .tabbit-ai-panel {
    padding: 0 12px 34px;
  }

  .tabbit-ai-panel::before {
    width: 28px;
  }

  .tabbit-ai-panel strong {
    font-size: 8px;
  }

  .tabbit-ai-panel p {
    margin-top: 5px;
    padding: 8px;
    border-radius: 11px;
    font-size: 7px;
  }

  .tabbit-ai-panel div {
    gap: 8px;
    margin-top: 8px;
  }

  .tabbit-ai-panel div span {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }

  .tabbit-browse-cursor {
    right: 92px;
    bottom: 50px;
    border-left-width: 16px;
    border-top-width: 28px;
  }

  .tabbit-resource-browser > em {
    bottom: 5px;
    font-size: 6px;
  }

  .tabbit-browse-card {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: 16px 0 0;
    padding: 20px;
    border-radius: 16px;
  }

  .tabbit-browse-card h3 {
    font-size: 22px;
  }

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

  .tabbit-tab-order {
    width: min(100% - 40px, 380px);
    padding: 56px 0 58px;
  }

  .tabbit-tab-order-copy h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.04;
  }

  .tabbit-tab-order-copy h2 span + span,
  .tabbit-privacy-promise-copy h2 span + span {
    margin-top: 6px;
  }

  .tabbit-tab-order-copy p {
    max-width: 350px;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.9;
  }

  .tabbit-tab-order-stage {
    width: 100%;
    margin-top: 24px;
    border-radius: 8px;
  }

  .tabbit-tab-browser {
    width: 100%;
    border-radius: 22px;
  }

  .tabbit-tab-topbar {
    height: 28px;
    gap: 6px;
    padding: 0 16px;
  }

  .tabbit-tab-topbar span {
    width: 9px;
    height: 9px;
  }

  .tabbit-tab-topbar span:nth-child(3) {
    margin-right: 12px;
  }

  .tabbit-tab-topbar i {
    width: 11px;
    height: 11px;
    border-radius: 3px;
  }

  .tabbit-tab-toolbar {
    height: 36px;
    gap: 10px;
    padding: 0 16px;
  }

  .tabbit-tab-toolbar b {
    font-size: 18px;
  }

  .tabbit-tab-toolbar em {
    min-width: 0;
    max-width: 160px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .tabbit-tab-page {
    gap: 8px;
    padding: 14px 16px;
  }

  .tabbit-tab-page strong {
    min-height: 116px;
    padding: 12px 8px;
    font-size: 11px;
  }

  .tabbit-tab-preview {
    left: 40%;
    top: 18%;
    width: 118px;
    min-height: 135px;
    padding: 12px 10px;
  }

  .tabbit-tab-preview p {
    font-size: 9px;
  }

  .tabbit-tab-preview small {
    font-size: 8px;
  }

  .tabbit-tab-preview span {
    width: 40px;
    height: 40px;
    border-width: 5px;
  }

  .tabbit-tab-preview span::before {
    left: 15px;
    top: -5px;
    width: 5px;
    height: 40px;
  }

  .tabbit-tab-preview span::after {
    left: -5px;
    top: 15px;
    width: 40px;
    height: 5px;
  }

  .tabbit-cursor {
    border-left-width: 20px;
    border-top-width: 36px;
  }

  .tabbit-tab-order-card {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: 16px 0 0;
    padding: 20px;
    border-radius: 16px;
  }

  .tabbit-tab-order-card h3 {
    font-size: 22px;
  }

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

  .tabbit-privacy-promise {
    width: min(100% - 40px, 380px);
    padding: 30px 0 54px;
  }

  .tabbit-privacy-promise-copy h2 {
    max-width: 330px;
    font-size: 30px;
    line-height: 1.04;
  }

  .tabbit-privacy-promise-copy p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.9;
  }

  .tabbit-privacy-visual {
    aspect-ratio: 1.78;
    margin-top: 24px;
    border-radius: 8px;
  }

  .tabbit-settings-panel {
    left: 5%;
    bottom: -4%;
    width: 82%;
    height: 82%;
    padding: 18px;
    border-radius: 22px 22px 0 0;
  }

  .tabbit-settings-panel strong {
    font-size: 13px;
  }

  .tabbit-settings-panel strong span {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    font-size: 10px;
  }

  .tabbit-settings-panel i {
    left: 18px;
    height: 22px;
  }

  .tabbit-settings-panel i:nth-of-type(1) {
    top: 54px;
    width: 118px;
  }

  .tabbit-settings-panel i:nth-of-type(2) {
    top: 92px;
    width: 118px;
  }

  .tabbit-settings-panel i:nth-of-type(3) {
    top: 164px;
    width: 112px;
  }

  .tabbit-settings-panel i:nth-of-type(4) {
    top: 204px;
    width: 86px;
  }

  .tabbit-settings-panel i:nth-of-type(5) {
    top: 244px;
    width: 112px;
  }

  .tabbit-settings-panel i:nth-of-type(6) {
    top: 284px;
    width: 86px;
  }

  .tabbit-settings-panel i:nth-of-type(7) {
    top: 324px;
    width: 112px;
  }

  .tabbit-settings-panel em {
    left: 18px;
    top: 126px;
    min-height: 28px;
    padding: 0 16px;
    font-size: 12px;
  }

  .tabbit-settings-panel > div {
    left: 156px;
    right: 18px;
    height: 78px;
    border-radius: 13px;
  }

  .tabbit-settings-panel > div:nth-of-type(1) {
    top: 54px;
  }

  .tabbit-settings-panel > div:nth-of-type(2) {
    top: 154px;
  }

  .tabbit-privacy-card-visual {
    right: 5%;
    top: 22%;
    width: 218px;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    box-shadow: 10px 10px 0 rgba(195, 250, 237, 0.38), 0 18px 42px rgba(31, 101, 111, 0.16);
  }

  .tabbit-privacy-card-visual b {
    width: 56px;
    height: 56px;
  }

  .tabbit-privacy-card-visual span {
    height: 50px;
    border-radius: 12px;
  }

  .tabbit-privacy-card-visual svg {
    width: 21px;
    height: 21px;
  }
}

@keyframes tabbit-voice-marquee {
  from {
    transform: translateX(var(--voice-start-offset));
  }

  to {
    transform: translateX(calc(var(--voice-start-offset) - var(--voice-loop-distance)));
  }
}

.tabbit-home .tabbit-voice-track article {
  flex: 0 0 316px;
  display: grid;
  grid-template-rows: minmax(180px, 1fr) auto;
  width: 316px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 56px rgba(20, 18, 15, 0.07);
  text-align: left;
}

.tabbit-voice-track article > p {
  color: rgba(20, 18, 15, 0.62);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.tabbit-voice-track article > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.tabbit-voice-track article > div span {
  display: inline-flex;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(20, 18, 15, 0.1);
  background-color: #eef0f2;
  background-image: url('/assets/voices/voice-portraits.jpg');
  background-repeat: no-repeat;
  background-size: 300% 200%;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-indent: -9999px;
}

.tabbit-voice-avatar.is-avatar-1 { background-position: 0 0; }
.tabbit-voice-avatar.is-avatar-2 { background-position: 50% 0; }
.tabbit-voice-avatar.is-avatar-3 { background-position: 100% 0; }
.tabbit-voice-avatar.is-avatar-4 { background-position: 0 100%; }
.tabbit-voice-avatar.is-avatar-5 { background-position: 50% 100%; }
.tabbit-voice-avatar.is-avatar-6 { background-position: 100% 100%; }

.voices-page-hero .section-inner {
  max-width: 920px;
}

.voices-page-hero h1 {
  max-width: 760px;
}

.voices-page-intro {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.75;
}

.voices-page-note {
  width: fit-content;
  margin-top: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--blue);
  font-size: 14px;
}

.voices-page-section {
  background: #fff;
}

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

.voice-story-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 18, 15, 0.06);
}

.voice-story-scene {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(0, 47, 167, 0.16);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.voice-story-card blockquote {
  flex: 1;
  margin: 32px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.75;
}

.voice-story-card blockquote::before {
  content: '“';
  margin-right: 3px;
  color: var(--orange);
  font-size: 28px;
  line-height: 0;
}

.voice-story-person {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 18, 15, 0.1);
}

.voice-story-avatar {
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: 50%;
  background-color: #eef0f2;
  background-image: url('/assets/voices/voice-portraits.jpg');
  background-repeat: no-repeat;
  background-size: 300% 200%;
  text-indent: -9999px;
}

.voice-story-person div {
  display: grid;
  gap: 5px;
}

.voice-story-person strong {
  color: var(--ink);
  font-size: 17px;
}

.voice-story-person div span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .voices-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tabbit-tab-order-copy h2 span {
  display: block;
}

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

  .voice-story-card {
    min-height: 300px;
  }
}

.tabbit-voice-track article > div strong {
  color: #050505;
  font-size: 17px;
  line-height: 1.2;
}

.tabbit-voice-track article > div em {
  color: rgba(20, 18, 15, 0.42);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .tabbit-home .tabbit-voice-track {
    animation: none;
  }
}

.tabbit-faq details {
  border-top: 1px solid var(--tabbit-line);
  padding: 20px 0;
}

.tabbit-faq summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 900;
}

.tabbit-faq p {
  max-width: 820px;
  margin-top: 12px;
}

.tabbit-home .tabbit-faq {
  width: min(1000px, calc(100% - 48px));
  margin-bottom: 120px;
  padding: 112px 0 36px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  gap: 20px;
}

.tabbit-home .tabbit-faq h2 {
  margin-bottom: 36px;
  color: #050505;
  font-size: 48px;
  line-height: 1;
  text-align: center;
}

.tabbit-home .tabbit-faq details {
  overflow: hidden;
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: 28px;
  background: #fff;
  padding: 0;
  box-shadow: none;
}

.tabbit-home .tabbit-faq summary {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 62px 0 28px;
  cursor: pointer;
  color: #050505;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

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

.tabbit-home .tabbit-faq summary::before,
.tabbit-home .tabbit-faq summary::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.58);
  transform: translateY(-50%);
}

.tabbit-home .tabbit-faq summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.tabbit-home .tabbit-faq details[open] summary::after {
  opacity: 0;
}

.tabbit-home .tabbit-faq p {
  max-width: none;
  margin: -2px 28px 20px;
  padding-right: 56px;
  color: rgba(20, 18, 15, 0.58);
  font-size: 15px;
  font-weight: 700;
}

.tabbit-final {
  width: 100%;
  max-width: none;
  justify-items: center;
  margin-bottom: 0;
  padding: 96px 24px 92px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  background:
    radial-gradient(circle at 48% 100%, rgba(211, 218, 255, 0.42), transparent 34%),
    radial-gradient(circle at 40% 100%, rgba(246, 220, 255, 0.34), transparent 30%),
    #fff;
}

.tabbit-final-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.tabbit-final h2 {
  display: grid;
  gap: 10px;
  font-size: clamp(36px, 2.3vw, 46px);
  line-height: 1.18;
  font-weight: 900;
}

.tabbit-final h2 span {
  display: block;
}

.tabbit-final .tabbit-downloads {
  margin-top: 0;
}

.tabbit-final .tabbit-download-card {
  min-width: 190px;
}

.tabbit-final p {
  max-width: 560px;
  color: rgba(20, 18, 15, 0.45);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.tabbit-home-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
  min-height: 122px;
  padding: 24px min(15vw, 520px);
  border-top: 1px solid rgba(20, 18, 15, 0.06);
  background: #fff;
}

.tabbit-footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

.tabbit-footer-contact strong {
  color: #080808;
  font-size: 15px;
  font-weight: 900;
}

.tabbit-footer-contact a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 7px;
  overflow: hidden;
  background: transparent;
}

.tabbit-footer-contact a img,
.tabbit-footer-contact a svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.tabbit-footer-legal {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: rgba(20, 18, 15, 0.48);
  font-size: 13px;
}

.tabbit-footer-legal strong {
  color: #080808;
  font-size: 15px;
  font-weight: 900;
}

.tabbit-footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.tabbit-footer-legal nav a {
  color: rgba(20, 18, 15, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.tabbit-footer-legal nav a + a::before {
  content: "|";
  margin: 0 9px;
  color: rgba(20, 18, 15, 0.28);
}

@media (max-width: 980px) {
  .tabbit-hero-copy {
    margin-top: 84px;
  }

  .tabbit-home-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .tabbit-browser {
    min-width: 860px;
  }

  .tabbit-preview-wrap {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .tabbit-omnibox,
  .tabbit-model-card,
  .tabbit-agent-card,
  .tabbit-split-card {
    grid-template-columns: 1fr;
  }

  .tabbit-context-card > div,
  .tabbit-voices > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tabbit-hero {
    min-height: auto;
    padding: 24px 16px 0;
  }

  .tabbit-hero-copy {
    margin-top: 62px;
  }

  .tabbit-hero-copy p {
    font-size: 16px;
  }

  .tabbit-hero-copy h1 {
    font-size: 62px;
  }

  .tabbit-hero-copy strong {
    font-size: 22px;
  }

  .tabbit-downloads {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tabbit-download-card {
    min-width: 0;
  }

  .tabbit-preview-wrap {
    margin-top: 34px;
  }

  .tabbit-browser {
    min-width: 720px;
    min-height: 520px;
    transform: rotateX(16deg);
  }

  .tabbit-omnibox,
  .tabbit-feature-stack,
  .tabbit-voices,
  .tabbit-faq,
  .tabbit-final {
    width: min(100% - 28px, 1120px);
  }

  .tabbit-omnibox {
    padding: 96px 0 52px;
  }

  .tabbit-home h2 {
    font-size: 34px;
  }

  .tabbit-home .tabbit-context-flow-copy h2,
  .tabbit-home .tabbit-autonomous-copy h2,
  .tabbit-home .tabbit-tricks-copy h2,
  .tabbit-home .tabbit-browse-copy h2,
  .tabbit-home .tabbit-tab-order-copy h2,
  .tabbit-home .tabbit-privacy-promise-copy h2 {
    font-size: 30px;
    line-height: 1.04;
  }

  .tabbit-omnibox form {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .tabbit-feature-stack > article,
  .tabbit-voices,
  .tabbit-faq {
    border-radius: 26px;
  }

  .tabbit-model-card,
  .tabbit-agent-card,
  .tabbit-context-card,
  .tabbit-privacy-card,
  .tabbit-voices,
  .tabbit-faq {
    padding: 24px;
  }

  .tabbit-models {
    grid-template-columns: 1fr;
  }

  .tabbit-split-card {
    padding: 12px;
  }

  .tabbit-split-card section,
  .tabbit-context-card section,
  .tabbit-voices article {
    min-height: auto;
    padding: 20px;
  }

  .tabbit-final {
    padding: 64px 16px 82px;
  }

  .tabbit-home-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px;
    text-align: center;
  }

  .tabbit-footer-contact {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tabbit-footer-legal {
    justify-items: center;
  }

  .tabbit-footer-legal nav {
    justify-content: center;
  }
}

/* Tabbit fidelity override: match the reference hero proportions and header placement. */
.site-header {
  border-bottom: 0;
  background: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav {
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 0 18px;
  gap: 28px;
  justify-content: flex-start;
}

.brand img {
  width: 148px;
}

.nav-links {
  order: 0;
  margin-right: auto;
  justify-content: flex-start;
  gap: 30px;
}

.nav-links a {
  min-height: 34px;
  padding: 7px 0;
  border-radius: 0;
  background: transparent;
  color: #262626;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  background: transparent;
  color: #000;
}

.nav-actions {
  margin-left: auto;
  gap: 18px;
}

.nav-download-button {
  min-height: 36px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.locale-toggle {
  min-height: 34px;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 800;
}

.tabbit-hero {
  min-height: 916px;
  padding: 1px 24px 0;
}

.tabbit-hero-copy {
  gap: 10px;
  margin: 214px auto 0;
}

.tabbit-hero-copy p {
  color: rgba(20, 18, 15, 0.38);
  font-size: 19px;
  font-weight: 800;
}

.tabbit-hero-copy h1 {
  font-size: clamp(50px, 4.8vw, 70px);
  line-height: 1.02;
}

.tabbit-hero-copy strong {
  color: rgba(20, 18, 15, 0.58);
  font-size: clamp(20px, 2.1vw, 32px);
  display: none;
}

.tabbit-downloads {
  gap: 14px;
  margin-top: 20px;
}

.tabbit-download-card {
  position: relative;
  width: 150px;
  min-width: 150px;
  gap: 0;
}

.tabbit-download-card a,
.tabbit-download-card button {
  box-sizing: border-box;
  width: 150px;
  min-height: 40px;
  border: 0;
  padding: 7px 12px;
  gap: 7px;
  justify-content: center;
}

.tabbit-download-card button {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.tabbit-download-card button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

.tabbit-download-card b {
  display: inline;
  font-size: 15px;
  line-height: 1;
}

.tabbit-download-card small {
  display: inline-flex;
  margin: 0 0 0 6px;
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.1;
}

.tabbit-download-card em {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 5;
  min-width: max-content;
  max-width: 260px;
  padding: 8px 12px;
  border-radius: 7px;
  background: rgba(20, 18, 15, 0.78);
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(20, 18, 15, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.tabbit-download-card em::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 9px;
  height: 9px;
  background: inherit;
  transform: translate(-50%, -5px) rotate(45deg);
}

.tabbit-download-card:hover em,
.tabbit-download-card:focus-within em {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tabbit-os-icon {
  display: inline-flex;
  width: 34px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 34px;
}

.tabbit-os-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.tabbit-home .tabbit-download-note {
  margin-top: 13px;
}

.tabbit-preview-wrap {
  width: min(800px, 52vw);
  margin: 50px auto -94px;
  perspective: 1400px;
}

.tabbit-hero-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  object-position: top left;
  opacity: 0.34;
  filter: saturate(0.82) brightness(1.12);
  box-shadow: 0 44px 130px rgba(120, 70, 34, 0.18);
  transform: rotateX(18deg);
  transform-origin: top center;
}

.tabbit-glow {
  inset: 10% 2% auto;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 160, 86, 0.38), rgba(245, 224, 255, 0.34) 42%, transparent 74%);
}

.tabbit-browser {
  min-height: 520px;
  border-radius: 22px 22px 0 0;
  opacity: 0.84;
  transform: rotateX(18deg);
}

.tabbit-browser-top {
  min-height: 48px;
}

.tabbit-browser-body {
  grid-template-columns: 212px minmax(0, 1fr);
  min-height: 472px;
}

.tabbit-browser section {
  padding: 34px;
}

.tabbit-command {
  min-height: 58px;
  padding: 16px 22px;
}

.tabbit-panels article {
  min-height: 218px;
}

.tabbit-panels strong {
  font-size: 22px;
}

@media (max-width: 980px) {
  .nav {
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
    padding: 0;
  }

  .tabbit-hero-copy {
    margin-top: 96px;
  }
}

@media (max-width: 640px) {
  .tabbit-hero-copy h1 {
    font-size: 46px;
  }
}

.tabbit-reference-brand {
  color: #050505;
  line-height: 1;
}

.tabbit-reference-brand img {
  width: 148px;
  height: auto;
}

@media (max-width: 640px) {
  .site-page-content {
    padding-top: 86px;
  }

  .tabbit-reference-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    row-gap: 10px;
    min-height: 86px;
    align-items: start;
    align-content: start;
    padding: 10px 8px 0;
  }

  .tabbit-reference-left {
    display: contents;
  }

  .tabbit-reference-brand {
    grid-area: brand;
    align-self: start;
  }

  .tabbit-reference-brand img {
    width: 86px;
    height: auto;
  }

  .tabbit-reference-left nav {
    grid-area: nav;
    gap: 16px;
    max-width: calc(100vw - 16px);
    overflow: hidden;
  }

  .tabbit-reference-left nav a,
  .tabbit-reference-actions > a:first-child {
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .tabbit-reference-actions {
    grid-area: actions;
    min-width: 0;
    flex: 0 1 auto;
    align-items: center;
    justify-self: end;
    gap: 8px;
  }

  .tabbit-reference-actions > a:last-child,
  .tabbit-reference-actions > button:last-child {
    min-height: 25px;
    padding: 0 10px;
    font-size: 10px;
    box-shadow: none;
  }

  .tabbit-hero {
    min-height: 682px;
    padding: 1px 14px 0;
    background: linear-gradient(180deg, #fff 0%, #fff 38%, #fff9f5 68%, #fbf1ec 100%);
  }

  .tabbit-hero-copy {
    gap: 20px;
    margin-top: 213px;
  }

  .tabbit-hero-copy p {
    max-width: 360px;
    color: rgba(20, 18, 15, 0.36);
    font-size: 12px;
    line-height: 1.18;
    white-space: nowrap;
  }

  .tabbit-hero-copy h1 {
    font-size: 24px;
    line-height: 1;
  }

  .tabbit-downloads {
    display: grid;
    justify-items: center;
    gap: 11px;
    margin-top: 36px;
  }

  .tabbit-download-card {
    width: 136px;
    min-width: 136px;
    max-width: 136px;
    overflow: visible;
    gap: 7px;
  }

  .tabbit-download-card a {
    box-sizing: border-box;
    width: 136px;
    max-width: 136px;
    height: 31px;
    min-height: 31px;
    padding: 6px 8px;
    gap: 6px;
    line-height: 1;
    box-shadow: none;
  }

  .tabbit-os-icon {
    width: 27px;
    height: 18px;
    flex-basis: 27px;
  }

  .tabbit-os-icon svg {
    width: 15px;
    height: 15px;
  }

  .tabbit-download-card b {
    font-size: 11px;
  }

  .tabbit-download-card small {
    margin-left: 5px;
    padding: 1px 5px 2px;
    border-radius: 5px;
    font-size: 7px;
    line-height: 1;
  }

  .tabbit-download-card em {
    position: static;
    width: max-content;
    min-width: 0;
    max-width: 240px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(20, 18, 15, 0.34);
    font-size: 8px;
    font-weight: 750;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .tabbit-download-card em::after {
    display: none;
  }

  .tabbit-home .tabbit-download-note {
    display: none;
  }

  .tabbit-preview-wrap {
    width: min(294px, 88vw);
    margin: 136px auto -48px;
    perspective: 1300px;
  }

  .tabbit-hero-shot {
    opacity: 0.62;
    filter: saturate(0.92) brightness(1.05);
    transform: rotateX(30deg);
    box-shadow: 0 28px 80px rgba(120, 70, 34, 0.12);
  }

  .tabbit-glow {
    inset: 22% 4% auto;
    height: 220px;
    filter: blur(24px);
  }
}

/* Swiss product-site refinement: flatter surfaces, grid lines, one blue accent. */
:root {
  --red: #002fa7;
  --orange: #002fa7;
  --green: #002fa7;
  --line: #d7dce2;
}

.site-header {
  border-bottom: 0;
  background: #fff;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: inset 0 -1px 0 var(--line);
}

.hero,
.download-cta-section,
.audience-section,
.interaction-support-section,
.soft-page-title,
.page-title,
.analytics-panel {
  background: #fff;
}

.section:nth-of-type(even),
.download-cta-section {
  background: var(--soft);
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button.secondary {
  background: #fff;
}

.button.pill,
.nav-links a,
.nav-download-button,
.locale-toggle,
.mobile-menu-toggle,
.hero-pill-row span,
.download-cta-copy span,
.desktop-client-titlebar em,
.client-toolbar strong,
.client-search,
.client-task-row strong,
.sync-status-row strong,
.timeline-line span,
.interaction-card span,
.help-filter-group button,
.download-cta-detail {
  border-radius: 6px;
}

.tabbit-context-flow-panel,
.tabbit-autonomous-stage,
.tabbit-tricks-stage,
.tabbit-browse-stage,
.tabbit-tab-order-stage,
.tabbit-privacy-visual {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 1.78;
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow: 0 24px 68px rgba(20, 18, 15, 0.1);
}

.tabbit-context-flow-panel > img,
.tabbit-autonomous-stage > img,
.tabbit-tricks-stage > img,
.tabbit-browse-stage > img,
.tabbit-tab-order-stage > img,
.tabbit-privacy-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.locale-popover,
.locale-option,
.desktop-client-nav button,
.platform-mark,
.client-task-row i,
.capability-badge,
code {
  border-radius: 4px;
}

.browser-product,
.desktop-client-shot,
.download-cta-panel,
.platform-logo-card,
.interaction-card,
.client-metric-row article,
.client-panel,
.context-grid article,
.product-path-card,
.product-path-summary,
.social-proof-card,
.real-scenario-card,
.soft-feature-card,
.screenshot-card,
.trust-strip,
.help-search-panel,
.help-knowledge-panel,
.help-link-card,
.support-row,
.polished-legal article,
.open-client-panel,
.download-card,
.trust-boundary-card,
.trust-local-cloud-node,
.trust-faq-item {
  border-radius: 8px;
  box-shadow: none;
}

.browser-product,
.desktop-client-shot,
.download-cta-panel,
.platform-logo-card,
.interaction-card,
.client-metric-row article,
.client-panel,
.product-path-card,
.product-path-summary,
.screenshot-card,
.trust-strip {
  border-color: var(--line);
}

.desktop-client-main {
  background: #fff;
}

.desktop-client-nav {
  background: #111;
}

.desktop-client-nav button {
  background: transparent;
}

.desktop-client-nav button.active {
  background: #fff;
  color: #111;
}

.section-index,
.context-grid span,
.download-cta-detail,
.help-link-card span,
.canvas-head strong,
.desktop-client-titlebar em,
.client-toolbar strong,
.client-task-row i {
  color: var(--blue);
}

.canvas-head strong,
.desktop-client-titlebar em,
.client-toolbar strong,
.client-task-row i,
.client-task-row strong,
.sync-status-row strong,
.download-cta-copy span,
.help-link-card span {
  background: rgba(0, 47, 167, 0.08);
}

.ai-home {
  --ai-ink: #14151a;
  --ai-muted: #667085;
  --ai-lilac: #ede7ff;
  --ai-mint: #dff8ef;
  --ai-peach: #ffe8d9;
  --ai-blue: #235cff;
  overflow: hidden;
  color: var(--ai-ink);
  background:
    linear-gradient(135deg, rgba(237, 231, 255, 0.95), rgba(246, 248, 255, 0.94) 34%, rgba(223, 248, 239, 0.82) 68%, rgba(255, 232, 217, 0.72)),
    #fff;
}

.ai-home h1,
.ai-home h2,
.ai-home h3,
.ai-home p {
  margin: 0;
}

.ai-hero {
  position: relative;
  padding: 88px 0 0;
}

.ai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(35, 92, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(#000, transparent 72%);
  pointer-events: none;
}

.ai-hero-grid,
.ai-product-stage,
.ai-metrics,
.ai-section,
.ai-final {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.ai-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
}

.ai-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.ai-eyebrow {
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(35, 92, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ai-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.ai-hero h1 {
  max-width: 840px;
  color: var(--ai-ink);
  font-size: 78px;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.ai-hero-intro {
  max-width: 720px;
  color: var(--ai-muted);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}

.ai-hero-actions,
.ai-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ai-button {
  display: inline-flex;
  min-height: 52px;
  min-width: 168px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.ai-button-primary {
  background: #111;
  color: #fff;
  box-shadow: 0 18px 40px rgba(20, 21, 26, 0.18);
}

.ai-button-secondary {
  border-color: rgba(20, 21, 26, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ai-ink);
}

.ai-availability {
  max-width: 610px;
  color: var(--ai-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.ai-hero-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 26px 90px rgba(70, 77, 126, 0.16);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.ai-hero-panel p {
  color: var(--ai-muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.ai-rail-list {
  display: grid;
  gap: 10px;
}

.ai-rail-list span,
.ai-platform-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(20, 21, 26, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ai-ink);
  font-size: 14px;
  font-weight: 900;
}

.ai-product-stage {
  margin-top: 52px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px 34px 0 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 38px 120px rgba(41, 54, 115, 0.2);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.ai-product-stage .desktop-client-shot {
  min-height: auto;
  border: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: none;
}

.ai-product-stage .desktop-client-real-image {
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.ai-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(20, 21, 26, 0.09);
  border-radius: 0 0 30px 30px;
  background: rgba(20, 21, 26, 0.08);
}

.ai-metrics div {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.ai-metrics span,
.ai-promise-grid span,
.ai-day-grid span {
  color: var(--ai-blue);
  font-size: 13px;
  font-weight: 900;
}

.ai-metrics strong {
  color: var(--ai-ink);
  font-size: 30px;
  line-height: 1;
}

.ai-section {
  padding: 112px 0 0;
}

.ai-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: end;
}

.ai-section-head .ai-eyebrow {
  grid-column: 1 / -1;
}

.ai-section-head h2,
.ai-platform-band h2,
.ai-promise-card h2,
.ai-final h2 {
  color: var(--ai-ink);
  font-size: 52px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.ai-section-head > p:not(.ai-eyebrow),
.ai-platform-band p,
.ai-feature-grid p,
.ai-day-grid p,
.ai-shot-grid p,
.ai-promise-grid p,
.ai-final p {
  color: var(--ai-muted);
  font-weight: 750;
  line-height: 1.7;
}

.ai-day-grid,
.ai-feature-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.ai-day-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ai-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ai-day-grid article,
.ai-feature-grid article {
  display: grid;
  gap: 16px;
  min-height: 250px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(20, 21, 26, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(70, 77, 126, 0.1);
}

.ai-day-grid h3,
.ai-feature-grid h3,
.ai-shot-grid h3 {
  color: var(--ai-ink);
  font-size: 24px;
  line-height: 1.12;
}

.ai-screenshots {
  padding-top: 120px;
}

.ai-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.ai-shot-grid article {
  overflow: hidden;
  border: 1px solid rgba(20, 21, 26, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 80px rgba(70, 77, 126, 0.13);
}

.ai-shot-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid rgba(20, 21, 26, 0.08);
}

.ai-shot-grid article > div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.ai-feature-grid article:nth-child(2) {
  background: rgba(237, 231, 255, 0.68);
}

.ai-feature-grid article:nth-child(3) {
  background: rgba(223, 248, 239, 0.68);
}

.ai-feature-grid article:nth-child(4) {
  background: rgba(255, 232, 217, 0.7);
}

.ai-platform-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.68fr);
  gap: 44px;
  align-items: center;
}

.ai-platform-band > div:first-child {
  display: grid;
  gap: 18px;
}

.ai-platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.ai-promise {
  padding-bottom: 112px;
}

.ai-promise-card {
  display: grid;
  gap: 30px;
  padding: 38px;
  border-radius: 34px;
  background: #111;
  color: #fff;
  box-shadow: 0 34px 100px rgba(20, 21, 26, 0.22);
}

.ai-promise-card h2 {
  max-width: 760px;
  color: #fff;
}

.ai-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.ai-promise-grid article {
  display: grid;
  gap: 10px;
  min-height: 136px;
  align-content: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.ai-promise-grid span {
  color: #9fd8ff;
}

.ai-promise-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.ai-final {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) auto;
  gap: 32px;
  align-items: center;
  padding: 72px 0 96px;
  border-top: 1px solid rgba(20, 21, 26, 0.09);
}

.ai-final > div:first-child {
  display: grid;
  gap: 14px;
}

.ai-final h2 {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .ai-hero-grid,
  .ai-section-head,
  .ai-platform-band,
  .ai-final {
    grid-template-columns: 1fr;
  }

  .ai-hero h1 {
    font-size: 64px;
  }

  .ai-hero-panel {
    max-width: 560px;
  }

  .ai-rail-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ai-day-grid,
  .ai-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-shot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ai-hero-grid,
  .ai-product-stage,
  .ai-metrics,
  .ai-section,
  .ai-final {
    width: min(100% - 32px, 1180px);
  }

  .ai-hero {
    padding-top: 52px;
  }

  .ai-hero h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .ai-hero-intro {
    font-size: 16px;
  }

  .ai-hero-panel {
    display: none;
  }

  .ai-hero-actions,
  .ai-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .ai-button {
    width: 100%;
    min-width: 0;
  }

  .ai-product-stage {
    margin-top: 28px;
    overflow-x: auto;
    border-radius: 22px 22px 0 0;
    -webkit-overflow-scrolling: touch;
  }

  .ai-product-stage .desktop-client-shot {
    width: 720px;
    border-radius: 16px 16px 0 0;
  }

  .ai-metrics,
  .ai-day-grid,
  .ai-feature-grid,
  .ai-promise-grid {
    grid-template-columns: 1fr;
  }

  .ai-metrics div {
    min-height: auto;
    padding: 18px;
  }

  .ai-section {
    padding-top: 72px;
  }

  .ai-section-head {
    gap: 16px;
  }

  .ai-section-head h2,
  .ai-platform-band h2,
  .ai-promise-card h2,
  .ai-final h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .ai-day-grid,
  .ai-shot-grid,
  .ai-feature-grid {
    margin-top: 24px;
  }

  .ai-day-grid article,
  .ai-feature-grid article {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .ai-platform-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ai-promise {
    padding-bottom: 72px;
  }

  .ai-promise-card {
    padding: 24px;
    border-radius: 26px;
  }

  .ai-final {
    padding: 54px 0 72px;
  }
}

@media (max-width: 480px) {
  .ai-hero-grid,
  .ai-product-stage,
  .ai-metrics,
  .ai-section,
  .ai-final {
    width: min(100% - 24px, 1180px);
  }

  .ai-hero {
    padding-top: 42px;
  }

  .ai-hero h1 {
    font-size: 35px;
  }

  .ai-product-stage .desktop-client-shot {
    width: 660px;
  }

  .ai-section-head h2,
  .ai-platform-band h2,
  .ai-promise-card h2,
  .ai-final h2 {
    font-size: 29px;
  }
}
