:root {
  --bg: #05070b;
  --bg-soft: #0a0f17;
  --panel: rgba(12, 18, 28, 0.7);
  --panel-strong: rgba(14, 20, 31, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7fb;
  --muted: #99a4b5;
  --accent: #25f2ff;
  --accent-2: #ff2fb2;
  --accent-3: #7dff3b;
  --accent-4: #ffd400;
  --danger: #ff4f5e;
  --blue: #2b87ff;
  --orange: #ff9c1a;
  --radius: 24px;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45) 0.5px, transparent 0.8px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.25) 0.5px, transparent 0.8px),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.2) 0.5px, transparent 0.8px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  z-index: 1;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  z-index: 0;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(37, 242, 255, 0.13), rgba(37, 242, 255, 0.06) 30%, rgba(37, 242, 255, 0.01) 65%, transparent 75%);
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: blur(8px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(5, 7, 11, 0.88), rgba(5, 7, 11, 0));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 14px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  border-color: rgba(37, 242, 255, 0.45);
  color: var(--accent);
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 5;
}

section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  position: relative;
}


.hero-gallery {
  padding-top: 20px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 0 140px;
}

.intro-copy {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual-wrap {
  position: relative;
}

.sticky-visual {
  position: sticky;
  top: 110px;
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-code-panel {
  position: relative;
  min-height: 100%;
  display: block;
}

.hero-intro .hero-code-panel,
.hero-gallery .hero-code-panel {
  align-self: stretch;
}

.hero-intro .code-window {
  position: sticky;
  top: 120px;
}

.hero-gallery .code-window {
  position: sticky;
  top: 120px;
}

.eyebrow,
.section-kicker {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 16px;
}

.hero-title {
  margin: 0;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-title span {
  display: block;
  margin-top: 18px;
  max-width: 700px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(37, 242, 255, 0.18), rgba(255, 47, 178, 0.18));
  border: 1px solid rgba(37, 242, 255, 0.35);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 12px 32px rgba(37, 242, 255, 0.1);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.stat-card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  align-items: center;
}

.visual-frame {
  position: relative;
  width: min(540px, 80vw);
  aspect-ratio: 1 / 1.18;
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 242, 255, 0.1), transparent 35%),
    radial-gradient(circle at 50% 75%, rgba(255, 47, 178, 0.08), transparent 35%),
    rgba(6, 10, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(37, 242, 255, 0.9), transparent);
  opacity: 0.9;
}

.frame-line.top,
.frame-line.bottom {
  height: 1px;
  width: 60%;
  left: 20%;
}

.frame-line.left,
.frame-line.right {
  width: 1px;
  height: 60%;
  top: 20%;
}

.frame-line.top {
  top: 18px;
}

.frame-line.bottom {
  bottom: 18px;
}

.frame-line.left {
  left: 18px;
  background: linear-gradient(180deg, transparent, rgba(255, 47, 178, 0.9), transparent);
}

.frame-line.right {
  right: 18px;
  background: linear-gradient(180deg, transparent, rgba(125, 255, 59, 0.9), transparent);
}

.nft-display {
  width: 72%;
  max-width: 360px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(37, 242, 255, 0.12));
  transition: opacity 0.3s ease, transform 0.5s ease, filter 0.5s ease;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.orb-1 {
  width: 240px;
  height: 240px;
  background: rgba(37, 242, 255, 0.16);
  top: 12%;
  left: 12%;
  animation: floatA 8s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(255, 47, 178, 0.14);
  bottom: 10%;
  right: 8%;
  animation: floatB 9s ease-in-out infinite;
}

.visual-meta {
  width: min(540px, 80vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.meta-chip {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.meta-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Space Mono", monospace;
}

.meta-value {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
}

.visual-counter {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.code-window {
  width: 100%;
  min-height: 50px;
  border: 2px solid rgba(255, 0, 122, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 0, 122, 0.03), rgba(37, 242, 255, 0.02)),
    rgba(4, 7, 14, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(255, 0, 122, 0.12),
    0 0 120px rgba(255, 0, 122, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.code-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
  pointer-events: none;
}

.code-window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 1;
}

.code-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.code-window-title {
  margin-left: 10px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.code-window-body {
  position: relative;
  z-index: 1;
  padding: 30px 28px 34px;
  height: calc(100% - 64px);
  display: flex;
  flex-direction: column;
}

.code-label {
  margin-bottom: 18px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
}

.typing-shell {
  margin: 0;
  flex: 1;
  min-height: 120px;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
}

.typing-caret {
  display: inline-block;
  width: 10px;
  height: 1.2em;
  vertical-align: -0.2em;
  margin-left: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(37, 242, 255, 0.8);
  animation: blinkCaret 0.9s steps(1) infinite;
}

.token-keyword {
  color: #ff4fa3;
}

.token-var {
  color: #7ae7ff;
}

.token-fn {
  color: #7dff3b;
}

.token-num {
  color: #ffd400;
}

.token-str {
  color: #ff9c1a;
}

.token-op {
  color: #c7d2e3;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.scroll-showcase {
  padding: 120px 0 60px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 28px;
  backdrop-filter: blur(14px);
}

.timeline-index {
  font-family: "Space Mono", monospace;
  color: var(--accent);
  font-size: 20px;
}

.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.rarity-section {
  padding: 120px 0 60px;
}

.rarity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rarity-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rarity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
}

.rarity-card.common::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
}

.rarity-card.rare::before {
  background: linear-gradient(180deg, rgba(43, 135, 255, 0.35), transparent);
}

.rarity-card.epic::before {
  background: linear-gradient(180deg, rgba(255, 47, 178, 0.35), transparent);
}

.rarity-card.legendary::before {
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.38), transparent);
}

