:root {
  color-scheme: dark;
  --bg: #090a0c;
  --bg-soft: #0e1013;
  --surface: #121419;
  --surface-2: #17191f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #f5f4f0;
  --muted: #a4a6ad;
  --muted-2: #777a82;
  --orange: #ff5a1f;
  --orange-light: #ff814d;
  --orange-dim: rgba(255, 90, 31, 0.12);
  --green: #83e6a2;
  --shell: min(1180px, calc(100vw - 40px));
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--orange);
  color: #fff;
}

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

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

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7.4vw, 6.8rem);
  font-weight: 710;
}

h1 em {
  background: linear-gradient(100deg, #ff5a1f 10%, #ff9b6f 88%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
  font-weight: 680;
}

h3 {
  font-size: 1.55rem;
  font-weight: 650;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 132px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--orange);
  color: white;
  font-weight: 650;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(9, 10, 12, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  display: flex;
  width: var(--shell);
  height: 80px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.brand img {
  border-radius: 11px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.32));
}

.brand strong {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav > a:not(.button) {
  color: #c9c9cd;
  font-size: 0.91rem;
  font-weight: 550;
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: #fff;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 4px;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 12px 32px rgba(255, 90, 31, 0.2), inset 0 1px rgba(255, 255, 255, 0.19);
  color: #fff;
}

.button-primary:hover {
  background: #ff6b35;
  box-shadow: 0 16px 38px rgba(255, 90, 31, 0.28), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  min-height: 940px;
  padding-top: 176px;
  padding-bottom: 108px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(1300px, 100vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  content: "";
  transform: translateX(-50%);
}

.hero-glow {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 1050px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 82, 23, 0.13), transparent 66%);
  filter: blur(20px);
  transform: translateX(-18%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 11px;
  color: #c0c1c5;
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.12);
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 34px;
  color: #b7b8be;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-note {
  margin: 17px 0 0;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.download-note span {
  margin-inline: 6px;
  color: #464950;
}

.hero-stats {
  display: flex;
  margin: 62px 0 0;
  gap: 0;
}

.hero-stats > div {
  min-width: 145px;
  padding: 0 26px;
  border-left: 1px solid var(--line-strong);
}

.hero-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  margin-bottom: 4px;
  color: var(--orange-light);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-stats dt span {
  color: var(--orange-light);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: #777a82;
  font-size: 0.72rem;
}

.hero-product {
  position: relative;
  width: 100%;
  padding: 26px 0 42px;
  perspective: 1300px;
}

.product-halo {
  position: absolute;
  inset: -14% -20%;
  background: radial-gradient(circle at center, rgba(255, 91, 31, 0.16), transparent 60%);
  filter: blur(16px);
  pointer-events: none;
}

.app-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: #17191d;
  box-shadow: 0 70px 110px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(0, 0, 0, 0.8),
    inset 0 1px rgba(255, 255, 255, 0.07);
  transform: rotateY(-4deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  height: 52px;
  padding-inline: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: #15171b;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d6d6da;
  font-size: 0.72rem;
  font-weight: 650;
}

.window-brand img {
  border-radius: 6px;
}

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

.window-controls i {
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #64666d;
  border-radius: 50%;
}

.capture-canvas {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: radial-gradient(circle at 19% 15%, rgba(95, 118, 183, 0.24), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(255, 105, 52, 0.2), transparent 33%),
    linear-gradient(135deg, #242936, #15171d 62%, #28201d);
}

.capture-canvas::before,
.capture-canvas::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.capture-canvas::before {
  top: 70px;
  right: 48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 80px rgba(120, 130, 255, 0.12);
}

.capture-canvas::after {
  bottom: 68px;
  left: 40px;
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.035);
}

.desktop-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(9, 11, 15, 0.45);
  backdrop-filter: blur(8px);
}

