@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url("/fonts/manrope-800.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #030303;
  --bg-deep: #000;
  --panel: #171717;
  --panel-soft: #202020;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f8f7f2;
  --muted: #8f8f8b;
  --soft: #c6c4bc;
  --light: #f1eee6;
  --light-text: #050505;
  --green: #71e69b;
  --orange: #ff8b2c;
  --ambient-blue: 88, 118, 138;
  --ambient-warm: 156, 92, 48;
  --ambient-violet: 96, 70, 124;
  --mx: 0;
  --my: 0;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --font: "Manrope", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

::selection {
  color: #050505;
  background: #f2f2ed;
}

::-moz-selection {
  color: #050505;
  background: #f2f2ed;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(255, 255, 255, 0.055), transparent 38%),
    radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.026), transparent 52%),
    linear-gradient(180deg, #000 0%, #010101 48%, #000 100%);
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-shell::before {
  background:
    radial-gradient(circle at 47% 23%, rgba(255, 255, 255, 0.06), transparent 17%),
    radial-gradient(ellipse at 24% 16%, rgba(255, 255, 255, 0.028), transparent 34%),
    radial-gradient(ellipse at 78% 14%, rgba(255, 255, 255, 0.024), transparent 32%);
  filter: blur(70px);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 40%, transparent 76%);
  opacity: 0.62;
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * -7px), 0);
  animation: none;
}

.site-shell::after {
  background:
    radial-gradient(ellipse at 50% 24%, transparent 0%, rgba(0, 0, 0, 0.34) 56%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.56));
  opacity: 0.96;
}

.background-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%),
    radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.62), transparent 66%);
  opacity: 0.045;
  animation: none;
}

.background-field::before,
.background-field::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  opacity: 0.55;
}

.background-field::before {
  display: none;
}

.background-field::after {
  display: none;
}

.star-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.76;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.48) 80%, transparent 96%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 500ms var(--ease),
    background 420ms var(--ease),
    border-color 420ms var(--ease),
    color 420ms var(--ease),
    box-shadow 500ms var(--ease);
}

.button-dark {
  color: var(--text);
  background: rgba(255, 255, 255, 0.018);
}

.button-light {
  color: var(--light-text);
  background: var(--light);
  border-color: var(--light);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32);
}

.top-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  padding: 8px 10px 8px 14px;
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.nav-brand,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-brand {
  gap: 9px;
  color: #f6f5ef;
  font-size: 14px;
  font-weight: 800;
}

.nav-brand img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.nav-links {
  justify-content: center;
  gap: 4px;
}

.nav-links > a,
.nav-trigger {
  border: 0;
  border-radius: 999px;
  color: #c8c8c0;
  background: transparent;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.nav-links > a:hover,
.product-menu:hover .nav-trigger,
.product-menu.is-open .nav-trigger,
.nav-trigger:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-trigger:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.28);
  outline-offset: 2px;
}

.nav-actions {
  gap: 8px;
}

.nav-actions .button {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.product-menu {
  position: relative;
  isolation: isolate;
}

.product-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
  width: calc(100% + 24px);
  height: 12px;
  transform: translateX(-50%);
}

.product-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 10px;
  width: min(700px, calc(100vw - 48px));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(24, 24, 24, 0.96);
  padding: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.98);
  transition:
    opacity 220ms var(--ease),
    transform 320ms var(--ease);
  backdrop-filter: blur(22px);
}

.product-menu:hover .product-popover,
.product-menu.is-open .product-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.product-popover-list {
  display: grid;
  align-content: start;
  gap: 4px;
}

.product-popover-list a {
  display: grid;
  gap: 5px;
  border-radius: 10px;
  padding: 11px 12px;
}

.product-popover-list a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.product-popover-list strong {
  font-size: 15px;
}

.product-popover-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
}

