:root {
  color-scheme: dark;
  --bg: #070806;
  --fg: #f4f5ef;
  --muted: #a5ab9d;
  --muted-2: #71786c;
  --panel: rgba(17, 20, 16, 0.72);
  --panel-solid: #11140f;
  --line: rgba(230, 235, 217, 0.13);
  --line-strong: rgba(221, 255, 125, 0.34);
  --lime: #d8ff45;
  --lime-2: #9ee43a;
  --ink: #090b08;
  --warm: #f6f2e8;
  --steel: #8ea4ad;
  --danger: #ff725e;
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-slow: cubic-bezier(0.4, 0, 0.2, 1);
  font-family:
    "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(244, 245, 239, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(244, 245, 239, 0.028) 1px, transparent 1px) 0 0 / 42px 42px,
    #070806;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(216, 255, 69, 0.08), transparent 26%),
    linear-gradient(245deg, rgba(142, 164, 173, 0.1), transparent 30%);
  opacity: 0.72;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.38;
}

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

button {
  font: inherit;
}

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

pre {
  margin: 0;
  overflow-x: auto;
  color: #eef5e7;
  background: #080a07;
  border: 1px solid rgba(244, 245, 239, 0.1);
  border-radius: var(--radius);
}

pre code {
  display: block;
  min-width: max-content;
  padding: 18px;
  font-size: 13px;
  line-height: 1.72;
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.025), transparent);
  background-size: 100% 7px;
  opacity: 0.28;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px;
  background: rgba(10, 12, 9, 0.68);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand,
