:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --ink: #0b0d12;
  --muted: rgba(11, 13, 18, 0.6);
  --muted-2: rgba(11, 13, 18, 0.45);
  --border: rgba(11, 13, 18, 0.12);
  --accent: #3b82f6;

  --radius: 22px;
  --radius-sm: 16px;
  --max: 1120px;

  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 28px 80px rgba(0, 0, 0, 0.16);

  --wind-x1: 0px;
  --wind-y1: 0px;
  --wind-x2: 0px;
  --wind-y2: 0px;
  --wind-o: 0.22;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.4;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 680ms ease, transform 680ms ease;
  will-change: opacity, transform;
}

.js .reveal.is-inview {
  opacity: 1;
  transform: none;
}

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

a:hover {
  color: rgba(11, 13, 18, 0.92);
}

code {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.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: absolute;
  left: 16px;
  top: 14px;
  transform: translateY(-160%);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(59, 130, 246, 0.55);
  outline-offset: 2px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.is-elevated {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  height: 72px;
}

.brand {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 16px;
  justify-self: start;
}

.nav {
  justify-self: center;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(11, 13, 18, 0.7);
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 120ms ease, color 120ms ease;
}

.nav-links a:hover {
  background: rgba(11, 13, 18, 0.05);
  color: rgba(11, 13, 18, 0.92);
}

.nav-links a.is-active {
  background: rgba(11, 13, 18, 0.06);
  color: rgba(11, 13, 18, 0.92);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11, 13, 18, 0.18);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #111827;
  border-color: rgba(11, 13, 18, 0.24);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle-lines {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(11, 13, 18, 0.75);
  border-radius: 2px;
}

.nav-toggle-lines::before {
  top: 1px;
}

.nav-toggle-lines::after {
  bottom: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: 4px;
}

.btn.btn-invert {
  background: rgba(255, 255, 255, 0.95);
  color: rgba(11, 13, 18, 0.95);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.btn.btn-invert:hover {
  background: #fff;
}

.btn.btn-outline-invert {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.btn-outline-invert:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: rgba(11, 13, 18, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn.btn-dark:hover {
  background: #111827;
  color: #fff;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.hero {
  padding: 28px 0 48px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px 22px 28px;
  min-height: 560px;
  color: #fff;
  isolation: isolate;
  --mx: 60%;
  --my: 10%;
  background: radial-gradient(900px 520px at 60% 0%, rgba(99, 102, 241, 0.85), transparent 62%),
    radial-gradient(900px 520px at 20% 10%, rgba(34, 211, 238, 0.55), transparent 62%),
    radial-gradient(950px 620px at 40% 120%, rgba(249, 115, 22, 0.55), transparent 62%),
    radial-gradient(950px 620px at 85% 110%, rgba(168, 85, 247, 0.55), transparent 62%),
    radial-gradient(520px 320px at var(--mx) var(--my), rgba(255, 255, 255, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.06), rgba(11, 13, 18, 0.42));
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: calc(var(--wind-o) * 0.9);
  mix-blend-mode: normal;
  background-image: url("assets/wind-lines.svg"), url("assets/wind-lines-soft.svg");
  background-repeat: repeat, repeat;
  background-size: 1100px 320px, 840px 260px;
  background-position: var(--wind-x1) var(--wind-y1), var(--wind-x2) var(--wind-y2);
  filter: blur(0.45px) drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
  transition: opacity 260ms ease-out;
  animation: wind-drift 18s ease-in-out infinite;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.86) 40%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.86) 40%,
    rgba(0, 0, 0, 1) 100%
  );
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.record-stack {
  width: min(680px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-mini {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(11, 13, 18, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  padding: 18px 18px;
  min-height: 96px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mini-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.mini-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(59, 130, 246, 0.95);
  flex: 0 0 auto;
  margin-top: 2px;
}

.hero-main {
  position: relative;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: end;
}

.hero-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 14px 40px rgba(11, 13, 18, 0.24);
}

.hero-title {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-shadow: 0 18px 55px rgba(11, 13, 18, 0.28);
}

.hero-title span {
  opacity: 0.68;
}

.hero-copy {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  font-size: 15px;
  max-width: 44ch;
}

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

.trusted-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 26px;
}

.trusted-row-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 13, 18, 0.42);
  flex: 0 0 auto;
}

.trusted-marquee {
  width: min(660px, 100%);
  overflow: hidden;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12%,
    rgba(0, 0, 0, 1) 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

.trusted-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: trusted-marquee 14s linear infinite;
}

.trusted-track:hover {
  animation-play-state: paused;
}

.trusted-row-logos {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
  padding: 0 14px;
  flex: 0 0 auto;
}

.trusted-row-logos.is-duplicate {
  pointer-events: none;
}

.trusted-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border-radius: 12px;
  transition: transform 120ms ease;
}