.rarity-name {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.rarity-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.agent-section {
  padding: 120px 0 60px;
}

.agent-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.agent-copy,
.terminal,
.manifesto-box,
.final-card {
  border: 1px solid var(--line);
  background: var(--panel-strong);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.agent-copy {
  padding: 32px;
}

.agent-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}

.terminal {
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.terminal-body {
  padding: 28px;
  font-family: "Space Mono", monospace;
}

.terminal-title {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 20px;
  font-family: Inter, sans-serif;
  font-weight: 700;
}

.terminal pre {
  margin: 0 0 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--accent);
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.95;
}

.terminal-success {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(125, 255, 59, 0.1);
  border: 1px solid rgba(125, 255, 59, 0.22);
  color: #b8ff97;
}

.manifesto {
  padding: 120px 0 60px;
}

.manifesto-box {
  padding: 44px;
  text-align: center;
}

.manifesto-box h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.manifesto-box p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

.final-cta {
  padding: 80px 0 120px;
}

.final-card {
  padding: 42px;
  text-align: center;
}

.final-card h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.final-card .hero-actions {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -24px, 0);
  }
}

@keyframes floatB {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-22px, 16px, 0);
  }
}

@keyframes blinkCaret {
  0%, 50% {
    opacity: 1;
  }

  50.01%, 100% {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-intro,
  .hero-gallery {
    min-height: auto;
  }

  .hero-copy,
  .intro-copy {
    min-height: auto;
    padding: 40px 0 80px;
  }

  .sticky-visual,
  .hero-intro .code-window,
  .hero-gallery .code-window {
    position: relative;
    top: 0;
    min-height: auto;
  }

  .code-window {
    min-height: 520px;
  }

  .typing-shell {
    min-height: 380px;
    font-size: 14px;
  }

  .rarity-grid,
  .agent-grid,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
	.hero-stack {
	padding-top: 20px;

}
.rarity-section {
  padding: 30px 0 60px;
}
  .site-header {
    padding: 18px 16px;
  }

  section {
    width: min(100% - 20px, 1280px);
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 12px;
    gap: 24px;
  }

  .hero-stats,
  .rarity-grid,
  .agent-grid,
  .visual-meta {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-title span {
    font-size: 18px;
  }

  .hero-text,
  .agent-copy p,
  .manifesto-box p:last-child {
    font-size: 16px;
  }

  .manifesto-box,
  .final-card,
  .agent-copy,
  .terminal-body {
    padding: 24px;
  }

  .visual-frame {
    width: 100%;
    border-radius: 28px;
  }

  .nft-display {
    width: 74%;
  }

  .code-window {
    min-height: 460px;
  }

  .typing-shell {
    min-height: 320px;
    font-size: 12px;
    line-height: 1.8;
  }
}
.hero-stack {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  padding-top: 120px;
  position: relative;
}

.hero-stack-left {
  display: grid;
  gap: 0;
}

.hero-stack-left .hero {
  width: 100%;
  margin: 0;
  display: block;
}


.hero-gallery {
  padding-top: 20px;
}

.intro-copy {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 80px 0 0px;
}

.hero-code-panel {
	position: relative;
	min-height: calc(160vh + 30vh);
}

.hero-code-panel .code-window {
  position: sticky;
  top: 120px;
}

.hero-visual-wrap {
  position: relative;
}

.sticky-visual {
  position: sticky;
  top: 110px;
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1100px) {
  .hero-stack {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-code-panel {
    min-height: auto;
  }

  .hero-code-panel .code-window,
  .sticky-visual {
    position: relative;
    top: 0;
    min-height: auto;
  }

  .hero-intro,
  .hero-gallery {
    min-height: auto;
  }

  .intro-copy {
    min-height: auto;
    padding: 10px 0 80px;
  }
}
.agent-skill {
  margin-bottom: 16px;
}

.skill-label {
  display:block;
  font-size:12px;
  color:#7b8aa0;
  margin-bottom:6px;
}

.skill-url {
  padding:12px;
  border-radius:10px;
  background:#0b0f16;
  border:1px solid #1f2a3a;
  color:#25f2ff;
}

.wallet-input {
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #1f2a3a;
  background:#0b0f16;
  color:#fff;
  margin-top:12px;
}

.agent-action {
  margin-top:12px;
}

.agent-prompt {
  margin-top:18px;
}

.prompt-title {
  margin-bottom:8px;
  color:#9fb0c7;
}

.prompt-code {
  padding:14px;
  border-radius:10px;
  background:#0b0f16;
  border:1px solid #1f2a3a;
  color:#25f2ff;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark.eyes-logo {
  --eye-offset-x: 0px;
  --eye-offset-y: 0px;
  --eye-color: #7cf3ff;
  --eye-glow: rgba(124, 243, 255, 0.7);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 16px;
  flex: 0 0 auto;
}

.brand-mark.eyes-logo .eye {
  position: relative;
  width: 11px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transform-origin: center center;
  animation: symbotsBlink 5.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform, opacity;
}

.brand-mark.eyes-logo .eye-glyph {
  display: block;
  font-size: 12px;
  line-height: 1;
  color: var(--eye-color);
  text-shadow:
    0 0 4px var(--eye-glow),
    0 0 10px var(--eye-glow),
    0 0 16px var(--eye-glow);
  transform: translate(var(--eye-offset-x), var(--eye-offset-y));
  transition: transform 0.12s ease-out;
  will-change: transform;
}

@keyframes symbotsBlink {
  0%,
  42%,
  44%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  43% {
    transform: scaleY(0.08);
    opacity: 0.55;
  }

  43.5% {
    transform: scaleY(0.02);
    opacity: 0.2;
  }
}