@font-face {
  font-family: Onest;
  src: url("/assets/fonts/Onest-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Onest;
  src: url("/assets/fonts/Onest-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Onest;
  src: url("/assets/fonts/Onest-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg-primary: #090c0d;
  --bg-secondary: #0c1011;
  --bg-tertiary: #101516;
  --surface-primary: rgba(18, 24, 25, 0.86);
  --surface-strong: #141a1b;
  --surface-hover: #182123;
  --border-default: rgba(219, 248, 251, 0.11);
  --border-strong: rgba(219, 248, 251, 0.2);
  --text-primary: #f4f7f7;
  --text-secondary: #c1ccce;
  --text-muted: #89989b;
  --accent: #00c7df;
  --accent-hover: #35d8e9;
  --accent-ink: #041012;
  --accent-soft: rgba(0, 199, 223, 0.1);
  --positive: #32d583;
  --negative: #ff6370;
  --warning: #f1ad3d;
  --warning-soft: rgba(241, 173, 61, 0.1);
  --container: 1240px;
  --container-wide: 1376px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-accent: 0 18px 42px rgba(0, 199, 223, 0.14);
  --section-space: clamp(5.5rem, 9vw, 8.5rem);
  --font-h1: clamp(3.5rem, 5.1vw, 4rem);
  --font-h2:clamp(2.25rem,4vw,2.875rem);
  --font-h3: clamp(1.25rem, 2vw, 1.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: Onest, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(0, 199, 223, 0.28);
  color: var(--text-primary);
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.08;
}

h1 {
  font-size: var(--font-h1);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  font-size: var(--font-h2);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: var(--font-h3);
  font-weight: 600;
  letter-spacing: -0.012em;
}

em {
  color: var(--accent);
  font-style: normal;
}

[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.compact-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(0, 199, 223, 0.72);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  border-color: var(--border-default);
  background: rgba(9, 12, 13, 0.88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  border-radius: 12px;
}

.brand > span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

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

.site-nav a,
.login-link {
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--accent);
  content: "";
  transition: transform 0.2s;
}

.site-nav a:hover,
.login-link:hover {
  color: var(--text-primary);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface-primary);
  color: var(--text-primary);
  cursor: pointer;
}

.menu-toggle .menu-close,
.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 13px;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(0, 199, 223, 0.18);
  color: var(--accent-ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  box-shadow: 0 17px 44px rgba(0, 199, 223, 0.24);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: 14px;
}

.button-secondary,
.button-secondary-accent {
  border-color: var(--border-strong);
  background: rgba(14, 20, 21, 0.72);
  box-shadow: none;
  color: var(--text-primary);
}

.button-secondary:hover,
.button-secondary-accent:hover {
  border-color: rgba(0, 199, 223, 0.6);
  background: var(--accent-soft);
  box-shadow: none;
}

.button-secondary-accent {
  color: var(--accent-hover);
}

.button-amber {
  border-color: var(--warning);
  background: var(--warning);
  box-shadow: 0 12px 34px rgba(241, 173, 61, 0.16);
}

.button-amber:hover {
  border-color: #ffc15a;
  background: #ffc15a;
  box-shadow: 0 17px 44px rgba(241, 173, 61, 0.22);
}

.cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0, 199, 223, 0.1);
}

.eyebrow.amber {
  color: var(--warning);
}

.eyebrow.amber > span {
  background: var(--warning);
  box-shadow: 0 0 0 6px rgba(241, 173, 61, 0.1);
}

.section-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading.centered {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-lead {
  margin-inline: auto;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.section-heading.split .section-lead {
  margin-bottom: 3px;
}

.hero {
  min-height: 860px;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 3rem;
  line-height: 1.06;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 34px;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.65;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.microcopy span {
  position: relative;
}

.microcopy span + span::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-product {
  position: relative;
  padding: 28px 0 40px;
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 17, 0.9);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(0, 199, 223, 0.05) inset;
}

.hero-window {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: left center;
}

.window-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border-default);
  background: #0e1314;
}

.window-bar strong {
  font-size: 13px;
}

.window-bar small {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.product-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b0f12;
}

.product-screen::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow: 0 -70px 110px rgba(0, 199, 223, 0.045) inset;
  content: "";
  pointer-events: none;
}

