@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
/* line 9, assets/stylesheets/site.css.scss */
:root {
  --bg: #050505;
  --bg-subtle: #0a0a0a;
  --fg: #f5f5f5;
  --fg-muted: #888;
  --fg-dim: #555;
  --accent: #e879f9;
  --accent-blue: #38bdf8;
  --accent-green: #4ade80;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-hover: rgba(255, 255, 255, 0.06);
  --code-bg: #0c0c0c;
  --code-fg: #e4e4e7;
  --code-header-bg: #141414;
  --code-header-fg: #666;
  --terminal-bg: #080808;
  --terminal-fg: #d4d4d8;
  --glow-fuchsia: rgba(232, 121, 249, 0.15);
  --glow-blue: rgba(56, 189, 248, 0.1);
  --glow-green: rgba(74, 222, 128, 0.1);
  --mono: "SF Mono", "Fira Code", "Fira Mono", "Cascadia Code", Menlo, monospace;
}

/* line 36, assets/stylesheets/site.css.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 42, assets/stylesheets/site.css.scss */
::selection {
  background: var(--accent);
  color: #000;
}

/* line 49, assets/stylesheets/site.css.scss */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* line 61, assets/stylesheets/site.css.scss */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* line 73, assets/stylesheets/site.css.scss */
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: auto;
  max-width: calc(100% - 2rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* line 93, assets/stylesheets/site.css.scss */
.nav-brand {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 104, assets/stylesheets/site.css.scss */
.nav-logo {
  font-size: 1.4rem;
}

/* line 108, assets/stylesheets/site.css.scss */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* line 113, assets/stylesheets/site.css.scss */
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

/* line 120, assets/stylesheets/site.css.scss */
.nav-links a:hover {
  color: var(--fg);
}

/* line 127, assets/stylesheets/site.css.scss */
main {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  position: relative;
  z-index: 1;
}

/* line 137, assets/stylesheets/site.css.scss */
h1 {
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
  color: var(--fg);
  font-weight: 900;
  text-wrap: balance;
}

/* line 147, assets/stylesheets/site.css.scss */
h2 {
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  margin-top: 4rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
  font-weight: 800;
  text-wrap: balance;
}

/* line 157, assets/stylesheets/site.css.scss */
h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
  font-weight: 700;
}

/* line 165, assets/stylesheets/site.css.scss */
p {
  margin-bottom: 1rem;
  color: var(--fg-muted);
  font-size: 1.05rem;
}

/* line 171, assets/stylesheets/site.css.scss */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

/* line 176, assets/stylesheets/site.css.scss */
a:hover {
  color: #f5c2fc;
}

/* line 183, assets/stylesheets/site.css.scss */
.gradient-text {
  background: linear-gradient(135deg, #e879f9 0%, #38bdf8 50%, #e879f9 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
}

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

/* line 199, assets/stylesheets/site.css.scss */
.hero {
  text-align: center;
  padding: 9rem 0 4rem;
  position: relative;
}

/* line 206, assets/stylesheets/site.css.scss */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, var(--glow-fuchsia) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* line 219, assets/stylesheets/site.css.scss */
.hero-logo {
  font-size: 5rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(232, 121, 249, 0.4));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* line 231, assets/stylesheets/site.css.scss */
.hero h1 {
  font-size: 4.25rem;
  max-width: 52rem;
  margin: 0 auto 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  word-spacing: 0.08em;
  text-wrap: balance;
}

/* line 241, assets/stylesheets/site.css.scss */
.hero-sub {
  font-size: 1.3rem;
  color: var(--fg-muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
  text-wrap: balance;
}

/* line 250, assets/stylesheets/site.css.scss */
.page-hero {
  padding: 10rem 0 1.5rem;
}

/* line 255, assets/stylesheets/site.css.scss */
.page-hero hgroup h1 {
  font-size: 3rem;
  margin-bottom: 0.35rem;
}

/* line 260, assets/stylesheets/site.css.scss */
.page-hero hgroup .hero-sub {
  font-size: 1.15rem;
  max-width: none;
  margin: 0;
}

/* line 269, assets/stylesheets/site.css.scss */
.code-block, .terminal-block {
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 1.5rem 0;
  border: 1px solid var(--border-strong);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* line 277, assets/stylesheets/site.css.scss */
.code-block:hover, .terminal-block:hover {
  border-color: rgba(232, 121, 249, 0.2);
  box-shadow: 0 0 30px var(--glow-fuchsia), 0 0 60px rgba(56, 189, 248, 0.05);
}

/* line 284, assets/stylesheets/site.css.scss */
.code-header {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.6rem 1rem;
  background: var(--code-header-bg);
  color: var(--code-header-fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 295, assets/stylesheets/site.css.scss */
.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  display: inline-block;
  transition: box-shadow 0.3s;
}

/* line 303, assets/stylesheets/site.css.scss */
.dot.red {
  background: #ef4444;
}

/* line 304, assets/stylesheets/site.css.scss */
.dot.yellow {
  background: #eab308;
}

/* line 305, assets/stylesheets/site.css.scss */
.dot.green {
  background: #22c55e;
  margin-right: 0.4rem;
}

/* line 307, assets/stylesheets/site.css.scss */
.code-block:hover .dot.red,
.terminal-block:hover .dot.red {
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

/* line 309, assets/stylesheets/site.css.scss */
.code-block:hover .dot.yellow,
.terminal-block:hover .dot.yellow {
  box-shadow: 0 0 8px rgba(234, 179, 8, 0.6);
}

/* line 311, assets/stylesheets/site.css.scss */
.code-block:hover .dot.green,
.terminal-block:hover .dot.green {
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* line 314, assets/stylesheets/site.css.scss */
.code-block pre,
.terminal-block pre {
  padding: 1.25rem;
  overflow-x: auto;
  margin: 0;
}

/* line 321, assets/stylesheets/site.css.scss */
.code-block {
  background: var(--code-bg);
}

/* line 325, assets/stylesheets/site.css.scss */
.code-block code,
.terminal-block code {
  font-family: var(--mono);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* line 332, assets/stylesheets/site.css.scss */
.code-block code {
  color: var(--code-fg);
}

/* line 336, assets/stylesheets/site.css.scss */
.terminal-block {
  background: var(--terminal-bg);
}

/* line 340, assets/stylesheets/site.css.scss */
.terminal-block .code-header {
  background: #0e0e0e;
}

/* line 344, assets/stylesheets/site.css.scss */
.terminal-block code {
  color: var(--terminal-fg);
}

/* line 348, assets/stylesheets/site.css.scss */
.prompt {
  color: var(--accent-green);
  user-select: none;
}

/* line 353, assets/stylesheets/site.css.scss */
.sh {
  color: var(--accent-green);
}

/* line 354, assets/stylesheets/site.css.scss */
.fm {
  color: #a78bfa;
}

/* line 355, assets/stylesheets/site.css.scss */
.comment {
  color: var(--fg-dim);
}

/* line 356, assets/stylesheets/site.css.scss */
.output {
  color: #fbbf24;
}

/* line 357, assets/stylesheets/site.css.scss */
.tool-dot {
  color: var(--accent-blue);
  font-weight: 700;
}

/* line 361, assets/stylesheets/site.css.scss */
p code, li code, td code, strong code, .anatomy-part code,
.config-level code, .binary-card code {
  font-family: var(--mono);
  font-size: 0.84em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  padding: 0.15em 0.45em;
  border-radius: 0.3rem;
}

/* line 373, assets/stylesheets/site.css.scss */
.example-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 700px) {
  /* line 380, assets/stylesheets/site.css.scss */
  .example-pair {
    grid-template-columns: 1fr;
  }
}

/* line 387, assets/stylesheets/site.css.scss */
.three-steps {
  margin: 2rem 0;
}

/* line 391, assets/stylesheets/site.css.scss */
.step-showcase {
  margin-bottom: 4rem;
}

/* line 395, assets/stylesheets/site.css.scss */
.step-showcase-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* line 401, assets/stylesheets/site.css.scss */
.step-showcase-header h2 {
  margin: 0;
}

/* line 406, assets/stylesheets/site.css.scss */
.step-num {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 0 20px var(--glow-fuchsia), inset 0 0 12px var(--glow-fuchsia);
  transition: box-shadow 0.3s;
}

/* line 425, assets/stylesheets/site.css.scss */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

/* line 432, assets/stylesheets/site.css.scss */
.feature-card {
  padding: 1.75rem;
  background: var(--card-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* line 439, assets/stylesheets/site.css.scss */
.feature-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-strong);
  box-shadow: 0 0 30px var(--glow-fuchsia);
  transform: translateY(-2px);
}

/* line 447, assets/stylesheets/site.css.scss */
.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: transform 0.3s;
}

/* line 453, assets/stylesheets/site.css.scss */
.feature-card:hover .feature-icon {
  transform: scale(1.15);
}

/* line 458, assets/stylesheets/site.css.scss */
.feature-card h3 {
  margin-top: 0;
  font-weight: 700;
}

/* line 463, assets/stylesheets/site.css.scss */
.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  /* line 469, assets/stylesheets/site.css.scss */
  .features {
    grid-template-columns: 1fr;
  }
}

/* line 476, assets/stylesheets/site.css.scss */
.pipe-example {
  margin: 4rem 0;
}

/* line 482, assets/stylesheets/site.css.scss */
.big-example {
  margin: 4rem 0;
}

/* line 488, assets/stylesheets/site.css.scss */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

/* line 495, assets/stylesheets/site.css.scss */
.tool-card {
  padding: 1.25rem;
  background: var(--card-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* line 502, assets/stylesheets/site.css.scss */
.tool-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-strong);
}

/* line 507, assets/stylesheets/site.css.scss */
.tool-card code {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: none;
  padding: 0;
}

/* line 515, assets/stylesheets/site.css.scss */
.tool-card p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

/* line 521, assets/stylesheets/site.css.scss */
.tool-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* line 531, assets/stylesheets/site.css.scss */
.tool-safe {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.15);
}

/* line 537, assets/stylesheets/site.css.scss */
.tool-approve {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.15);
}

/* line 545, assets/stylesheets/site.css.scss */
.approval-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* line 552, assets/stylesheets/site.css.scss */
.approval-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* line 558, assets/stylesheets/site.css.scss */
.approval-key {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  min-width: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-blue);
  border-radius: 0.4rem;
  border: 1px solid var(--border-strong);
  white-space: nowrap;
}

/* line 574, assets/stylesheets/site.css.scss */
.approval-option strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--fg);
}

