:root {
  --ink: #141416;
  --ink-soft: #5f626b;
  --dark: #09090b;
  --dark-soft: #121216;
  --surface: #ffffff;
  --surface-soft: #f6f6f7;
  --line: rgba(20, 20, 22, .1);
  --coral: #f04449;
  --coral-bright: #ff676c;
  --coral-soft: #fff0ef;
  --green: #28a66b;
  --blue: #4b82c3;
  --max: 1220px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(31, 24, 24, .11);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1, h2, h3 {
  letter-spacing: -.035em;
}

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

.section {
  padding: 120px 0;
}

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

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 780;
  white-space: nowrap;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform .22s ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral-bright), var(--coral) 72%);
  box-shadow: 0 18px 45px rgba(240, 68, 73, .25);
}

.button-primary:hover {
  box-shadow: 0 22px 55px rgba(240, 68, 73, .34);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(10px);
}

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

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 12px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 71% 56%, rgba(132, 23, 30, .22), transparent 30%),
    linear-gradient(135deg, #080809, #100d0e 55%, #160a0d);
}

.hero-grid-pattern,
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(110deg, #000, rgba(0, 0, 0, .2) 75%, transparent);
  mask-image: linear-gradient(110deg, #000, rgba(0, 0, 0, .2) 75%, transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.hero-glow-one {
  top: -320px;
  right: -170px;
  width: 720px;
  height: 720px;
  background: rgba(240, 68, 73, .18);
}

.hero-glow-two {
  bottom: -430px;
  left: 25%;
  width: 700px;
  height: 620px;
  background: rgba(255, 103, 108, .11);
}

.hero-container {
  z-index: 1;
}

.header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.brand-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(240, 68, 73, .24);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 680;
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover {
  color: #fff;
}

.header-cta {
  justify-self: end;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s;
}

.menu-button.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero-layout {
  display: grid;
  grid-template-columns: minmax(430px, .86fr) minmax(610px, 1.14fr);
  align-items: center;
  gap: 56px;
  min-height: 700px;
  padding: 58px 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow,
.beta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 103, 108, .34);
  border-radius: 999px;
  color: #ffc0c1;
  background: rgba(240, 68, 73, .1);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .02em;
}

.pulse,
.beta-chip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-bright);
  box-shadow: 0 0 0 6px rgba(255, 103, 108, .11);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(255, 103, 108, 0); }
}

.hero h1 {
  max-width: 630px;
  margin-bottom: 24px;
  font-size: clamp(56px, 5vw, 78px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.065em;
}

.accent {
  display: block;
  color: var(--coral-bright);
  text-shadow: 0 0 45px rgba(255, 103, 108, .23);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-facts {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-facts > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-facts svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--coral-bright);
}

.hero-facts span {
  display: flex;
  flex-direction: column;
}

.hero-facts strong {
  font-size: 13px;
  line-height: 1.3;
}

.hero-facts small {
  color: rgba(255, 255, 255, .44);
  font-size: 11px;
}

.hero-product {
  position: relative;
  width: 780px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: #f7f7f8;
  box-shadow: 0 42px 100px rgba(0, 0, 0, .48), 0 0 0 8px rgba(255, 255, 255, .025);
  transform: perspective(1500px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
}

.window-chrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid #d9dade;
  border-radius: 22px 22px 0 0;
  color: #484a4f;
  background: #edeef0;
  font-size: 11px;
  font-weight: 700;
}

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

.window-dots i,
.tour-window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
}