.product-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-screen.crop-app-shell img {
  left: -25%;
  width: 125%;
  max-width: none;
  object-position: top right;
}

.hero-screen {
  min-height: 490px;
  aspect-ratio: auto;
}

.product-screen-full img {
  object-fit: contain;
  object-position: center;
}

.floating-proof {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  background: rgba(16, 22, 23, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.floating-proof .icon {
  color: var(--accent);
}

.floating-proof-a {
  top: 8px;
  right: -20px;
}

.floating-proof-b {
  bottom: 4px;
  left: -28px;
}

.value {
  border-top: 1px solid var(--border-default);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.value-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(20, 27, 28, 0.82), rgba(12, 16, 17, 0.82));
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 199, 223, 0.34);
  background: linear-gradient(145deg, rgba(23, 33, 34, 0.92), rgba(12, 16, 17, 0.88));
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 199, 223, 0.25);
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}

.icon-badge .icon {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  max-width: 300px;
  margin-top: 74px;
}

.value-card p {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.card-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.fragmentation {
  border-block: 1px solid var(--border-default);
  background:
    radial-gradient(circle at 76% 50%, rgba(0, 199, 223, 0.055), transparent 34rem),
    var(--bg-secondary);
}

.fragmentation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
}

.section-copy blockquote {
  max-width: 660px;
  margin: 34px 0 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--accent);
  color: var(--text-primary);
  font-size: 19px;
  line-height: 1.55;
}

.fragment-map {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: rgba(10, 14, 15, 0.7);
  box-shadow: var(--shadow-soft);
}

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

.source-cloud span {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: var(--surface-primary);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.source-cloud span:nth-child(4) {
  grid-column: 1 / 2;
}

.source-cloud span:nth-child(5) {
  grid-column: 2 / 4;
}

.source-cloud .icon {
  color: var(--text-muted);
}

.flow-connector {
  position: relative;
  width: 72%;
  height: 92px;
  margin: auto;
}

.flow-connector::before,
.flow-connector::after,
.flow-connector i,
.flow-connector b {
  position: absolute;
  background: linear-gradient(var(--border-strong), var(--accent));
  content: "";
}

.flow-connector::before {
  top: 0;
  left: 0;
  width: 1px;
  height: 48px;
}

.flow-connector::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 48px;
}

.flow-connector i:first-child {
  top: 0;
  left: 50%;
  width: 1px;
  height: 92px;
}

.flow-connector i:nth-child(2) {
  top: 47px;
  left: 0;
  width: 50%;
  height: 1px;
}

.flow-connector i:nth-child(3) {
  top: 47px;
  right: 0;
  width: 50%;
  height: 1px;
}

.flow-connector b {
  bottom: -4px;
  left: calc(50% - 4px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0, 199, 223, 0.08);
}

.unified-node {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 199, 223, 0.4);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(0, 199, 223, 0.14), rgba(0, 199, 223, 0.025));
  box-shadow: var(--shadow-accent);
}

.unified-node img {
  border-radius: 13px;
}

.unified-node span,
.unified-node strong {
  display: block;
}

.unified-node span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.unified-node strong {
  margin-top: 3px;
  font-size: 18px;
}

.flow-explorer {
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-soft);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(128px, 1fr));
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}

.flow-steps > i {
  display: none;
}

