:root {
  color-scheme: light dark;
  --black: #050505;
  --ink: #111318;
  --muted: #6a7280;
  --soft: #f5f5f7;
  --line: #dedee3;
  --white: #ffffff;
  --blue: #0066cc;
  --green: #24845a;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--soft);
  color: var(--ink);
}

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.82);
  backdrop-filter: blur(20px);
  font-size: 13px;
}

.wordmark {
  font-weight: 700;
}

.global-nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #353941;
}

.nav-button {
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--blue);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 52px);
  padding: 82px 24px 52px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.label {
  margin: 0 0 16px;
  color: #a8adb7;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.1em 0.24em;
  margin: 0;
  color: #eef3fa;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(64px, 11vw, 150px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 8px 8px 0 rgba(116, 128, 148, 0.42), 13px 13px 0 rgba(51, 65, 85, 0.5), 0 24px 26px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

.hero-title span {
  --float-y: -7px;
  display: inline-block;
  animation: titleFloat 4.8s cubic-bezier(0.45, 0, 0.25, 1) infinite;
  will-change: transform;
}

.hero-title span:nth-child(2) {
  --float-y: -5px;
  animation-delay: 160ms;
}

.hero-title span:nth-child(3) {
  --float-y: -8px;
  animation-delay: 320ms;
}

.hero-subtitle {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: #d7dbe2;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.command-line {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.command-line::after {
  content: "Copied to clipboard";
  position: absolute;
  right: 8px;
  bottom: calc(100% + 10px);
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

.command-line.is-copied {
  border-color: rgba(86, 196, 135, 0.9);
  box-shadow: 0 0 0 4px rgba(86, 196, 135, 0.18), 0 14px 40px rgba(86, 196, 135, 0.14);
  transform: translateY(-1px);
}

.command-line.is-copied::after {
  opacity: 1;
  transform: translateY(0);
}

.command-line code {
  padding: 14px 20px;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 17px;
}

.command-line button {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 18px;
  background: #ffffff;
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.command-line.is-copied button {
  background: #dff8e9;
  color: #117341;
}

.link-button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  background: #ffffff;
  color: var(--black);
  font-weight: 700;
}

.hero-media {
  width: min(980px, 92vw);
  margin: 72px auto 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.motion-card {
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  will-change: transform;
}

.motion-card:hover {
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.08);
}

.flow-showcase {
  padding: 112px 24px 0;
  background: var(--soft);
}

.flow-copy {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.flow-copy .label {
  color: #667386;
}

.flow-copy h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 94px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.flow-copy p {
  width: min(720px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
}

.flow-stage {
  width: min(1180px, calc(100vw - 48px));
  margin: 58px auto 0;
}

.flow-video {
  overflow: hidden;
  border: 1px solid #263142;
  border-radius: 22px;
  background: #0b1018;
  box-shadow: 0 36px 90px rgba(17, 19, 24, 0.22);
}

.flow-video.motion-card:hover {
  box-shadow: 0 42px 110px rgba(17, 19, 24, 0.28);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #263142;
  background: #111720;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3a4657;
}

.browser-bar span:nth-child(1) {
  background: #ff6b5f;
}

.browser-bar span:nth-child(2) {
  background: #f6bd4f;
}

.browser-bar span:nth-child(3) {
  background: #57c785;
}

.browser-bar code {
  min-width: 0;
  margin-left: 10px;
  overflow: hidden;
  color: #9ba6b6;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1018;
  object-fit: contain;
  object-position: center top;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
  background: var(--line);
}

.flow-steps span {
  padding: 22px 26px;
  background: #ffffff;
  color: #293142;
  font-size: 18px;
  font-weight: 800;
}

.report-preview {
  overflow: hidden;
  width: min(1180px, calc(100vw - 48px));
  margin: 36px auto 0;
  border: 1px solid #d8dde7;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(17, 19, 24, 0.12);
}

.report-preview .browser-bar {
  border-bottom-color: #d8dde7;
  background: #f7f8fb;
}

.report-preview .browser-bar code {
  color: #515b6b;
}

.report-preview iframe {
  display: block;
  width: 100%;
  height: min(760px, 76vh);
  border: 0;
  background: #f7f8fb;
}

.intro {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 74px;
  text-align: center;
}

.intro p,
.big-statement h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  gap: 2px;
  background: var(--line);
}

.highlights article {
  min-height: 360px;
  padding: 38px;
  background: #ffffff;
}

.highlights span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, ui-monospace, monospace;
  font-weight: 800;
}

.highlights h2 {
  margin: 72px 0 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.highlights p,
.section-copy p,
.big-statement p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.panel-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0;
}

.panel-section.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.section-copy h2,
.commands h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
  letter-spacing: 0;
}

.terminal {
  overflow: hidden;
  border-radius: 18px;
  background: #0e1117;
  color: #f2f5f8;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.terminal.motion-card:hover {
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.2);
}