.desktop-card span {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.card-one {
  top: 44px;
  left: 26px;
  width: 190px;
  height: 126px;
}

.card-one span:nth-child(1) { width: 40%; background: rgba(255, 101, 46, 0.5); }
.card-one span:nth-child(2) { width: 84%; }
.card-one span:nth-child(3) { width: 67%; }

.card-two {
  right: 24px;
  bottom: 46px;
  width: 170px;
  height: 108px;
}

.card-two span:nth-child(1) { width: 72%; }
.card-two span:nth-child(2) { width: 45%; background: rgba(119, 218, 156, 0.45); }

.selection-box {
  position: absolute;
  top: 74px;
  right: 61px;
  bottom: 84px;
  left: 75px;
  z-index: 2;
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 999px rgba(4, 5, 7, 0.36), 0 0 28px rgba(255, 90, 31, 0.14);
}

.selection-size {
  position: absolute;
  top: -30px;
  left: -2px;
  padding: 4px 8px;
  border-radius: 5px 5px 0 0;
  background: var(--orange);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
}

.handle {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: #fff;
}

.handle-nw { top: -5px; left: -5px; }
.handle-ne { top: -5px; right: -5px; }
.handle-sw { bottom: -5px; left: -5px; }
.handle-se { right: -5px; bottom: -5px; }

.annotation-arrow {
  position: absolute;
  top: 42px;
  left: 38px;
  width: 170px;
  color: #ff6d37;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
  stroke-width: 5;
}

.callout {
  position: absolute;
  top: 54px;
  right: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px 9px 9px 2px;
  background: rgba(18, 21, 26, 0.86);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  font-size: 0.68rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.editor-toolbar {
  position: absolute;
  bottom: 19px;
  left: 50%;
  z-index: 4;
  display: flex;
  padding: 7px;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(19, 21, 26, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.editor-toolbar > i {
  width: 1px;
  height: 21px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.11);
}

.tool {
  display: grid;
  width: 31px;
  height: 31px;
  border-radius: 7px;
  place-items: center;
  color: #a8aab0;
}

.tool svg {
  width: 15px;
  height: 15px;
}

.tool.active {
  background: rgba(255, 90, 31, 0.16);
  color: var(--orange-light);
}

.tool.confirm {
  background: var(--orange);
  color: white;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  align-items: center;
  gap: 8px;
  background: rgba(18, 20, 24, 0.9);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.4);
  color: #c7c8cc;
  font-size: 0.72rem;
  font-weight: 620;
  backdrop-filter: blur(14px);
}

.floating-chip strong {
  color: var(--orange-light);
  font-size: 0.9rem;
}

.chip-speed {
  bottom: 1px;
  left: -28px;
}

.chip-memory {
  top: 2px;
  right: -26px;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.pulse-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--green);
  border-radius: inherit;
  content: "";
  opacity: 0.35;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #0b0c0e;
}

.trust-row {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-row p {
  margin: 0;
  color: #686a72;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #999ba1;
  font-size: 0.79rem;
  font-weight: 600;
}

.trust-row svg {
  width: 18px;
  height: 18px;
  color: #676a72;
}

.performance {
  background: linear-gradient(180deg, #0b0c0f 0%, #101217 52%, #0b0c0e 100%);
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 100px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

.benchmark-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.benchmark-card::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  content: "";
  filter: blur(10px);
}

.benchmark-featured {
  background: radial-gradient(circle at 100% 0%, rgba(255, 90, 31, 0.16), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.benchmark-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #c6c7ca;
  font-size: 0.78rem;
  font-weight: 620;
}

.benchmark-topline strong {
  padding: 6px 9px;
  border: 1px solid rgba(131, 230, 162, 0.18);
  border-radius: 99px;
  background: rgba(131, 230, 162, 0.08);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
}

.metric-value {
  margin: 25px 0 0;
  color: var(--orange-light);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-value small {
  display: block;
  margin-top: 10px;
  color: #d0d1d4;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.metric-explainer {
  min-height: 45px;
  margin: 17px 0 27px;
  color: #858890;
  font-size: 0.76rem;
  line-height: 1.55;
}

.bar-pair {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 73px minmax(0, 1fr) 78px;
  align-items: center;
  gap: 11px;
  color: #868990;
  font-size: 0.68rem;
  font-weight: 600;
}

.bar-row > div {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.055);
}

.bar-row i {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 90, 31, 0.22);
}

.bar-row b {
  color: #bfc0c4;
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}

.bar-row.competitor i {
  background: #4b4e56;
  box-shadow: none;
}

.benchmark-note {
  display: grid;
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.025);
}

.benchmark-proof {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.benchmark-proof strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.benchmark-proof span {
  color: #777a82;
  font-size: 0.64rem;
}

.benchmark-note p {
  margin: 0;
  color: #7f8289;
  font-size: 0.72rem;
  line-height: 1.6;
}

.benchmark-note a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d6d6da;
  font-size: 0.75rem;
  font-weight: 650;
}

.benchmark-note a:hover,
.text-link:hover {
  color: var(--orange-light);
}

.benchmark-note a svg,
.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.benchmark-note a:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.workflow {
  padding-bottom: 112px;
}

.workflow-steps {
  display: grid;
  margin: 0 0 86px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.workflow-steps article {
  position: relative;
  min-height: 390px;
  padding: 32px;
  background: var(--bg-soft);
}

.step-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #494b51;
  font-size: 0.7rem;
  font-weight: 700;
}

.step-icon {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 31px 0 50px;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 24px;
  background: var(--orange-dim);
}

.step-icon.crosshair::before,
.step-icon.crosshair::after {
  position: absolute;
  background: var(--orange-light);
  content: "";
}

.step-icon.crosshair::before { top: 20px; bottom: 20px; left: 43px; width: 2px; }
.step-icon.crosshair::after { top: 43px; right: 20px; left: 20px; height: 2px; }
.step-icon.crosshair i { position: absolute; inset: 30px; border: 2px solid var(--orange-light); border-radius: 50%; }

.step-icon.markup i {
  position: absolute;
  top: 21px;
  left: 42px;
  width: 9px;
  height: 48px;
  border-radius: 4px 4px 0 0;
  background: var(--orange-light);
  box-shadow: 0 0 18px rgba(255, 90, 31, 0.25);
  transform: rotate(38deg);
}

.step-icon.markup i::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  border-top: 8px solid var(--orange-light);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.step-icon.checkmark i {
  position: absolute;
  top: 27px;
  left: 27px;
  width: 33px;
  height: 19px;
  border-bottom: 3px solid var(--orange-light);
  border-left: 3px solid var(--orange-light);
  transform: rotate(-45deg);
}

.workflow-steps h3 {
  margin-bottom: 14px;
}

.workflow-steps p {
  min-height: 72px;
  margin-bottom: 24px;
  color: #92949b;
  font-size: 0.86rem;
  line-height: 1.65;
}

kbd {
  display: inline-flex;
  min-width: 26px;
  height: 25px;
  padding: 0 7px;
  border: 1px solid #393c43;
  border-bottom-width: 2px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  background: #1c1e23;
  color: #b7b9be;
  font-family: inherit;
  font-size: 0.63rem;
  font-weight: 650;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.tool-list,
.key-caption {
  color: #6f7279;
  font-size: 0.7rem;
  font-weight: 600;
}

.key-caption { margin-left: 6px; }

.feature-bento {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-areas: "editor tools" "automation native";
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014));
}

.bento-card h3 {
  margin: 14px 0 17px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.bento-card p {
  max-width: 480px;
  color: #8e9098;
  font-size: 0.87rem;
  line-height: 1.7;
}

.feature-label {
  color: var(--orange-light);
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bento-editor {
  grid-area: editor;
  min-height: 500px;
}

.bento-editor::after {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.08);
  content: "";
  filter: blur(28px);
}

.layers-demo {
  position: absolute;
  right: 56px;
  bottom: 56px;
  width: 300px;
  height: 190px;
  perspective: 900px;
  transform: rotate(-5deg);
}

.layer {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  height: 116px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(30, 33, 39, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  color: #9ea0a7;
  font-size: 0.66rem;
  font-weight: 650;
  transform: rotateX(58deg) rotateZ(-2deg);
}

.layer-back { bottom: -18px; opacity: 0.5; }
.layer-mid { bottom: 25px; border-color: rgba(255, 90, 31, 0.22); }
.layer-front { bottom: 70px; border-color: rgba(255, 90, 31, 0.48); background: rgba(39, 31, 29, 0.96); }
.layer-front i { padding: 4px 7px; border-radius: 99px; background: var(--orange-dim); color: var(--orange-light); font-size: 0.56rem; font-style: normal; }

.bento-tools {
  grid-area: tools;
}

.tool-cloud {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-cloud span {
  display: flex;
  min-height: 37px;
  padding: 0 11px 0 7px;
  border: 1px solid var(--line);
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #9b9da4;
  font-size: 0.65rem;
  font-weight: 600;
}

.tool-cloud b {
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  place-items: center;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange-light);
  font-size: 0.6rem;
}

.bento-automation {
  grid-area: automation;
}

.settings-demo {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
  gap: 10px;
}

.settings-demo > span {
  display: flex;
  min-height: 45px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.025);
  color: #a0a2a8;
  font-size: 0.69rem;
}

.toggle {
  position: relative;
  width: 28px;
  height: 16px;
  border-radius: 99px;
  background: #393c43;
}

.toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa;
  content: "";
}

.toggle.on { background: var(--orange); }
.toggle.on::after { left: 15px; background: white; }

.bento-native {
  display: flex;
  min-height: 460px;
  grid-area: native;
  flex-direction: column;
  justify-content: flex-end;
}

.native-orbit {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  margin: -14px auto auto;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  place-items: center;
}

.native-orbit::before,
.native-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.native-orbit::before { inset: 22px; }
.native-orbit::after { inset: -28px; }
.native-orbit img { border-radius: 22px; filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42)); }