.flow-steps button {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.flow-steps button:last-child {
  border-right: 0;
}

.flow-steps button:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.flow-steps button[aria-selected="true"] {
  background: linear-gradient(180deg, rgba(0, 199, 223, 0.12), rgba(0, 199, 223, 0.025));
  color: var(--accent);
  box-shadow: inset 0 -2px var(--accent);
}

.flow-steps button span {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
}

.flow-detail {
  min-height: 180px;
  display: grid;
  grid-template-columns: 110px 1fr 64px;
  align-items: center;
  gap: 28px;
  padding: 36px 42px;
  border-top: 1px solid var(--border-default);
}

.flow-detail > span {
  color: var(--accent);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.flow-detail h3 {
  margin-bottom: 10px;
}

.flow-detail p {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.flow-detail > .icon {
  width: 46px;
  height: 46px;
  color: rgba(0, 199, 223, 0.35);
}

.question-ladder {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.question-ladder > div {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: rgba(14, 19, 20, 0.72);
}

.question-ladder span {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.question-ladder strong {
  margin-top: 5px;
  font-size: 17px;
}

.question-ladder > .icon {
  color: var(--text-muted);
}

.question-ladder > div.active {
  border-color: rgba(0, 199, 223, 0.38);
  background: var(--accent-soft);
}

.question-ladder > div.active span {
  color: var(--accent);
}

.product {
  border-block: 1px solid var(--border-default);
  background: var(--bg-secondary);
}

.product-showcase {
  margin-top: 56px;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.product-tabs button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--border-default);
  border-radius: 11px;
  background: rgba(14, 19, 20, 0.76);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.product-tabs button:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.product-tabs button[aria-selected="true"] {
  border-color: rgba(0, 199, 223, 0.52);
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.product-panels {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: #0c1112;
  box-shadow: var(--shadow-soft);
}

.product-panels section {
  animation: panel-in 0.32s var(--ease) both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.product-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-size: 15px;
}

.product-caption strong {
  color: var(--accent);
}

.comparison-scroll {
  margin-top: 54px;
  overflow-x: auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-soft);
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}

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

.comparison table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison th,
.comparison td {
  padding: 20px 22px;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

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

.comparison tbody tr:last-child th,
.comparison tbody tr:last-child td {
  border-bottom: 0;
}

.comparison thead th {
  background: #111718;
  color: var(--text-primary);
  font-size: 14px;
}

.comparison thead th:first-child,
.comparison tbody th {
  width: 24%;
}

.comparison tbody th {
  color: var(--text-primary);
  font-weight: 600;
}

.comparison .accent-column {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
}

.comparison td:last-child {
  background: rgba(0, 199, 223, 0.035);
  color: #dbecee;
}

.comparison .summary-row th,
.comparison .summary-row td {
  border-top: 1px solid rgba(0, 199, 223, 0.38);
  background: rgba(0, 199, 223, 0.085);
  color: var(--text-primary);
  font-weight: 650;
}

.comparison-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 26px;
}

.comparison-cta p {
  max-width: 700px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.proof {
  border-block: 1px solid var(--border-default);
  background: var(--bg-secondary);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
}

.proof-statement {
  position: sticky;
  top: 120px;
  align-self: start;
}

.proof-grid {
  border-top: 1px solid var(--border-default);
}

.proof-grid article {
  display: grid;
  grid-template-columns: 42px 44px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-default);
}

.proof-grid article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.proof-grid article > .icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.proof-grid h3 {
  margin-bottom: 9px;
}

.proof-grid p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
  margin-top: 60px;
}

.features-bento article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(20, 27, 28, 0.82), rgba(11, 15, 16, 0.8));
  transition: border-color 0.24s, transform 0.24s var(--ease);
}

.features-bento article::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0, 199, 223, 0.08);
  border-radius: 50%;
  content: "";
}

.features-bento article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 199, 223, 0.3);
}

.features-bento article > div > p:first-child {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.features-bento article > div > p:not(:first-child) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.features-bento ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.features-bento li {
  padding: 5px 9px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-size: 13px;
}

.bento-profit {
  grid-column: span 7;
  grid-row: span 2;
}

.bento-sales,
.bento-ads {
  grid-column: span 5;
}

.bento-finance {
  grid-column: span 6;
}

.bento-stocks,
.bento-team {
  grid-column: span 3;
}

.bento-data {
  grid-column: span 12;
  min-height: 180px;
}

.capability-toggle {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface-primary);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.capability-toggle:hover {
  border-color: rgba(0, 199, 223, 0.46);
  background: var(--accent-soft);
}

.capability-toggle .icon {
  color: var(--accent);
  transition: transform 0.2s;
}

.capability-toggle[aria-expanded="true"] .icon {
  transform: rotate(90deg);
}

.capability-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.capability-groups section {
  padding: 28px;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: rgba(13, 18, 19, 0.84);
  animation: panel-in 0.28s var(--ease) both;
}

.capability-groups section > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.capability-groups h3 {
  margin: 20px 0;
  font-size: 20px;
}

.capability-groups ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-groups li {
  position: relative;
  padding: 9px 0 9px 18px;
  border-top: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-size: 14px;
}

.capability-groups li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.beta {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.beta-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 7vw, 82px);
  border: 1px solid rgba(241, 173, 61, 0.3);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 50%, rgba(241, 173, 61, 0.14), transparent 24rem),
    linear-gradient(140deg, #17140e, #0d1112 64%);
  box-shadow: var(--shadow-soft);
}