/* line 580, assets/stylesheets/site.css.scss */
.approval-option p {
  margin: 0;
  font-size: 0.9rem;
}

/* line 587, assets/stylesheets/site.css.scss */
.anatomy-parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

/* line 594, assets/stylesheets/site.css.scss */
.anatomy-part {
  padding: 1.25rem;
  background: var(--card-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

/* line 600, assets/stylesheets/site.css.scss */
.anatomy-part strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--fg);
}

/* line 601, assets/stylesheets/site.css.scss */
.anatomy-part p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 700px) {
  /* line 605, assets/stylesheets/site.css.scss */
  .anatomy-parts {
    grid-template-columns: 1fr;
  }
}

/* line 612, assets/stylesheets/site.css.scss */
.loop-diagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
  overflow-x: auto;
  padding: 1rem 0;
}

/* line 621, assets/stylesheets/site.css.scss */
.loop-step {
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  min-width: 8rem;
  text-align: center;
  transition: all 0.3s;
}

/* line 630, assets/stylesheets/site.css.scss */
.loop-step p {
  font-size: 0.8rem;
  margin: 0.25rem 0 0;
}

/* line 633, assets/stylesheets/site.css.scss */
.loop-step-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--glow-fuchsia);
}

/* line 638, assets/stylesheets/site.css.scss */
.loop-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}