.product-popover-preview {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 192px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 9px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.product-demo-row,
.product-demo-bubble,
.product-demo-actions span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.product-demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  padding: 10px 12px;
  color: #f4f3ee;
  font-size: 12px;
  font-weight: 800;
}

.product-demo-row strong {
  color: #8ee2a1;
}

.product-demo-bubble {
  max-width: 82%;
  border-radius: 10px;
  padding: 11px 13px;
  color: #c9c9c2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.product-demo-bubble.is-right {
  justify-self: end;
}

.product-demo-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.product-demo-actions span {
  border-radius: 999px;
  padding: 6px 9px;
  color: #efeee9;
  font-size: 11px;
  font-weight: 800;
}

.hero-section {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(148px, 20vh, 220px) 0 64px;
  text-align: center;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  inset: 80px max(-14vw, -220px) -40px;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.075), transparent 30%),
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.026), transparent 48%);
  filter: blur(54px);
  opacity: 0.68;
  transform: translate3d(calc(var(--mx) * -7px), calc(var(--my) * -6px), 0);
  animation: none;
}

.hero-section::after {
  display: none;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-glow {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 4px 12px 4px 4px;
  color: #d7d7cf;
  background: rgba(0, 0, 0, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.hero-badge span {
  border: 1px solid rgba(255, 139, 44, 0.9);
  border-radius: 999px;
  padding: 2px 8px;
  color: var(--orange);
  font-size: 12px;
}

.hero-badge i {
  color: #7f7f7a;
  font-style: normal;
}

.hero-title {
  position: relative;
  display: block;
  width: min(940px, calc(100vw - 32px));
  max-width: 940px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
  word-spacing: 0.035em;
  text-wrap: balance;
}

.hero-proof {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(248, 247, 242, 0.58);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: #8e918f;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 46px;
  padding: 0 24px;
}

.product-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1232px, calc(100% - 44px));
  margin: 0 auto;
  padding: 12px 0 84px;
}

.preview-card {
  position: relative;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(22, 22, 22, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  transition:
    border-color 420ms var(--ease),
    background 420ms var(--ease),
    box-shadow 520ms var(--ease);
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: -45% -35%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.13) 49%, transparent 61%);
  opacity: 0;
  transform: translateX(-45%) rotate(1deg);
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.34)),
    rgba(0, 0, 0, 0);
  transition: background 420ms var(--ease);
}

.preview-card:hover {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(25, 25, 25, 0.94);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.42);
}

.preview-card:hover::before {
  animation: previewSweep 720ms var(--ease) both;
}

.preview-card:hover::after {
  background:
    linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.38)),
    rgba(0, 0, 0, 0.055);
}

.preview-surface {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 236px;
  padding: 28px;
  z-index: 0;
}

.embed-preview {
  align-content: start;
  gap: 14px;
  padding-right: 22px;
  padding-left: 22px;
  padding-bottom: 72px;
}

.discord-row,
.short-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f7f7f4;
}

.bot-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #151515;
  background: #d6d6d0;
  font-weight: 800;
}

.discord-row span {
  display: inline-flex;
  margin-left: 7px;
  border-radius: 4px;
  padding: 2px 4px;
  color: #fff;
  background: #5865f2;
  font-size: 10px;
}

.embed-box {
  position: relative;
  width: min(320px, calc(100% - 34px));
  margin: 2px 0 0 34px;
  overflow: hidden;
  border-left: 4px solid #f1eee6;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  padding: 16px 18px;
}

.embed-box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: embedProcess 5.8s var(--ease) infinite;
}

.embed-box strong {
  display: block;
  margin-bottom: 7px;
}

.embed-box p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.embed-fields,
.links-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.embed-fields {
  margin-top: 14px;
}

.embed-fields span,
.links-chips span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 7px 10px;
  color: #d7d7d1;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 700;
  animation: chipBreathe 4.8s ease-in-out infinite;
}

.embed-fields span {
  padding: 6px 9px;
  font-size: 11px;
}