.trusted-logo:hover {
  transform: translateY(-1px);
}

.trusted-logo img {
  height: 30px;
  width: auto;
  display: block;
  filter: grayscale(100%) brightness(0);
  opacity: 0.35;
  transition: opacity 120ms ease;
}

.trusted-logo:hover img {
  opacity: 0.62;
}

@keyframes trusted-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section {
  padding: 110px 0;
}

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

.section-center .center-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 12px;
}

.lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.center-head h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
}

.app-panel {
  border-radius: 26px;
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.92);
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 13, 18, 0.08) 1px, transparent 0);
  background-size: 26px 26px;
  box-shadow: var(--shadow-sm);
}

.app-panel-inner {
  padding: 64px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.record-card {
  width: min(560px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(11, 13, 18, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: 18px;
}

.record-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: rgba(59, 130, 246, 0.09);
  color: rgba(37, 99, 235, 0.92);
}

.meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(11, 13, 18, 0.45);
}

.record-rows {
  display: grid;
  gap: 10px;
}

.record-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11, 13, 18, 0.08);
  background: rgba(11, 13, 18, 0.03);
}

.record-row span {
  color: rgba(11, 13, 18, 0.62);
}

.record-row strong {
  font-weight: 600;
  color: rgba(11, 13, 18, 0.92);
  text-align: right;
}

.record-row.is-grid {
  align-items: flex-start;
}

.record-row-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.record-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(11, 13, 18, 0.45);
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(380px, 100%);
}

.record-grid.is-single {
  grid-template-columns: 1fr;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.record-grid.is-single .record-chip {
  min-width: 240px;
}

.record-chip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(11, 13, 18, 0.08);
  background: rgba(11, 13, 18, 0.02);
}

.record-chip span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(11, 13, 18, 0.62);
  white-space: nowrap;
}

.record-chip strong {
  font-weight: 600;
  color: rgba(11, 13, 18, 0.92);
  white-space: nowrap;
}

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

.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: rgba(11, 13, 18, 0.58);
  line-height: 1.6;
  font-size: 14px;
}

.section-dark {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: calc(var(--wind-o) * 0.75);
  mix-blend-mode: screen;
  background-image: url("assets/wind-lines.svg"), url("assets/wind-lines-soft.svg");
  background-repeat: repeat, repeat;
  background-size: 1100px 320px, 840px 260px;
  background-position: var(--wind-x1) var(--wind-y1), var(--wind-x2) var(--wind-y2);
  filter: blur(0.45px) drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
  transition: opacity 260ms ease-out;
  animation: wind-drift 18s ease-in-out infinite;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-coverage {
  padding: clamp(110px, 10vh, 150px) 0;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  background: radial-gradient(900px 520px at 18% 0%, rgba(59, 130, 246, 0.28), transparent 62%),
    radial-gradient(900px 520px at 82% 16%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(950px 620px at 40% 120%, rgba(168, 85, 247, 0.14), transparent 62%),
    var(--ink);
}

.section-coverage > .container {
  width: 100%;
}

.eyebrow-dark {
  color: rgba(255, 255, 255, 0.56);
}

.dark-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.dark-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
}

.dark-muted {
  color: rgba(255, 255, 255, 0.48);
}

.dark-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  max-width: 48ch;
}

.dark-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.dark-stat {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px;
  min-height: 150px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 160ms ease;
}

.dark-stat:hover {
  background: rgba(255, 255, 255, 0.045);
}

.dark-stat:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: -2px;
}

.dark-stat.is-active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(34, 211, 238, 0.08));
}

.dark-stat:nth-child(2n) {
  border-right: none;
}