.beta-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.beta h2 {
  max-width: 760px;
}

.beta .section-lead {
  max-width: 760px;
  margin-bottom: 32px;
}

.beta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4c4aa;
  font-size: 14px;
}

.beta-note .icon {
  color: var(--warning);
}

.beta-orbit {
  position: absolute;
  right: -60px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(241, 173, 61, 0.12);
  border-radius: 50%;
}

.beta-orbit::before,
.beta-orbit::after {
  position: absolute;
  border: 1px solid rgba(241, 173, 61, 0.09);
  border-radius: 50%;
  content: "";
}

.beta-orbit::before {
  inset: 64px;
}

.beta-orbit::after {
  inset: 132px;
}

.beta-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 24px rgba(241, 173, 61, 0.6);
}

.beta-orbit i:first-child { top: 54px; left: 96px; }
.beta-orbit i:nth-child(2) { right: 31px; bottom: 140px; }
.beta-orbit i:nth-child(3) { bottom: 22px; left: 170px; }

.faq {
  border-top: 1px solid var(--border-default);
  background: var(--bg-secondary);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  border-top: 1px solid var(--border-default);
}

.faq-list details {
  border-bottom: 1px solid var(--border-default);
}

.faq-list summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px 1fr 34px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.faq-list summary strong {
  font-size: 17px;
  font-weight: 650;
}

.faq-list summary i {
  color: var(--accent);
  font-size: 24px;
  font-style: normal;
  text-align: center;
  transition: transform 0.2s;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 46px 28px 58px;
  color: var(--text-secondary);
  font-size: 15px;
}

.contacts {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.contacts-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  align-items: center;
  gap: 44px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--surface-primary);
}

.contacts-panel .section-lead {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 17px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-links a {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.25;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 199, 223, 0.34);
  background: var(--accent-soft);
  color: var(--text-primary);
}

.contact-links .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.final-cta {
  padding-top: clamp(3.5rem, 6vw, 5rem);
}

.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  padding: clamp(38px, 7vw, 78px);
  border: 1px solid rgba(0, 199, 223, 0.28);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(100deg, rgba(0, 199, 223, 0.12), rgba(0, 199, 223, 0.015) 58%),
    var(--bg-secondary);
  box-shadow: var(--shadow-soft);
}

.final-panel > div:first-child {
  max-width: 770px;
}

.final-action {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.final-action small {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  padding: 58px 0 30px;
  border-top: 1px solid var(--border-default);
  background: #070a0b;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 52px;
}

.footer-main > p {
  max-width: 520px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-main nav a,
.footer-legal a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-main nav a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
}

.footer-legal a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 199, 223, 0.34);
  text-underline-offset: 4px;
}