.embed-fields span:nth-child(2),
.links-chips span:nth-child(2) {
  animation-delay: -1.3s;
}

.embed-fields span:nth-child(3),
.links-chips span:nth-child(3) {
  animation-delay: -2.6s;
}

.ai-bubble {
  justify-self: end;
  max-width: 250px;
  margin: 12px 104px 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: #d8d8d2;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  animation: bubbleListen 6.2s ease-in-out infinite;
}

.links-preview {
  gap: 22px;
}

.bio-preview {
  justify-items: center;
  gap: 12px;
  padding-bottom: 68px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 26%),
    #070707;
}

.bio-mini-avatar {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 7px solid rgba(0, 0, 0, 0.42);
  border-radius: 999px;
  color: #060606;
  background: #f1eee6;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.22);
}

.bio-mini-avatar span {
  position: relative;
  width: 46px;
  height: 46px;
}

.bio-mini-avatar span::before,
.bio-mini-avatar span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #090909;
  transform: translateX(-50%);
}

.bio-mini-avatar span::before {
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.bio-mini-avatar span::after {
  bottom: 5px;
  width: 38px;
  height: 19px;
  border-radius: 999px 999px 8px 8px;
}

.bio-mini-name {
  color: #f7f7f3;
  font-size: 24px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.32);
}

.bio-mini-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bio-mini-icons span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #050505;
  background: #f1eee6;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
}

.bio-mini-icons span::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #050505;
  border-radius: 999px;
}

.bio-mini-icons span:nth-child(2)::before {
  border-radius: 4px;
}

.bio-mini-icons span:nth-child(3)::before {
  width: 16px;
  height: 11px;
  border-radius: 3px;
}

.bio-mini-icons span:nth-child(4)::before {
  width: 14px;
  height: 14px;
  border-radius: 2px 8px 8px 8px;
  transform: rotate(-25deg);
}

.bio-mini-links {
  display: grid;
  width: min(300px, 100%);
  gap: 8px;
}

.bio-mini-links span {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px 12px;
  color: #deddd7;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
}

.short-row {
  justify-content: space-between;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.32);
  padding: 16px;
}

.short-row span {
  color: var(--muted);
  font-size: 13px;
}

.analytics-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  height: 98px;
  gap: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.analytics-bars i {
  display: block;
  height: 48%;
  min-height: 12px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #f1eee6, rgba(126, 126, 120, 0.7));
  opacity: 0.9;
  transform-origin: 50% 100%;
  animation: linkBars 4.4s ease-in-out infinite;
}

.analytics-bars .bar-h-35 {
  height: 35%;
}

.analytics-bars .bar-h-66 {
  height: 66%;
}

.analytics-bars .bar-h-48 {
  height: 48%;
}

.analytics-bars .bar-h-82 {
  height: 82%;
}

.analytics-bars .bar-h-56 {
  height: 56%;
}

.analytics-bars .bar-h-72 {
  height: 72%;
}

.analytics-bars i:nth-child(2) {
  animation-delay: -0.8s;
}

.analytics-bars i:nth-child(3) {
  animation-delay: -1.4s;
}

.analytics-bars i:nth-child(4) {
  animation-delay: -2s;
}

.analytics-bars i:nth-child(5) {
  animation-delay: -2.7s;
}

.analytics-bars i:nth-child(6) {
  animation-delay: -3.3s;
}

.preview-footer {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #e9e8e2;
  font-size: 14px;
  font-weight: 700;
}

.preview-footer span {
  min-width: 0;
  white-space: nowrap;
}

.preview-footer span:first-child {
  flex: 0 0 auto;
}

.preview-footer span:last-child {
  flex: 1 1 auto;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
}

.preview-footer span:last-child {
  color: var(--muted);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.builder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
  width: min(1232px, calc(100% - 44px));
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding: clamp(82px, 10vw, 132px) 0;
}

.builder-copy h2,
.section-heading h2,
.start-section h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 66px);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