.window-dots i:nth-child(2), .tour-window-bar i:nth-child(2) { background: #febc2e; }
.window-dots i:nth-child(3), .tour-window-bar i:nth-child(3) { background: #28c840; }

.window-beta {
  justify-self: end;
  color: #9a9ca1;
  font-size: 9px;
  letter-spacing: .12em;
}

.hero-shot-wrap {
  position: relative;
  height: 495px;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
}

.hero-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-shot-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 90px rgba(9, 9, 11, .11);
  pointer-events: none;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  color: #fff;
  background: rgba(18, 17, 20, .88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
  transform: translateZ(30px);
}

.float-card-top {
  top: 84px;
  left: -44px;
}

.float-card-bottom {
  right: -26px;
  bottom: -29px;
}

.float-card > span,
.float-card-bottom span {
  display: flex;
  flex-direction: column;
}

.float-card strong {
  font-size: 12px;
  letter-spacing: -.01em;
}

.float-card small {
  color: rgba(255, 255, 255, .47);
  font-size: 10px;
}

.float-card svg {
  width: 24px;
  height: 24px;
  color: #71d59f;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #71d59f;
  box-shadow: 0 0 0 6px rgba(113, 213, 159, .1);
}

.hero-bottom-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  height: 64px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .47);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .035em;
}

.hero-bottom-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coral-bright);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 60px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.kicker,
.mini-kicker {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading h2,
.enterprise-copy h2,
.platforms h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 870;
  line-height: 1.03;
  letter-spacing: -.055em;
}

.section-heading p,
.enterprise-copy > p,
.platforms-inner > div:first-child > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.intro {
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.agent-flow {
  display: grid;
  grid-template-columns: 1fr 62px 1fr 62px 1fr 62px 1fr;
  align-items: center;
  margin-bottom: 100px;
}

.flow-step {
  position: relative;
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.flow-step.active {
  z-index: 2;
  border-color: rgba(240, 68, 73, .34);
  box-shadow: 0 18px 55px rgba(40, 28, 30, .1);
  transform: translateY(-8px);
}

.flow-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #c3c4c8;
  font-size: 12px;
  font-weight: 800;
}

.flow-icon,
.card-icon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid rgba(240, 68, 73, .14);
  border-radius: 13px;
  color: var(--coral);
  background: var(--coral-soft);
}

.flow-icon svg,
.card-icon svg {
  width: 22px;
  height: 22px;
}

.flow-step h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.flow-link {
  position: relative;
  height: 1px;
  background: #d8d8db;
}

.flow-link::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #babac0;
  border-right: 1px solid #babac0;
  transform: rotate(45deg);
}

.flow-link span {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0;
}

.flow-link.play span {
  animation: flowDot .9s ease;
}

@keyframes flowDot {
  0% { opacity: 0; transform: translateX(0); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateX(58px); }
}

.agent-showcase {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 62px;
  padding: 66px 0 0 66px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 25px 80px rgba(25, 20, 20, .08);
}

.showcase-copy {
  align-self: center;
  padding-bottom: 66px;
}

.showcase-copy h3 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.08;
}

.showcase-copy > p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3b3e46;
  font-size: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-list li > span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green);
  background: #eaf8f0;
}

.check-list svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.showcase-image {
  position: relative;
  align-self: end;
  min-width: 0;
  padding: 9px 0 0 9px;
  border: 1px solid #dcdde0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 20px 0 0 0;
  background: #e9e9eb;
  box-shadow: -18px -18px 50px rgba(15, 15, 17, .08);
}

.showcase-image img {
  width: 920px;
  max-width: none;
  border-radius: 13px 0 0 0;
}

.image-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 182px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 20, 22, .08);
  border-radius: 13px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 16px 38px rgba(20, 20, 22, .13);
  backdrop-filter: blur(14px);
}

.note-agent { top: 22%; left: -30px; }
.note-diff { top: 51%; right: 28px; }

.note-index {
  display: inline-flex;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-size: 11px;
  font-weight: 800;
}

.image-note > span:last-child {
  display: flex;
  flex-direction: column;
}