.privacy {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0f12;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.privacy-visual {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
}

.privacy-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.privacy-rings::before,
.privacy-rings::after,
.privacy-rings i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 50%;
  content: "";
}

.privacy-rings::before { width: 420px; height: 420px; }
.privacy-rings::after { width: 310px; height: 310px; }
.privacy-rings i:nth-child(1) { width: 210px; height: 210px; border-color: rgba(255, 90, 31, 0.12); background: rgba(255, 90, 31, 0.025); }
.privacy-rings i:nth-child(2) { width: 4px; height: 4px; top: 48px; left: 50%; background: var(--orange); box-shadow: 0 0 16px var(--orange); }
.privacy-rings i:nth-child(3) { width: 4px; height: 4px; right: 42px; bottom: 164px; background: #777; }

.privacy-shield {
  position: relative;
  z-index: 2;
  display: grid;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 90, 31, 0.25);
  border-radius: 32px;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 90, 31, 0.17), rgba(255, 90, 31, 0.06));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.09);
}

.privacy-shield svg {
  width: 47px;
  height: 47px;
  color: var(--orange-light);
}

.privacy-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(18, 20, 24, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  color: #a9abb1;
  font-size: 0.65rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

.tag-one { top: 106px; right: 5px; }
.tag-two { bottom: 112px; left: 12px; }
.tag-three { right: 24px; bottom: 52px; }

.privacy-copy > p {
  max-width: 610px;
  color: #989aa1;
  font-size: 1rem;
  line-height: 1.8;
}

.check-list {
  display: flex;
  margin: 31px 0 35px;
  padding: 0;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #c2c3c7;
  font-size: 0.82rem;
}

.check-list span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  background: rgba(131, 230, 162, 0.1);
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
}