.builder-copy h2 span {
  color: #777974;
}

.builder-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 600;
  line-height: 1.62;
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.builder-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.builder-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 15px;
}

.code-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 42%),
    rgba(15, 15, 15, 0.94);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.46);
}

.code-card::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.045) 42%, transparent 58%);
  transform: translateX(-100%);
  animation: codeSweep 7s var(--ease) infinite;
}

.code-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 18px;
  color: var(--muted);
  font-size: 12px;
}

.code-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f06464;
}

.code-topbar span:nth-child(2) {
  background: #e7c45b;
}

.code-topbar span:nth-child(3) {
  background: #72db8a;
}

.code-topbar strong {
  margin-left: 10px;
  color: #9a9a94;
  font-weight: 700;
}

.code-topbar i {
  margin-left: auto;
  color: #e0bd65;
  font-style: normal;
  transition: color 420ms var(--ease);
}

.code-card.is-complete .code-topbar i {
  color: #87d88d;
}

.code-card pre {
  height: clamp(330px, 32vw, 392px);
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  white-space: pre-wrap;
  color: #ededeb;
  scroll-behavior: smooth;
  font: 700 clamp(13px, 1vw, 15px) / 1.72 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.code-output {
  display: block;
  min-height: 100%;
}

.code-card.is-typing .code-output::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 3px;
  vertical-align: -0.15em;
  background: rgba(255, 255, 255, 0.78);
  animation: codeCursor 780ms steps(1) infinite;
}

.code-muted {
  color: #6e706d;
}

.code-key {
  color: #f4f4ef;
}

.code-call {
  color: #82bcff;
}

.code-string {
  color: #ff8f6b;
}

.code-bool {
  color: #9ddc87;
}

.metric-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255, 255, 255, 0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    rgba(255, 255, 255, 0.006);
  background-size: 92px 92px;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 8%, #000 24%, #000 76%, rgba(0, 0, 0, 0.25) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 8%, #000 24%, #000 76%, rgba(0, 0, 0, 0.25) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.metric-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, transparent 22%, transparent 76%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035), transparent 34%);
  opacity: 1;
}

.metric-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.96)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.86));
  z-index: 0;
}

.metric-flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.46;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.metric-flow span {
  position: absolute;
  left: -18%;
  width: var(--flow-width, 220px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 22%, rgba(255, 255, 255, 0.78) 52%, rgba(255, 255, 255, 0.12) 78%, transparent 100%);
  background-size: 220% 100%;
  animation:
    metricFlow var(--flow-speed, 6.2s) linear infinite,
    flowShimmer 1.9s ease-in-out infinite;
}

.metric-flow span:nth-child(1) {
  top: 31%;
  --flow-width: 180px;
  --flow-speed: 5.8s;
}

.metric-flow span:nth-child(2) {
  top: 48%;
  --flow-width: 280px;
  --flow-speed: 7.3s;
  animation-delay: -2.6s, -0.7s;
}

.metric-flow span:nth-child(3) {
  top: 68%;
  --flow-width: 360px;
  --flow-speed: 8.4s;
  animation-delay: -5.1s;
}

.metric-flow span:nth-child(4) {
  top: 39%;
  --flow-width: 120px;
  --flow-speed: 4.9s;
  animation-delay: -1.1s, -1.2s;
}

.metric-flow span:nth-child(5) {
  top: 58%;
  --flow-width: 230px;
  --flow-speed: 9.1s;
  animation-delay: -6.2s, -0.35s;
}

.metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1232px, calc(100% - 44px));
  margin: 0 auto;
  min-height: 286px;
}

.metric-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.metric-grid article + article {
  border-left: 1px solid var(--line-soft);
}