.terminal-title {
  border-bottom: 1px solid #2b3340;
  padding: 16px 22px;
  color: #9ba6b6;
  font-family: "SFMono-Regular", Consolas, ui-monospace, monospace;
  font-weight: 800;
}

.terminal pre {
  margin: 0;
  padding: 26px 28px;
  overflow-x: auto;
  font-size: 16px;
  line-height: 1.75;
}

.big-statement {
  padding: 126px 24px;
  text-align: center;
  background: #ffffff;
}

.big-statement h2,
.big-statement p {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.big-statement p {
  margin-top: 24px;
}

.commands {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 120px;
  text-align: center;
}

.command-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.command-list code {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  overflow-wrap: anywhere;
  background: #ffffff;
  color: #202735;
  font-size: 17px;
  text-align: left;
}

.command-list code:hover {
  border-color: rgba(0, 102, 204, 0.24);
}

.site-footer {
  padding: 58px 28px 34px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-main,
.footer-grid,
.footer-bottom {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
}

.footer-brand {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.footer-main p {
  max-width: 540px;
  margin: 0;
  text-align: right;
  line-height: 1.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-grid div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-grid h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
}

.footer-grid a,
.footer-grid span {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  44% {
    transform: translate3d(0, var(--float-y), 0);
  }

  68% {
    transform: translate3d(0, 2px, 0);
  }
}

@media (max-width: 820px) {
  .global-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
  }

  .global-nav nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-title {
    gap: 0.06em 0.18em;
    font-size: clamp(42px, 13vw, 76px);
    text-shadow: 5px 5px 0 rgba(116, 128, 148, 0.42), 9px 9px 0 rgba(51, 65, 85, 0.5), 0 18px 22px rgba(0, 0, 0, 0.42);
  }

  .hero-actions,
  .command-line,
  .link-button {
    width: 100%;
  }

  .command-line code {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .link-button {
    justify-content: center;
  }

  .hero-media {
    margin-top: 52px;
    width: 100%;
    transform: none;
  }

  .flow-showcase {
    padding: 76px 18px 0;
  }

  .flow-copy {
    text-align: left;
  }

  .flow-copy h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .flow-copy p {
    margin-top: 18px;
    font-size: 19px;
  }

  .flow-stage,
  .report-preview {
    width: 100%;
  }

  .flow-stage {
    margin-top: 36px;
  }

  .flow-video {
    border-radius: 16px;
  }

  .browser-bar code {
    font-size: 11px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps span {
    padding: 18px 20px;
  }

  .report-preview {
    margin-top: 26px;
    border-radius: 16px;
  }

  .report-preview iframe {
    height: 560px;
  }

  .intro {
    padding: 72px 0 54px;
    text-align: left;
  }

  .highlights,
  .panel-section,
  .panel-section.reverse {
    grid-template-columns: 1fr;
  }

  .highlights article {
    min-height: 280px;
    padding: 30px 26px;
  }

  .highlights h2 {
    margin-top: 52px;
  }

  .panel-section {
    padding: 74px 0;
  }

  .terminal pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .motion-card {
    transform: none !important;
  }

  .big-statement {
    padding: 82px 24px;
    text-align: left;
  }

  .commands {
    text-align: left;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    gap: 12px;
  }

  .footer-main p {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-card,
  .command-line,
  .command-line::after,
  .command-line button {
    transition: none;
  }

  .motion-card {
    transform: none !important;
  }

  .hero-title span {
    animation: none;
    transform: none;
  }
}