.footer-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-meta span:last-child {
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-nav { gap: 17px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 900px; }
  .hero-product { width: min(100%, 920px); }
  .fragmentation-layout,
  .proof-layout { grid-template-columns: 1fr; }
  .fragment-map { max-width: 900px; }
  .proof-statement { position: static; }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { min-height: 72px; }
  .site-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    background: rgba(12, 17, 18, 0.98);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; padding: 0 12px; border-bottom: 1px solid var(--border-default); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: grid; }
  .header-actions { margin-left: auto; }
  .header-actions .login-link { display: none; }
  .section-heading.split { grid-template-columns: 1fr; gap: 10px; }
  .section-heading.split .section-lead { margin-top: 20px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 260px; }
  .value-card h3 { margin-top: 48px; }
  .comparison-cta { align-items: flex-start; flex-direction: column; }
  .question-ladder { grid-template-columns: 1fr; }
  .question-ladder > .icon { transform: rotate(90deg); margin: -6px auto; }
  .features-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .features-bento article { grid-column: auto; grid-row: auto; min-height: 280px; }
  .capability-groups { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .faq-intro { position: static; }
  .contacts-panel { grid-template-columns: 1fr; }
  .contact-links { grid-template-columns: 1fr 1fr 1fr; }
  .final-panel { grid-template-columns: 1fr; align-items: start; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { grid-template-columns: 1fr; gap: 8px; }
  .footer-meta span:last-child { text-align: left; }
}

@media (max-width: 680px) {
  :root {
    --section-space: 5rem;
    --font-h1: clamp(2.45rem, 11vw, 2.75rem);
    --font-h2: clamp(2rem, 8.8vw, 2.25rem);
  }
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand small { display: none; }
  .brand strong { font-size: 16px; }
  .brand img { width: 38px; height: 38px; }
  .header-actions .button { display: none; }
  .hero { min-height: auto; padding-top: 122px; }
  .hero h1 { font-size: clamp(2.15rem, 9.5vw, 2.4rem); line-height: 1.08; }
  .hero-layout { gap: 42px; }
  .hero-lead,
  .section-lead { font-size: 17px; }
  .cta-group { align-items: stretch; flex-direction: column; }
  .cta-group .button { width: 100%; }
  .microcopy { display: grid; gap: 5px; }
  .microcopy span + span::before { display: none; }
  .hero-product { padding-bottom: 18px; }
  .js .hero-product[data-reveal] { opacity: 1; transform: none; }
  .hero-window { transform: none; }
  .window-bar small { display: none; }
  .hero-screen { min-height: 360px; }
  .product-screen { aspect-ratio: 4 / 3; }
  .product-screen.product-screen-full { aspect-ratio: 16 / 9; }
  .product-screen.crop-app-shell img { left: -32%; width: 132%; }
  .floating-proof { display: none; }
  .value-grid { margin-top: 38px; }
  .value-card { min-height: 280px; padding: 24px; }
  .fragmentation-layout { gap: 42px; }
  .section-copy blockquote { font-size: 17px; }
  .fragment-map { padding: 18px; }
  .source-cloud { grid-template-columns: 1fr 1fr; }
  .source-cloud span:nth-child(4),
  .source-cloud span:nth-child(5) { grid-column: auto; }
  .source-cloud span:last-child { grid-column: 1 / -1; }
  .unified-node { align-items: flex-start; }
  .unified-node strong { font-size: 16px; }
  .flow-explorer { margin-top: 40px; }
  .flow-steps { grid-template-columns: repeat(6, 132px); }
  .flow-steps button { min-height: 110px; padding: 18px; }
  .flow-detail { grid-template-columns: 1fr; gap: 12px; padding: 26px 22px; }
  .flow-detail > .icon { display: none; }
  .question-ladder > div { min-height: 88px; }
  .product-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 5px; }
  .product-tabs button { flex: 0 0 auto; }
  .product-caption { grid-template-columns: 1fr; padding: 18px; }
  .comparison-scroll { margin-right: -15px; margin-left: -15px; border-radius: 0; }
  .comparison-mobile-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 -30px;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
  }
  .comparison-mobile-hint .icon { width: 18px; height: 18px; color: var(--accent); }
  .comparison tbody th {
    position: sticky;
    z-index: 2;
    left: 0;
    background: #0c1112;
    box-shadow: 1px 0 var(--border-default);
  }
  .comparison thead th:first-child {
    position: sticky;
    z-index: 3;
    left: 0;
    background: #111718;
    box-shadow: 1px 0 var(--border-default);
  }
  .comparison .summary-row th { background: #0b292d; }
  .comparison th,
  .comparison td { padding: 16px; font-size: 14px; }
  .proof-layout { gap: 38px; }
  .proof-grid article { grid-template-columns: 32px 34px 1fr; gap: 12px; }
  .features-bento { grid-template-columns: 1fr; }
  .features-bento article { min-height: 300px; padding: 24px; }
  .capability-groups { grid-template-columns: 1fr; }
  .capability-groups section { padding: 24px; }
  .beta-panel { min-height: 540px; align-items: flex-start; }
  .beta-orbit { right: -230px; bottom: -180px; }
  .beta-note { justify-content: center; }
  .faq-list summary { grid-template-columns: 30px 1fr 24px; gap: 10px; }
  .faq-list summary strong { font-size: 16px; }
  .faq-list details p { padding: 0 26px 24px 40px; font-size: 15px; }
  .contacts-panel { padding: 26px 20px; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-links a { min-height: 64px; padding: 16px; }
  .final-panel { padding: 32px 22px; }
  .final-action .button { width: 100%; }
  .footer-legal { display: grid; gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