.metric-grid strong {
  color: var(--text);
  font-size: clamp(52px, 5.2vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.metric-grid span {
  color: #71716d;
  font-size: 15px;
  font-weight: 700;
}

.metric-chart {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  width: 198px;
  height: 46px;
  opacity: 0.94;
  filter: none;
  --line-accent: 186, 205, 255;
  animation: metricListenFloat 4.4s ease-in-out infinite;
}

.metric-chart-links {
  --line-accent: 194, 255, 226;
}

.metric-chart-days {
  --line-accent: 232, 210, 255;
}

.metric-grid article:nth-child(2) .metric-chart {
  animation-delay: -1.4s;
}

.metric-grid article:nth-child(3) .metric-chart {
  animation-delay: -2.7s;
}

.metric-chart i {
  display: block;
  width: var(--line-mid, 94px);
  height: 2px;
  min-height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(var(--line-accent), 0.12) 18%, rgba(255, 255, 255, 0.92) 46%, rgba(var(--line-accent), 0.32) 66%, rgba(255, 255, 255, 0.16) 82%, transparent 100%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 240% 100%, 100% 100%;
  transform: translateX(0);
  box-shadow: 0 0 18px rgba(var(--line-accent), 0.08);
  animation:
    metricLine var(--line-speed, 2.35s) ease-in-out infinite,
    metricGradient 2.8s linear infinite;
}

.metric-chart i:nth-child(1) {
  --line-low: 48px;
  --line-mid: 76px;
  --line-high: 126px;
  --line-from: -16px;
  --line-to: 10px;
  --line-speed: 2.62s;
}

.metric-chart i:nth-child(2) {
  --line-low: 82px;
  --line-mid: 132px;
  --line-high: 188px;
  --line-from: 14px;
  --line-to: -8px;
  --line-speed: 2.12s;
  animation-delay: -0.22s, -0.56s;
}

.metric-chart i:nth-child(3) {
  --line-low: 42px;
  --line-mid: 94px;
  --line-high: 148px;
  --line-from: -6px;
  --line-to: 18px;
  --line-speed: 2.45s;
  animation-delay: -0.44s, -1.1s;
}

.metric-chart i:nth-child(4) {
  --line-low: 96px;
  --line-mid: 150px;
  --line-high: 198px;
  --line-from: 18px;
  --line-to: -14px;
  --line-speed: 2.86s;
  animation-delay: -0.66s, -1.58s;
}

.metric-chart i:nth-child(5) {
  --line-low: 58px;
  --line-mid: 112px;
  --line-high: 166px;
  --line-from: -20px;
  --line-to: 6px;
  --line-speed: 2.28s;
  animation-delay: -0.88s, -2.08s;
}

.metric-grid article:nth-child(2) .metric-chart i:nth-child(1) {
  --line-low: 92px;
  --line-mid: 138px;
  --line-high: 184px;
  --line-speed: 2.16s;
}

.metric-grid article:nth-child(2) .metric-chart i:nth-child(2) {
  --line-low: 54px;
  --line-mid: 86px;
  --line-high: 128px;
  --line-speed: 1.92s;
}

.metric-grid article:nth-child(2) .metric-chart i:nth-child(3) {
  --line-low: 78px;
  --line-mid: 128px;
  --line-high: 176px;
  --line-speed: 2.54s;
}

.metric-grid article:nth-child(3) .metric-chart i:nth-child(1) {
  --line-low: 68px;
  --line-mid: 102px;
  --line-high: 154px;
  --line-speed: 2.38s;
}

.metric-grid article:nth-child(3) .metric-chart i:nth-child(4) {
  --line-low: 86px;
  --line-mid: 146px;
  --line-high: 194px;
  --line-speed: 2.04s;
}

.updates-section {
  width: min(1232px, calc(100% - 44px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(82px, 10vw, 126px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.start-section h2 {
  font-size: clamp(27px, 2.4vw, 34px);
  letter-spacing: 0;
}

.section-heading span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.update-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.update-art {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  border-radius: 9px;
  background: #111;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.update-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 1;
  transition: background 520ms var(--ease);
}

.update-card:hover .update-art::after {
  background: rgba(0, 0, 0, 0.11);
}

.art-ai-image {
  background: #090909;
}

.art-ai-image img {
  position: absolute;
  inset: -25% -9%;
  width: 118%;
  height: 150%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.74) contrast(1.05) brightness(0.88);
  transition:
    opacity 520ms var(--ease),
    filter 520ms var(--ease);
}

.update-card:hover .art-ai-image img {
  opacity: 0.76;
  filter: saturate(0.68) contrast(1.02) brightness(0.8);
}

.art-ai {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 135, 75, 0.85), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(175, 92, 255, 0.58), transparent 24%),
    #0c0c0c;
}

.art-ai span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f6f2ea;
  opacity: 0.7;
  animation: starPulse 2.8s ease-in-out infinite;
}

.art-ai span:nth-child(1) {
  top: 32%;
  left: 42%;
}

.art-ai span:nth-child(2) {
  top: 46%;
  left: 54%;
  animation-delay: 220ms;
}

.art-ai span:nth-child(3) {
  top: 60%;
  left: 47%;
  animation-delay: 480ms;
}

.art-embed-image {
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 66% 12%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 30% 86%, rgba(255, 255, 255, 0.06), transparent 30%),
    #090909;
}

.art-embed-image::before {
  content: none;
}

.art-embed-image img {
  position: absolute;
  inset: -12% -9%;
  width: 118%;
  height: 124%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.72) contrast(1.06) brightness(0.84);
  transition:
    opacity 520ms var(--ease),
    filter 520ms var(--ease);
}