.image-note b { font-size: 11px; }
.image-note small { color: #8a8c92; font-size: 9px; }

.capabilities {
  background: #f5f5f6;
}

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

.bento-card {
  position: relative;
  grid-column: span 6;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
  transition: transform .3s ease, box-shadow .3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(28, 24, 24, .08);
}

.bento-wide {
  grid-column: span 8;
}

.bento-terminal,
.bento-knowledge {
  grid-column: span 4;
}

.bento-card .card-icon {
  margin-bottom: 26px;
}

.card-label {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bento-card h3 {
  margin-bottom: 13px;
  font-size: 27px;
  line-height: 1.08;
}

.bento-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.bento-editor,
.bento-intelligence {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
}

.bento-editor .card-icon,
.bento-intelligence .card-icon {
  position: absolute;
  top: 34px;
  left: 34px;
}

.bento-editor .card-copy,
.bento-intelligence .card-copy {
  align-self: end;
  padding-top: 74px;
}

.code-card-visual {
  align-self: end;
  height: 300px;
  margin: 28px -35px -35px 0;
  overflow: hidden;
  border: 1px solid #dfe0e3;
  border-radius: 17px 0 0 0;
  background: #f9f9fa;
  box-shadow: -15px -15px 50px rgba(25, 20, 20, .07);
}

.code-tabs {
  display: flex;
  align-items: center;
  height: 42px;
  padding-left: 16px;
  border-bottom: 1px solid #e2e3e5;
  color: #92949a;
  background: #f0f1f2;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.code-tabs span {
  align-self: stretch;
  padding: 13px 15px 0;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.code-tabs .active {
  color: #34363b;
  border-color: #e2e3e5;
  background: #f9f9fa;
}

.code-tabs i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  margin-right: 14px;
  border-radius: 50%;
  background: #70cc9b;
}

.code-card-visual pre {
  margin: 0;
  padding: 36px 20px;
  color: #42454c;
  font: 13px/2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.code-card-visual em {
  color: #aaacb1;
  font-style: normal;
}

.code-card-visual b {
  color: #775bc4;
  font-weight: 600;
}

.code-card-visual span {
  color: var(--coral);
}

.terminal-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 166px;
  padding: 18px 22px;
  color: #d8d8dc;
  background: #151518;
  font: 11px/1.85 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.terminal-visual > div {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.terminal-visual i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5a5a60;
}

.terminal-visual p {
  margin: 0;
  color: #d8d8dc;
  font: inherit;
}

.terminal-visual p span { color: var(--coral-bright); }
.terminal-visual .terminal-success { color: #78d4a3; }

.bento-knowledge {
  background: linear-gradient(155deg, #fff 55%, #fff5f4);
}

.knowledge-tree {
  position: absolute;
  right: 25px;
  bottom: 27px;
  left: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 12px;
  text-align: center;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.knowledge-tree span {
  position: relative;
  z-index: 2;
  padding: 9px 6px;
  border: 1px solid rgba(240, 68, 73, .15);
  border-radius: 9px;
  color: #7f5557;
  background: rgba(255, 255, 255, .9);
}

.knowledge-tree .root {
  grid-column: 2;
  color: #fff;
  border-color: transparent;
  background: var(--coral);
}

.knowledge-tree i {
  position: absolute;
  top: 37px;
  left: 50%;
  width: 1px;
  height: 27px;
  background: rgba(240, 68, 73, .22);
}

.knowledge-tree i:nth-of-type(2) { width: 31%; height: 1px; top: 63px; left: 18%; transform: rotate(-25deg); transform-origin: right; }
.knowledge-tree i:nth-of-type(3) { width: 31%; height: 1px; top: 63px; left: 51%; transform: rotate(25deg); transform-origin: left; }

.bento-intelligence {
  background: #101013;
  color: #fff;
}

.bento-intelligence p {
  color: rgba(255, 255, 255, .55);
}

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.language-pills span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .04);
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.graph-visual {
  position: relative;
  min-height: 300px;
  margin: 25px -20px -20px 0;
}

.graph-visual > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(255, 103, 108, .34);
  stroke-width: 1;
}

.graph-node {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .66);
  background: #19191d;
  box-shadow: 0 13px 40px rgba(0, 0, 0, .3);
  font-size: 10px;
}

.node-main {
  top: 78px;
  left: 136px;
  width: 92px;
  height: 92px;
  color: #fff;
  border-color: rgba(255, 103, 108, .45);
  background: radial-gradient(circle at 35% 30%, #5b292c, #211618);
  box-shadow: 0 0 55px rgba(240, 68, 73, .18);
  font-size: 12px;
}

.node-one { top: 4px; left: 24px; }
.node-two { top: 0; right: 0; }
.node-three { right: 55px; bottom: 0; }

.context-meter {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  padding: 18px;
  border: 1px solid #e6e6e8;
  border-radius: 15px;
  background: #fafafb;
}

.context-meter div {
  display: flex;
  justify-content: space-between;
  color: #6a6c73;
  font-size: 11px;
}

.context-meter div b { color: var(--ink); }

.context-meter > i {
  display: block;
  height: 7px;
  margin: 11px 0 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8eb;
}

.context-meter > i span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--coral-bright));
}

.context-meter small { color: #a1a2a7; font-size: 10px; }

.mini-diff {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 1px;
  padding: 18px 0;
  border-top: 1px solid #ececef;
  background: #fafafb;
  font: 11px/2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.mini-diff span { padding: 0 34px; }
.mini-diff span:first-child { color: #aa5153; background: #fff0ef; }
.mini-diff span:last-child { color: #3b835d; background: #ecf8f1; }

.product-tour {
  overflow: hidden;
  background: #fff;
}

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 36px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7f7f8;
}

.tour-tab {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  color: #74777e;
  background: transparent;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: color .2s, background .2s, box-shadow .2s;
}

.tour-tab span {
  color: #adafb4;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.tour-tab.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 5px 20px rgba(20, 20, 22, .08);
}

.tour-tab.active span { color: var(--coral); }

.tour-stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.tour-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -25%;
  bottom: -45%;
  left: -25%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 68, 73, .14), transparent 66%);
  filter: blur(25px);
}

.tour-window {
  overflow: hidden;
  border: 1px solid #d9dade;
  border-radius: 22px;
  background: #f7f7f8;
  box-shadow: var(--shadow);
}

.tour-window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid #dbdcdf;
  color: #75777d;
  background: #eeeff1;
  font-size: 11px;
}