.dark-stat:nth-last-child(-n + 2) {
  border-bottom: none;
}

.dark-stat-label {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.dark-stat-num {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.dark-head {
  margin-bottom: 38px;
}

.usecase-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.usecase-tabs {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.usecase-tab {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: color 120ms ease, transform 120ms ease;
}

.usecase-tab:hover {
  color: rgba(255, 255, 255, 0.74);
}

.usecase-tab.is-active {
  color: rgba(255, 255, 255, 0.96);
}

.usecase-panels {
  min-height: 92px;
  margin-bottom: 22px;
}

.usecase-paneltext {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  font-size: 15px;
  max-width: 52ch;
}

.usecase-paneltext.is-active {
  display: block;
}

.usecase-right {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.usecase-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.panel-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.record-card.record-card-dark {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.usecase-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 360px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
}

.usecase-rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.rail-step {
  width: 36px;
}

.rail-step.is-active {
  color: rgba(255, 255, 255, 0.95);
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: baseline;
  margin-bottom: 38px;
}

.split-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

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

.method-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.method-card h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.method-card p {
  margin: 0;
  color: rgba(11, 13, 18, 0.62);
  line-height: 1.65;
}

.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.integration-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.integration-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.icon-tile {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.icon-tile-label {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: rgba(11, 13, 18, 0.65);
}

.section-gradient {
  position: relative;
  color: #fff;
  isolation: isolate;
  background: radial-gradient(900px 520px at 60% 0%, rgba(99, 102, 241, 0.85), transparent 62%),
    radial-gradient(900px 520px at 20% 10%, rgba(34, 211, 238, 0.55), transparent 62%),
    radial-gradient(950px 620px at 40% 120%, rgba(249, 115, 22, 0.55), transparent 62%),
    radial-gradient(950px 620px at 85% 110%, rgba(168, 85, 247, 0.55), transparent 62%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.06), rgba(11, 13, 18, 0.78));
  overflow: hidden;
}

.section-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: calc(var(--wind-o) * 0.8);
  mix-blend-mode: normal;
  background-image: url("assets/wind-lines.svg"), url("assets/wind-lines-soft.svg");
  background-repeat: repeat, repeat;
  background-size: 1100px 320px, 840px 260px;
  background-position: var(--wind-x1) var(--wind-y1), var(--wind-x2) var(--wind-y2);
  filter: blur(0.45px) drop-shadow(0 0 18px rgba(255, 255, 255, 0.14));
  transition: opacity 260ms ease-out;
  animation: wind-drift 18s ease-in-out infinite;
}

.section-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.section-gradient > .container {
  position: relative;
  z-index: 2;
}

.examples-panel {
  position: relative;
}

.copy-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid rgba(11, 13, 18, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(11, 13, 18, 0.65);
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.copy-btn:hover {
  background: #fff;
  border-color: rgba(11, 13, 18, 0.22);
  color: rgba(11, 13, 18, 0.86);
  transform: translateY(-1px);
}

.copy-btn:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: 4px;
}

.record-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(11, 13, 18, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  margin: 0 0 14px;
}

.record-pill {
  appearance: none;
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(11, 13, 18, 0.56);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}

.record-pill:hover {
  background: rgba(11, 13, 18, 0.06);
  color: rgba(11, 13, 18, 0.82);
  transform: translateY(-1px);
}

.record-pill.is-active {
  background: rgba(59, 130, 246, 0.12);
  color: rgba(37, 99, 235, 0.92);
}

@keyframes wind-drift {
  0% {
    transform: translate3d(-22px, 12px, 0);
  }
  50% {
    transform: translate3d(22px, -12px, 0);
  }
  100% {
    transform: translate3d(-22px, 12px, 0);
  }
}

.gradient-head {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px;
}

.gradient-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 3.8vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
}

.gradient-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.examples-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: stretch;
}

.examples-main {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  padding: 26px;
  min-height: 420px;
}

.examples-kicker {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 13, 18, 0.45);
}

.examples-title {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(11, 13, 18, 0.92);
}