.update-card:hover .art-embed-image img {
  opacity: 0.72;
  filter: saturate(0.66) contrast(1.03) brightness(0.78);
}

.art-links-image {
  background: #050505;
}

.art-links-image img {
  position: absolute;
  inset: -26% -12%;
  width: 124%;
  height: 150%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.78) contrast(1.08) brightness(0.84);
  transition:
    opacity 520ms var(--ease),
    filter 520ms var(--ease);
}

.update-card:hover .art-links-image img {
  opacity: 0.76;
  filter: saturate(0.7) contrast(1.04) brightness(0.78);
}

.art-qr-image {
  background: #050505;
}

.art-qr-image img {
  position: absolute;
  inset: -27% -10%;
  width: 120%;
  height: 154%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.8) contrast(1.08) brightness(0.83);
  transition:
    opacity 520ms var(--ease),
    filter 520ms var(--ease);
}

.art-bio {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.15), transparent 28%),
    #070707;
}

.art-bio::before {
  content: "";
  width: 74px;
  height: 74px;
  border: 7px solid rgba(0, 0, 0, 0.42);
  border-radius: 999px;
  background: #f1eee6;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.2);
}

.art-bio span {
  position: absolute;
  bottom: 28px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.art-bio span:nth-child(1) {
  left: calc(50% - 62px);
}

.art-bio span:nth-child(2) {
  width: 64px;
}

.art-bio span:nth-child(3) {
  right: calc(50% - 62px);
}

.update-card:hover .art-qr-image img {
  opacity: 0.77;
  filter: saturate(0.72) contrast(1.04) brightness(0.77);
}

.art-analytics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 12px;
  padding: 28px;
  background:
    radial-gradient(circle at 64% 30%, rgba(255, 255, 255, 0.12), transparent 28%),
    #0c0c0c;
}

.art-analytics span {
  display: block;
  height: var(--h);
  min-height: 28px;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, #f1eee6, #6e6e68);
}

.art-qr {
  display: grid;
  grid-template-columns: repeat(2, 44px);
  place-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.13), transparent 36%),
    #0d0d0d;
}

.art-qr b {
  display: block;
  height: 44px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, #fff 6px, transparent 6px 16px, #fff 16px 22px, transparent 22px),
    linear-gradient(#fff 6px, transparent 6px 16px, #fff 16px 22px, transparent 22px);
  opacity: 0.85;
}

.update-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.update-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.38;
}