.tour-window-bar > span {
  display: flex;
  gap: 6px;
}

.tour-window-bar b { color: #52545a; font-weight: 700; }
.tour-window-bar small { justify-self: end; color: #a1a3a8; }

.tour-window img {
  width: 100%;
  aspect-ratio: 1.51 / 1;
  object-fit: cover;
  object-position: top left;
  transition: opacity .22s ease, transform .35s ease;
}

.tour-window img.switching {
  opacity: .25;
  transform: scale(.993);
}

.tour-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  max-width: 900px;
  margin: 32px auto 0;
  text-align: left;
}

.tour-caption span {
  min-width: 155px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tour-caption p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 45%, rgba(240, 68, 73, .16), transparent 28%),
    linear-gradient(135deg, #09090b, #121012);
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
  mask-image: linear-gradient(90deg, transparent, #000);
}

.enterprise-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.kicker-dark { color: var(--coral-bright); }

.enterprise-copy > p {
  color: rgba(255, 255, 255, .55);
}

.enterprise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.enterprise-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  color: rgba(255, 255, 255, .67);
  background: rgba(255, 255, 255, .04);
  font-size: 11px;
}

.enterprise-tags svg { width: 15px; height: 15px; color: var(--coral-bright); }

.deploy-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 25px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px);
}

.deploy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.deploy-head i {
  padding: 5px 8px;
  border-radius: 6px;
  color: #7bdba7;
  background: rgba(83, 184, 128, .1);
  font-style: normal;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.deploy-body {
  display: grid;
  grid-template-columns: 130px 1fr 210px;
  align-items: center;
  gap: 18px;
  min-height: 370px;
  padding: 35px;
}

.deploy-source {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .045);
}

.deploy-source img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 13px;
}

.deploy-source b { font-size: 11px; }
.deploy-source small { color: rgba(255, 255, 255, .36); font-size: 9px; }