.get-started {
  padding-bottom: 90px;
}

.download-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 520px;
  padding: 66px;
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: 32px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  background: radial-gradient(circle at 8% 0%, rgba(255, 90, 31, 0.13), transparent 36%),
    linear-gradient(135deg, #171516, #111317 66%);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.06);
}

.download-card::after {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.012), 0 0 0 140px rgba(255, 255, 255, 0.009);
  content: "";
}

.download-card-copy {
  position: relative;
  z-index: 1;
}

.download-card-copy > img {
  margin-bottom: 36px;
  border-radius: 19px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.34));
}

.download-card h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.2rem);
}

.download-card p {
  max-width: 550px;
  color: #96989f;
}

.download-card .hero-actions {
  margin-top: 30px;
}

.install-steps {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.install-steps li {
  position: relative;
  display: flex;
  min-height: 100px;
  align-items: flex-start;
  gap: 18px;
}

.install-steps li:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: 4px;
  left: 19px;
  width: 1px;
  background: linear-gradient(var(--orange), rgba(255, 90, 31, 0.12));
  content: "";
}

.install-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 12px;
  place-items: center;
  background: #211715;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 700;
}

.install-steps p {
  display: flex;
  margin: 2px 0 0;
  flex-direction: column;
  color: #7d7f87;
  font-size: 0.74rem;
}

.install-steps strong {
  margin-bottom: 3px;
  color: #e8e7e4;
  font-size: 0.91rem;
}

.install-steps code {
  color: #c9c9cc;
  font-family: "Cascadia Code", Consolas, monospace;
}

.faq {
  padding-top: 74px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.faq-grid h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  padding-right: 50px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #d2d2d5;
  font-size: 0.94rem;
  font-weight: 610;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 1px;
  background: #898b92;
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after { inset: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }

.faq-list details p {
  max-width: 670px;
  margin: -4px 0 28px;
  color: #898b92;
  font-size: 0.83rem;
}

.site-footer {
  padding-top: 70px;
  border-top: 1px solid var(--line);
  background: #08090a;
}

.footer-top {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 54px;
}

.footer-top > p {
  margin: 0;
  color: #6f7178;
  font-size: 0.8rem;
}

.footer-top nav {
  display: flex;
  gap: 28px;
}

.footer-top nav a {
  color: #999ba1;
  font-size: 0.77rem;
  font-weight: 600;
}

.footer-top nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  min-height: 74px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  color: #565960;
  font-size: 0.67rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal][data-delay="1"] { transition-delay: 90ms; }