.site-nav,
.header-action,
.language-option,
.button,
.copy-button,
.tab {
  min-height: 40px;
  border-radius: var(--radius);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-left: 6px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--lime);
  border: 1px solid rgba(216, 255, 69, 0.35);
  border-radius: 8px;
  box-shadow: 0 0 32px rgba(216, 255, 69, 0.22), inset 0 -3px 0 rgba(35, 46, 10, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.brand-mark::before {
  width: 16px;
  height: 16px;
}

.brand-mark::after {
  width: 6px;
  height: 6px;
  background: var(--ink);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 16px;
  line-height: 1;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav a {
  padding: 9px 12px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.08);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink);
  background: var(--warm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.16);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.header-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.language-option {
  min-width: 38px;
  padding: 0 9px;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.language-option:hover,
.language-option.active {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-1px);
}

.header-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.08), inset 0 -2px 0 rgba(0, 0, 0, 0.16);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 132px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(216, 255, 69, 0.16), transparent 24rem),
    radial-gradient(circle at 18% 72%, rgba(142, 164, 173, 0.12), transparent 30rem);
  opacity: 0.86;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -80px;
  z-index: 0;
  pointer-events: none;
  background-image: url("./assets/pura-social-preview.png");
  background-position: 62% 38%;
  background-size: min(1180px, 86vw) auto;
  background-repeat: no-repeat;
  filter: blur(34px) saturate(1.08);
  opacity: 0.25;
  transform: scale(1.08);
  animation: ambientPreview 16s var(--ease-slow) infinite alternate;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 6, 0.96) 0%, rgba(7, 8, 6, 0.78) 42%, rgba(7, 8, 6, 0.56) 100%),
    linear-gradient(0deg, rgba(7, 8, 6, 0.96) 0%, transparent 42%, rgba(7, 8, 6, 0.62) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(216, 255, 69, 0.12) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(0deg, rgba(216, 255, 69, 0.08) 1px, transparent 1px) 0 0 / 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  opacity: 0.18;
  animation: gridSlide 18s linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 72px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: 70px;
  line-height: 0.94;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 52px;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-lede,
.section-heading p,
.detail-card p,
.release-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d4dbcc;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: transform 160ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

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

.button.primary {
  color: var(--ink);
  background: var(--lime);
  border-color: rgba(216, 255, 69, 0.52);
  box-shadow: 0 18px 42px rgba(216, 255, 69, 0.16), inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.button.secondary {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.08);
}

.showcase-card {
  position: relative;
  overflow: hidden;
  --tilt-x: 1.2deg;
  --tilt-y: -2.2deg;
  background: rgba(12, 14, 11, 0.82);
  border: 1px solid rgba(244, 245, 239, 0.14);
  border-radius: 16px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(216, 255, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 600ms var(--ease), box-shadow 600ms var(--ease);
}

.showcase-card:hover {
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-4px);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(216, 255, 69, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.showcase-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: #e9eee0;
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-topbar strong {
  margin-left: 4px;
  font-size: 13px;
}

.showcase-topbar small {
  margin-left: auto;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.traffic {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.traffic.red {
  background: #ff685d;
}

.traffic.amber {
  background: #ffc04d;
}

.traffic.green {
  background: #8ee86b;
}

.showcase-media {
  position: relative;
  padding: 12px;
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.22);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  border-radius: 10px;
  image-rendering: auto;
  transform: translateZ(0);
  animation: imageSettle 900ms var(--ease) 220ms both;
}

.signal-panel {
  position: relative;
  z-index: 4;
  width: auto;
  margin: 0 12px 12px;
  padding: 12px;
  background: rgba(9, 12, 8, 0.82);
  border: 1px solid rgba(216, 255, 69, 0.2);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.signal-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.signal-header small {
  margin-left: auto;
  color: var(--muted);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(216, 255, 69, 0.46);
  animation: pulse 1.8s var(--ease) infinite;
}

.signal-map {
  position: relative;
  height: 112px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.hub-node,
.agent-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 66px;
  min-height: 30px;
  padding: 0 10px;
  color: var(--fg);
  background: #11150f;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.hub-node {
  left: 50%;
  top: 12px;
  color: var(--ink);
  background: var(--lime);
  transform: translateX(-50%);
}

.agent-node {
  bottom: 14px;
}

.agent-node.a1 {
  left: 18px;
}

.agent-node.a2 {
  left: 50%;
  transform: translateX(-50%);
}

.agent-node.a3 {
  right: 18px;
}

.packet {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(216, 255, 69, 0.8);
}

.packet.p1 {
  animation: packetA 2.8s linear infinite;
}

.packet.p2 {
  animation: packetB 3.2s linear infinite;
  animation-delay: 0.55s;
}

.packet.p3 {
  animation: packetC 3s linear infinite;
  animation-delay: 1.1s;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

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

.quickstart {
  padding-top: 104px;
}

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

.command-card,
.flow-card,
.terminal-card,
.detail-card,
.release-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.command-card::before,
.detail-card::before,
.release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 34%);
  opacity: 0;
  transition: opacity 260ms var(--ease);
}

.command-card:hover::before,
.detail-card:hover::before,
.release-card:hover::before {
  opacity: 1;
}

.command-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.step,
.detail-kicker,
.node-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 9px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.copy-button {
  justify-self: start;
  padding: 0 12px;
  color: var(--fg);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  transition: transform 120ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.copy-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.copy-button.copied {
  color: var(--ink);
  background: var(--lime);
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: 80px;
  align-items: center;
  min-height: 400px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(216, 255, 69, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(216, 255, 69, 0.06) 1px, transparent 1px) 0 0 / 48px 48px,
    rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.flow-card {
  z-index: 2;
  padding: 22px;
}

.flow-card strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 28px;
}

.flow-card small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.flow-lanes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lane {
  position: absolute;
  left: 34%;
  right: 21%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  transform-origin: left;
  animation: laneGlow 2.8s var(--ease-slow) infinite;
}

.lane-one {
  top: 34%;
}

.lane-two {
  top: 50%;
  animation-delay: 0.35s;
}

.lane-three {
  top: 66%;
  animation-delay: 0.7s;
}

.agent-stack {
  display: grid;
  gap: 14px;
}

.phone-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.phone-strip span {
  min-height: 126px;
  background:
    linear-gradient(180deg, rgba(216, 255, 69, 0.16), transparent 38%),
    #0b0d0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: inset 0 0 0 5px #050605, 0 18px 34px rgba(0, 0, 0, 0.24);
  animation: phoneFloat 4s var(--ease-slow) infinite alternate;
}

.phone-strip span:nth-child(2) {
  animation-delay: 0.4s;
}

.phone-strip span:nth-child(3) {
  animation-delay: 0.8s;
}

.deploy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.terminal-card {
  padding: 12px;
}

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.tab {
  flex: 1;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-weight: 900;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.tab:hover,
.tab.active {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.08);
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.tab-panel.active {
  display: block;
  animation: panelIn 280ms var(--ease) forwards;
}

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

.detail-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.detail-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.release {
  padding-bottom: 120px;
}

.release-card {
  padding: 34px;
}

.release-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.release-steps span {
  padding: 9px 12px;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(18px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--fg);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-12px, -8px, 0);
  }
}

@keyframes imageSettle {
  from {
    opacity: 0;
    filter: saturate(0.8) contrast(0.9);
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: saturate(1) contrast(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes ambientPreview {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-18px, 10px, 0);
  }
}

@keyframes gridSlide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(84px, 84px, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 14px rgba(216, 255, 69, 0);
  }
}

@keyframes packetA {
  0% {
    left: 50%;
    top: 28px;
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  100% {
    left: 44px;
    top: 78px;
    opacity: 0;
  }
}

@keyframes packetB {
  0% {
    left: 50%;
    top: 28px;
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  100% {
    left: 50%;
    top: 78px;
    opacity: 0;
  }
}

@keyframes packetC {
  0% {
    left: 50%;
    top: 28px;
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 54px);
    top: 78px;
    opacity: 0;
  }
}

@keyframes laneGlow {
  0%,
  100% {
    opacity: 0.16;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1);
  }
}

@keyframes phoneFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .showcase-card {
    transform: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .signal-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 12px;
  }

  .command-grid,
  .detail-grid,
  .deploy-grid,
  .flow-board {
    grid-template-columns: 1fr;
  }

  .flow-board {
    gap: 18px;
  }

  .flow-lanes {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand-copy small,
  .header-action,
  .site-nav {
    display: none;
  }

  .header-tools {
    gap: 0;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(7, 8, 6, 0.98), rgba(7, 8, 6, 0.62)),
      linear-gradient(0deg, rgba(7, 8, 6, 0.95), transparent 40%);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lede,
  .section-heading p {
    font-size: 16px;
  }

  .section-shell {
    width: calc(100% - 24px);
    padding: 72px 0;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }
}