.deploy-route {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
}

.deploy-route span {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 103, 108, .18), var(--coral));
}

.deploy-route span:last-child {
  background: linear-gradient(90deg, var(--coral), rgba(255, 103, 108, .18));
}

.deploy-route i {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 103, 108, .3);
  border-radius: 50%;
  color: var(--coral-bright);
  background: #221417;
  box-shadow: 0 0 40px rgba(240, 68, 73, .2);
}

.deploy-route svg { width: 17px; height: 17px; }

.deploy-targets {
  display: grid;
  gap: 10px;
}

.deploy-targets > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
}

.target-icon {
  display: flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #542426, var(--coral));
  font-size: 14px;
  font-weight: 900;
}

.target-icon svg { width: 18px; height: 18px; }

.deploy-targets p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.deploy-targets b { font-size: 11px; }
.deploy-targets small { color: rgba(255, 255, 255, .36); font-size: 9px; }

.choice {
  background: #f6f6f7;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.plan-logo {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 13px 30px rgba(240, 68, 73, .22);
  font-size: 20px;
  font-weight: 900;
}

.plan-logo svg { width: 24px; height: 24px; }

.plan-top > span:last-child {
  display: flex;
  flex-direction: column;
}

.plan-top small {
  color: #989a9f;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-size: 27px;
}

.plan-card > p {
  margin-bottom: 26px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #484a51;
  font-size: 13px;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.plan-card li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  stroke-width: 2.4;
}

.usage-card,
.own-model-code {
  position: absolute;
  right: 42px;
  bottom: 38px;
  left: 42px;
  padding: 18px;
  border: 1px solid #e6e6e8;
  border-radius: 15px;
  background: #fafafb;
}

.usage-card div {
  display: flex;
  justify-content: space-between;
  color: #777980;
  font-size: 10px;
}

.usage-card div b { color: #34363b; }

.usage-card i {
  display: block;
  height: 6px;
  margin: 8px 0 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e9ec;
}

.usage-card i span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.usage-card i:last-child span { width: 88%; }

.plan-own {
  color: #fff;
  border-color: #1d1d21;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 68, 73, .19), transparent 30%),
    #111114;
}

.plan-own .plan-logo {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.plan-own > p { color: rgba(255, 255, 255, .52); }
.plan-own ul { color: rgba(255, 255, 255, .7); }
.plan-own .plan-top small { color: rgba(255, 255, 255, .38); }

.free-badge {
  position: absolute;
  top: 25px;
  right: -38px;
  width: 150px;
  padding: 7px 0;
  text-align: center;
  color: #fff;
  background: var(--coral);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  transform: rotate(40deg);
}

.own-model-code {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 11px;
  color: rgba(255, 255, 255, .48);
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .035);
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.own-model-code b {
  color: #7bdba7;
  font-weight: 500;
}

.own-model-code i {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, .07);
}

.platforms {
  background: #fff;
}

.platforms-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.platform-list {
  display: grid;
  gap: 11px;
}

.platform-card {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 17px;
  padding: 15px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .22s, box-shadow .22s;
}

.platform-card:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 40px rgba(20, 20, 22, .07);
}

.os-mark {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: #18181b;
  font-size: 22px;
  font-weight: 800;
}