.js [data-reveal][data-delay="2"] { transition-delay: 180ms; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 90px; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(700px, 92%); margin-inline: auto; }
  .section-heading { gap: 48px; }
  .feature-bento { grid-template-columns: 1fr 1fr; }
  .privacy-grid { gap: 40px; }
  .download-card { padding: 52px; gap: 44px; }
  .trust-row p { display: none; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .section { padding-block: 96px; }
  .js .menu-button {
    position: relative;
    z-index: 3;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #131519;
    color: white;
  }
  .menu-button > span:not(.sr-only) {
    position: absolute;
    top: 16px;
    left: 12px;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }
  .menu-button > span:nth-child(3) { top: 24px; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { top: 20px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
  .site-nav {
    margin-left: auto;
    gap: 0;
  }
  .site-nav > a:not(.button) { display: none; }
  .js .site-nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(16, 18, 22, 0.98);
    box-shadow: var(--shadow);
  }
  .js .site-nav.is-open { display: flex; }
  .js .site-nav > a:not(.button) { display: block; padding: 11px 10px; }
  .hero { padding-top: 142px; }
  h1 { font-size: clamp(3.35rem, 13.6vw, 5.8rem); }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p { max-width: 640px; }
  .benchmark-grid { grid-template-columns: 1fr; }
  .benchmark-note { grid-template-columns: 1fr; gap: 18px; }
  .benchmark-proof { padding-bottom: 17px; border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps article { min-height: 350px; }
  .workflow-steps p { min-height: auto; }
  .feature-bento { grid-template-columns: 1fr; grid-template-areas: "editor" "tools" "automation" "native"; }
  .bento-tools, .bento-automation, .bento-native { min-height: 390px; }
  .privacy-grid { grid-template-columns: 1fr; gap: 20px; }
  .privacy-visual { min-height: 440px; }
  .download-card { grid-template-columns: 1fr; padding: 44px; }
  .install-steps { margin-top: 10px; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-top nav { flex-wrap: wrap; }
  .trust-row { flex-wrap: wrap; justify-content: center; padding-block: 28px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); --radius: 19px; }
  .nav-shell { height: 68px; }
  .brand img { width: 34px; height: 34px; }
  .hero { padding-top: 120px; padding-bottom: 78px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-stats { margin-top: 48px; flex-wrap: nowrap; }
  .hero-stats > div { width: 33.333%; min-width: 0; padding-inline: 12px; }
  .hero-stats > div:nth-child(3) { padding-left: 12px; border-left: 1px solid var(--line-strong); }
  .hero-product { width: 100%; padding-inline: 2px; }
  .app-window { transform: none; }
  .capture-canvas { height: 360px; }
  .selection-box { top: 66px; right: 34px; bottom: 72px; left: 34px; }
  .annotation-arrow { width: 130px; }
  .callout { right: 16px; }
  .chip-speed { left: -2px; }
  .chip-memory { right: -2px; }
  .trust-row { justify-content: flex-start; }
  .trust-row span { width: calc(50% - 12px); }
  .section-heading { margin-bottom: 42px; gap: 20px; }
  .benchmark-card { min-height: 350px; padding: 24px 20px; }
  .benchmark-topline { align-items: flex-start; flex-direction: column; gap: 8px; }
  .metric-value { margin-top: 23px; }
  .bar-row { grid-template-columns: 60px minmax(0, 1fr) 72px; gap: 8px; }
  .benchmark-note { padding: 22px; }
  .workflow-steps article { padding: 25px; }
  .bento-card { min-height: 420px; padding: 28px 24px; }
  .bento-editor { min-height: 520px; }
  .layers-demo { right: 28px; bottom: 30px; width: calc(100% - 56px); }
  .privacy-visual { min-height: 390px; transform: scale(0.88); }
  .privacy-rings::before { width: 360px; height: 360px; }
  .privacy-rings::after { width: 270px; height: 270px; }
  .download-card { padding: 32px 24px; border-radius: 24px; }
  .download-card-copy > img { width: 60px; height: 60px; }
  .faq-list summary { min-height: 74px; padding-right: 38px; font-size: 0.88rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(255, 255, 255, 0.22); --line-strong: rgba(255, 255, 255, 0.38); --muted: #c4c5c9; }
}