.examples-table-wrap {
  border-radius: 18px;
  border: 1px solid rgba(11, 13, 18, 0.12);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.examples-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.examples-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(11, 13, 18, 0.55);
  background: rgba(11, 13, 18, 0.03);
  padding: 12px 12px;
  border-bottom: 1px solid rgba(11, 13, 18, 0.1);
  white-space: nowrap;
}

.examples-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(11, 13, 18, 0.08);
  color: rgba(11, 13, 18, 0.78);
  vertical-align: top;
  white-space: nowrap;
}

.examples-table tr:last-child td {
  border-bottom: none;
}

.examples-code {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(11, 13, 18, 0.12);
  background: rgba(11, 13, 18, 0.03);
  padding: 18px;
  overflow: auto;
  line-height: 1.6;
  font-size: 13px;
}

.examples-code code {
  font-family: var(--font-mono);
  color: rgba(11, 13, 18, 0.86);
}

.examples-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 13, 18, 0.72);
  line-height: 1.7;
  display: grid;
  gap: 10px;
}

.examples-tabs {
  display: flex;
  gap: 10px;
  height: 420px;
}

.examples-tab {
  width: 58px;
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  padding: 10px 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11, 13, 18, 0.52);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.examples-tab:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  color: rgba(11, 13, 18, 0.78);
}

.examples-tab.is-active {
  background: #fff;
  border-color: rgba(59, 130, 246, 0.75);
  color: rgba(11, 13, 18, 0.88);
}

.examples-tab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: auto 1fr;
  column-gap: 44px;
  row-gap: 0;
  align-items: start;
}

.faq-head {
  grid-column: 1;
  grid-row: 1;
}

.faq-grid h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.faq-list {
  grid-column: 1;
  grid-row: 2;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  padding-right: 28px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(11, 13, 18, 0.55);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-body {
  padding-top: 10px;
  color: rgba(11, 13, 18, 0.62);
  line-height: 1.65;
}

.faq-aside {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.faq-aside h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.faq-aside p {
  margin: 0;
}

.faq-aside .btn {
  align-self: flex-start;
}

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

.tiny {
  font-size: 12px;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.request-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.form {
  border-radius: 22px;
  border: 1px solid rgba(11, 13, 18, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: rgba(11, 13, 18, 0.72);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(11, 13, 18, 0.14);
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 12px;
  color: rgba(11, 13, 18, 0.9);
  font-family: var(--font-sans);
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 108px;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(11, 13, 18, 0.7) 50%),
    linear-gradient(135deg, rgba(11, 13, 18, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.form-note {
  margin: 10px 0 0;
  color: rgba(11, 13, 18, 0.62);
  font-size: 13px;
}

.form-note.error {
  color: rgba(239, 68, 68, 0.9);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-meta {
  margin: 0;
  color: rgba(11, 13, 18, 0.55);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-mini {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .hero-mini::-webkit-scrollbar {
    display: none;
  }

  .mini-card {
    min-width: min(340px, calc(100vw - 80px));
  }

  .hero-panel {
    min-height: 600px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .dark-split {
    grid-template-columns: 1fr;
  }

  .record-grid {
    grid-template-columns: 1fr;
  }

  .usecase-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .usecase-right {
    grid-template-columns: 1fr;
  }

  .usecase-rail {
    display: none;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .integration-grid {
    grid-template-columns: 1fr;
  }

  .examples-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .examples-main {
    min-height: auto;
  }

  .examples-tabs {
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .examples-tab {
    writing-mode: horizontal-tb;
    transform: none;
    width: auto;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    letter-spacing: 0.08em;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-aside {
    grid-column: auto;
    grid-row: auto;
    align-self: start;
    justify-content: flex-start;
    margin-top: 0;
  }

  .request-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 56px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: min(320px, calc(100vw - 48px));
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
    color: rgba(11, 13, 18, 0.88);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trusted-row {
    justify-content: flex-start;
  }

  .trusted-marquee {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .trusted-logo,
  .header-cta,
  .usecase-tab {
    transition: none;
  }

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

  .hero-panel::before,
  .section-dark::before,
  .section-gradient::before {
    animation: none;
  }

  .trusted-track {
    animation: none;
    width: 100%;
  }

  .trusted-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }

  .trusted-marquee::-webkit-scrollbar {
    display: none;
  }

  .trusted-row-logos.is-duplicate {
    display: none;
  }
}