.start-section {
  width: min(1232px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 120px) 0 96px;
  text-align: center;
}

.guides-section {
  width: min(1232px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding: 0 0 96px;
}

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

.guides-grid a {
  display: grid;
  min-height: 156px;
  align-content: space-between;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.055), transparent 34%),
    rgba(18, 18, 18, 0.88);
  transition:
    transform 420ms var(--ease),
    border-color 420ms var(--ease),
    background 420ms var(--ease);
}

.guides-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(26, 26, 26, 0.92);
}

.guides-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guides-grid strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
  text-align: left;
}

.start-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 14px;
  padding: 34px;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.026), transparent 26%),
    #191919;
  box-shadow: none;
}

.start-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 1.8vw, 27px);
  font-weight: 600;
  letter-spacing: 0;
}

.start-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.54;
}

.start-card ul {
  display: grid;
  gap: 15px;
  margin: 30px 0 0;
  padding: 29px 0 0;
  border-top: 1px solid var(--line-soft);
  color: var(--text);
  list-style: none;
}

.start-card li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 700;
}

.start-card li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 2px;
  width: auto;
  height: auto;
  color: #6f716d;
  background: transparent;
  transform: none;
  font-weight: 600;
}

.start-card .button {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  padding: 0 16px;
  font-size: 14px;
}

.site-footer {
  width: min(1232px, calc(100% - 44px));
  margin: 30px auto 0;
  border-top: 1px solid var(--line-soft);
  padding: 32px 0 44px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition:
    opacity 800ms var(--ease),
    transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes gridDrift {
  to {
    background-position: 88px 88px;
  }
}

@keyframes ambientDrift {
  0% {
    opacity: 0.55;
    transform: translate3d(calc(var(--mx) * -14px), calc(var(--my) * -8px), 0) scale(1);
  }

  100% {
    opacity: 0.84;
    transform: translate3d(calc(var(--mx) * -24px), calc(var(--my) * -16px + 18px), 0) scale(1.04);
  }
}

@keyframes heroAurora {
  0% {
    opacity: 0.62;
    transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * -8px), 0) scale(0.98) rotate(-1deg);
  }

  48% {
    opacity: 0.88;
  }

  100% {
    opacity: 0.72;
    transform: translate3d(calc(var(--mx) * -24px), calc(var(--my) * -18px + 18px), 0) scale(1.04) rotate(1deg);
  }
}

@keyframes heroBands {
  0% {
    opacity: 0.22;
    transform: translate3d(calc(var(--mx) * 8px - 24px), calc(var(--my) * 6px), 0) skewX(-4deg);
  }

  100% {
    opacity: 0.44;
    transform: translate3d(calc(var(--mx) * 14px + 30px), calc(var(--my) * 10px + 12px), 0) skewX(4deg);
  }
}

@keyframes glowFloat {
  to {
    opacity: 0.55;
    transform: translateX(-50%) translateY(24px) scale(1.07);
  }
}

@keyframes previewSweep {
  0% {
    opacity: 0;
    transform: translateX(-48%) rotate(1deg);
  }

  22% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(48%) rotate(1deg);
  }
}

@keyframes embedProcess {
  0%,
  32% {
    opacity: 0;
    transform: translateX(0);
  }

  42% {
    opacity: 1;
  }

  76%,
  100% {
    opacity: 0;
    transform: translateX(430%);
  }
}

@keyframes chipBreathe {
  0%,
  100% {
    border-color: var(--line-soft);
    opacity: 0.72;
  }

  45% {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
  }
}

@keyframes bubbleListen {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.78;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes linkBars {
  0%,
  100% {
    transform: scaleY(0.74);
    opacity: 0.58;
  }

  45% {
    transform: scaleY(1.08);
    opacity: 0.96;
  }
}

@keyframes codeSweep {
  0%,
  42% {
    transform: translateX(-100%);
  }

  72%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes codeCursor {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes starPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.72);
  }

  50% {
    opacity: 0.95;
    transform: scale(1);
  }
}