/* line 644, assets/stylesheets/site.css.scss */
.loop-arrow {
  color: var(--fg-dim);
  font-size: 1.25rem;
  min-width: 1.5rem;
  text-align: center;
}

/* line 653, assets/stylesheets/site.css.scss */
.config-stack {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0;
  border: 1px solid var(--border-strong);
  border-radius: 0.75rem;
  overflow: hidden;
}

/* line 662, assets/stylesheets/site.css.scss */
.config-level {
  padding: 0.75rem 1.25rem;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

/* line 668, assets/stylesheets/site.css.scss */
.config-level:last-child {
  border-bottom: none;
}

/* line 669, assets/stylesheets/site.css.scss */
.config-level strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--fg);
}

/* line 670, assets/stylesheets/site.css.scss */
.config-level code {
  font-size: 0.8em;
}

/* line 673, assets/stylesheets/site.css.scss */
.config-top {
  background: rgba(232, 121, 249, 0.06);
  border-bottom-color: rgba(232, 121, 249, 0.1);
}

/* line 680, assets/stylesheets/site.css.scss */
.binaries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* line 687, assets/stylesheets/site.css.scss */
.binary-card {
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

/* line 694, assets/stylesheets/site.css.scss */
.binary-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 20px var(--glow-blue);
}

/* line 699, assets/stylesheets/site.css.scss */
.binary-card code {
  font-size: 1.5rem;
  font-weight: 700;
  background: none;
  padding: 0;
  color: var(--accent);
}