.os-mark.linux { color: #222; background: #f6ce50; }
.os-mark.windows { background: #3977d7; }

.os-mark img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.os-mark.linux img {
  width: 29px;
  height: 29px;
}

.platform-card p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.platform-card b { font-size: 15px; }
.platform-card small { color: #8d8f95; font-size: 11px; }
.platform-card > svg { width: 18px; height: 18px; margin-left: auto; color: #b1b2b6; }

.faq {
  border-top: 1px solid #ececef;
  background: #fafafb;
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid #dedee1;
}

.faq-item {
  border-bottom: 1px solid #dedee1;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 20px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  text-align: left;
  background: transparent;
  font-size: 18px;
  font-weight: 720;
  cursor: pointer;
}

.faq-item button i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #d5d5d8;
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1px;
  background: #5f6167;
  transition: transform .25s ease;
}

.faq-item button i::after { transform: rotate(90deg); }
.faq-item.open button i::after { transform: rotate(0); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 27px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #fff;
  text-align: center;
  background: #09090b;
}

.cta-grid {
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.cta-orb {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: rgba(240, 68, 73, .19);
  filter: blur(60px);
  transform: translateX(-50%);
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5.5vw, 74px);
}

.final-cta p {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .56);
  font-size: 18px;
}

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

.final-cta-inner > small {
  margin-top: 25px;
  color: rgba(255, 255, 255, .32);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer {
  color: rgba(255, 255, 255, .62);
  background: #09090b;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 105px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-brand {
  color: #fff;
  font-size: 15px;
}

.footer-brand .brand-icon {
  width: 31px;
  height: 31px;
  border-radius: 9px;
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, .34);
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  gap: 23px;
  font-size: 12px;
}

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

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header { grid-template-columns: 1fr auto auto; }
  .nav { display: none; }
  .menu-button { display: block; }
  .nav.open {
    position: absolute;
    top: 70px;
    right: 0;
    display: flex;
    width: min(320px, calc(100vw - 48px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    color: rgba(255, 255, 255, .8);
    background: rgba(20, 18, 20, .97);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
    backdrop-filter: blur(18px);
  }
  .nav.open a { padding: 13px 14px; border-radius: 9px; }
  .nav.open a:hover { background: rgba(255, 255, 255, .06); }
  .hero-layout { grid-template-columns: minmax(390px, .8fr) minmax(560px, 1.2fr); gap: 30px; }
  .hero-product { width: 700px; }
  .hero-shot-wrap { height: 445px; }
  .hero-facts { gap: 16px; }
  .agent-flow { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .flow-link { display: none; }
  .flow-step { padding: 22px; }
  .enterprise-grid { gap: 45px; }
  .deploy-body { padding: 25px; grid-template-columns: 115px 1fr 185px; }
}

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 740px; }
  .hero h1 { max-width: 720px; }
  .hero-product { width: 100%; margin-top: 35px; transform: none; }
  .hero-shot-wrap { height: auto; aspect-ratio: 1.54 / 1; }
  .float-card-top { left: 18px; }
  .float-card-bottom { right: 18px; bottom: 18px; }
  .hero-bottom-line { margin-top: 35px; }
  .agent-flow { grid-template-columns: 1fr 1fr; }
  .flow-step { min-height: 220px; }
  .agent-showcase { grid-template-columns: 1fr; gap: 10px; padding: 50px 0 0 50px; }
  .showcase-copy { max-width: 620px; padding: 0 50px 40px 0; }
  .bento-wide, .bento-terminal, .bento-knowledge { grid-column: span 6; }
  .bento-editor, .bento-intelligence { grid-template-columns: 1fr; }
  .bento-editor .card-copy, .bento-intelligence .card-copy { align-self: start; }
  .code-card-visual { height: 230px; margin: 0 -35px -35px 0; }
  .graph-visual { position: absolute; right: 20px; bottom: 20px; width: 48%; opacity: .7; }
  .enterprise-grid { grid-template-columns: 1fr; }
  .enterprise-copy { max-width: 750px; }
  .deploy-visual { max-width: 780px; }
  .platforms-inner { gap: 55px; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-grid .section-heading { margin-bottom: 15px; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .section { padding: 75px 0; }
  .header { grid-template-columns: 1fr auto; min-height: 72px; }
  .header-cta { display: none; }
  .brand { font-size: 15px; }
  .brand-icon { width: 34px; height: 34px; border-radius: 10px; }
  .hero-layout { min-height: 0; padding: 55px 0 35px; }
  .hero h1 { font-size: clamp(46px, 13vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-product { border-radius: 16px; }
  .window-chrome { border-radius: 16px 16px 0 0; }
  .hero-shot-wrap { border-radius: 0 0 16px 16px; }
  .float-card { display: none; }
  .hero-bottom-line { height: auto; flex-wrap: wrap; gap: 9px 16px; padding: 20px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .enterprise-copy h2, .platforms h2, .final-cta h2 { font-size: clamp(37px, 10vw, 50px); }
  .section-heading p, .enterprise-copy > p, .platforms-inner > div:first-child > p { font-size: 16px; }
  .agent-flow { grid-template-columns: 1fr; }
  .flow-step { min-height: auto; }
  .flow-step.active { transform: translateX(5px); }
  .flow-icon { margin-bottom: 24px; }
  .agent-flow { margin-bottom: 65px; }
  .agent-showcase { padding: 37px 0 0 28px; border-radius: 22px; }
  .showcase-copy { padding: 0 28px 30px 0; }
  .showcase-copy h3 { font-size: 30px; }
  .showcase-image img { width: 750px; }
  .image-note { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-wide, .bento-terminal, .bento-knowledge { grid-column: 1; min-height: 390px; }
  .bento-editor, .bento-intelligence { display: block; }
  .bento-editor .card-copy, .bento-intelligence .card-copy { padding-top: 75px; }
  .bento-editor .card-icon, .bento-intelligence .card-icon { top: 30px; left: 30px; }
  .code-card-visual { position: absolute; right: 0; bottom: 0; left: 28px; height: 170px; margin: 0; }
  .code-card-visual pre { padding-top: 20px; font-size: 10px; }
  .bento-editor { min-height: 540px; }
  .graph-visual { width: 55%; opacity: .48; }
  .tour-tabs { grid-template-columns: 1fr 1fr; }
  .tour-tab { justify-content: flex-start; }
  .tour-caption { align-items: flex-start; flex-direction: column; gap: 10px; }
  .dark-section { padding: 85px 0; }
  .deploy-body { grid-template-columns: 1fr; }
  .deploy-source { min-height: 105px; }
  .deploy-route {
    display: flex;
    justify-content: center;
    margin: 0;
    transform: none;
  }
  .deploy-route span { display: none; }
  .deploy-targets { grid-template-columns: 1fr 1fr 1fr; }
  .deploy-targets > div { align-items: flex-start; flex-direction: column; }
  .choice-grid { grid-template-columns: 1fr; }
  .platforms-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 15px; padding: 35px 0; }
  .footer-main nav { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-facts { grid-template-columns: 1fr; gap: 18px; }
  .hero-product { margin-top: 20px; }
  .hero-shot-wrap { aspect-ratio: 1.2 / 1; }
  .hero-shot { object-position: 26% top; }
  .hero-bottom-line i { display: none; }
  .hero-bottom-line span { width: calc(50% - 8px); text-align: center; }
  .bento-card { padding: 28px; }
  .bento-card h3 { font-size: 24px; }
  .bento-editor .card-icon, .bento-intelligence .card-icon { left: 28px; }
  .terminal-visual { padding-inline: 18px; }
  .context-meter, .usage-card, .own-model-code { right: 28px; left: 28px; }
  .mini-diff span { padding-inline: 24px; font-size: 9px; }
  .tour-tabs { display: flex; overflow-x: auto; border-radius: 14px; scrollbar-width: none; }
  .tour-tabs::-webkit-scrollbar { display: none; }
  .tour-tab { flex: 0 0 auto; min-height: 46px; }
  .tour-window-bar b { display: none; }
  .tour-window { border-radius: 15px; }
  .tour-window img { aspect-ratio: 1.18 / 1; object-position: 32% top; }
  .deploy-body { padding: 20px; }
  .deploy-targets { grid-template-columns: 1fr; }
  .deploy-targets > div { align-items: center; flex-direction: row; }
  .plan-card { min-height: 560px; padding: 30px; }
  .usage-card, .own-model-code { bottom: 30px; }
  .faq-item button { font-size: 16px; }
  .final-cta { padding: 90px 0; }
  .footer-main nav { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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