@keyframes metricFlow {
  to {
    transform: translateX(138vw);
  }
}

@keyframes flowShimmer {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.42;
  }

  50% {
    background-position: 100% 50%;
    opacity: 0.82;
  }
}

@keyframes metricListenFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes metricLine {
  0%,
  100% {
    width: var(--line-low);
    opacity: 0.3;
    transform: translateX(var(--line-from, -10px)) scaleX(0.96);
    box-shadow: 0 0 8px rgba(var(--line-accent), 0.04);
  }

  43% {
    width: var(--line-high);
    opacity: 0.96;
    transform: translateX(var(--line-to, 10px)) scaleX(1);
    box-shadow: 0 0 20px rgba(var(--line-accent), 0.18);
  }

  72% {
    width: var(--line-mid);
    opacity: 0.58;
    transform: translateX(0) scaleX(0.98);
    box-shadow: 0 0 14px rgba(var(--line-accent), 0.1);
  }
}

@keyframes metricGradient {
  0%,
  100% {
    background-position: 0% 50%, 50% 50%;
  }

  50% {
    background-position: 140% 50%, 50% 50%;
  }
}

@media (max-width: 920px) {
  .top-nav {
    grid-template-columns: 1fr auto;
    align-items: start;
    border-radius: 18px;
    padding: 10px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 4px;
  }

  .nav-actions {
    align-self: center;
  }

  .nav-actions .button:first-child {
    display: none;
  }

  .product-popover {
    left: 0;
    grid-template-columns: 1fr;
    width: min(390px, calc(100vw - 28px));
    transform: translate(0, 8px) scale(0.98);
  }

  .product-menu::after {
    left: 0;
    width: calc(100% + 24px);
    transform: none;
  }

  .product-menu:hover .product-popover,
  .product-menu.is-open .product-popover {
    transform: translate(0, 0) scale(1);
  }

  .product-popover-preview {
    display: none;
  }

  .hero-section {
    padding-top: 164px;
  }

  .hero-actions {
    flex-direction: column;
    width: min(360px, 100%);
  }

  .button {
    width: 100%;
  }

  .product-previews,
  .builder-section,
  .updates-section,
  .start-section,
  .guides-section {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 720px);
  }

  .product-previews {
    padding-bottom: 56px;
  }

  .builder-section {
    gap: 20px;
    padding: 42px 0;
  }

  .builder-stats,
  .metric-grid,
  .updates-grid,
  .start-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    width: min(100% - 28px, 720px);
  }

  .metric-grid article {
    min-height: 180px;
  }

  .metric-flow span {
    width: 120px;
  }

  .metric-grid article + article {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    width: min(100% - 28px, 720px);
  }
}

@media (max-width: 520px) {
  .top-nav {
    top: 10px;
    width: min(100% - 20px, 520px);
  }

  .nav-brand span,
  .nav-links > a:nth-of-type(n + 3) {
    display: none;
  }

  .nav-actions .button {
    width: auto;
    min-height: 34px;
    padding: 0 12px;
  }

  .hero-title {
    width: min(100vw - 24px, 520px);
    font-size: clamp(39px, 12vw, 58px);
  }

  .hero-proof {
    max-width: min(100%, 340px);
  }

  .preview-surface {
    min-height: 250px;
    padding: 20px;
  }

  .embed-box {
    width: 100%;
    margin-left: 0;
  }

  .ai-bubble {
    justify-self: start;
    margin-right: 0;
  }

  .builder-actions {
    flex-direction: column;
  }

  .builder-actions .button {
    width: 100%;
  }

  .code-card pre {
    font-size: 12px;
  }

  .update-art {
    min-height: 146px;
  }

  .start-card {
    min-height: auto;
  }
}

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