/* line 707, assets/stylesheets/site.css.scss */
.binary-card p {
  font-size: 0.95rem;
  margin: 0.5rem 0 0;
}

@media (max-width: 700px) {
  /* line 714, assets/stylesheets/site.css.scss */
  .binaries {
    grid-template-columns: 1fr;
  }
}

/* line 721, assets/stylesheets/site.css.scss */
.cta {
  padding: 3rem 0 4rem;
}

/* line 725, assets/stylesheets/site.css.scss */
.cta-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* line 731, assets/stylesheets/site.css.scss */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  background: var(--accent);
  color: #000;
  text-decoration: none;
}

/* line 742, assets/stylesheets/site.css.scss */
.btn:hover {
  box-shadow: 0 0 25px var(--glow-fuchsia);
  transform: translateY(-1px);
  color: #000;
}

/* line 749, assets/stylesheets/site.css.scss */
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* line 754, assets/stylesheets/site.css.scss */
.btn-ghost:hover {
  background: rgba(232, 121, 249, 0.08);
  color: var(--accent);
}

/* line 762, assets/stylesheets/site.css.scss */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* line 769, assets/stylesheets/site.css.scss */
.footer-inner {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* line 777, assets/stylesheets/site.css.scss */
.footer-logo {
  font-size: 1.5rem;
}

/* line 781, assets/stylesheets/site.css.scss */
footer p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  margin: 0;
}

/* line 789, assets/stylesheets/site.css.scss */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

/* line 795, assets/stylesheets/site.css.scss */
th, td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* line 801, assets/stylesheets/site.css.scss */
th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
}

/* line 810, assets/stylesheets/site.css.scss */
ol, ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--fg-muted);
}

/* line 816, assets/stylesheets/site.css.scss */
li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

/* line 821, assets/stylesheets/site.css.scss */
li strong {
  color: var(--fg);
}

/* line 829, assets/stylesheets/site.css.scss */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* line 836, assets/stylesheets/site.css.scss */
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* line 842, assets/stylesheets/site.css.scss */
.stagger > *:nth-child(1) {
  transition-delay: 0s;
}

/* line 843, assets/stylesheets/site.css.scss */
.stagger > *:nth-child(2) {
  transition-delay: 0.08s;
}

/* line 844, assets/stylesheets/site.css.scss */
.stagger > *:nth-child(3) {
  transition-delay: 0.16s;
}

/* line 845, assets/stylesheets/site.css.scss */
.stagger > *:nth-child(4) {
  transition-delay: 0.24s;
}

/* line 846, assets/stylesheets/site.css.scss */
.stagger > *:nth-child(5) {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  /* line 850, assets/stylesheets/site.css.scss */
  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  /* line 856, assets/stylesheets/site.css.scss */
  .hero-logo, .gradient-text {
    animation: none;
  }
}

@media (max-width: 640px) {
  /* line 866, assets/stylesheets/site.css.scss */
  .hero {
    padding: 5rem 0 3rem;
  }
  /* line 870, assets/stylesheets/site.css.scss */
  .hero h1 {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
  }
  /* line 875, assets/stylesheets/site.css.scss */
  .hero-sub {
    font-size: 1.1rem;
  }
  /* line 879, assets/stylesheets/site.css.scss */
  .hero-logo {
    font-size: 3.5rem;
  }
  /* line 883, assets/stylesheets/site.css.scss */
  h1 {
    font-size: 2.25rem;
  }
  /* line 887, assets/stylesheets/site.css.scss */
  nav {
    gap: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  /* line 893, assets/stylesheets/site.css.scss */
  main {
    padding: 0 1rem 3rem;
  }
  /* line 897, assets/stylesheets/site.css.scss */
  .loop-diagram {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* line 902, assets/stylesheets/site.css.scss */
  .loop-arrow {
    display: none;
  }
}
