:root {
  --bg: #050303;
  --bg-soft: #0c0708;
  --ink: #f6f1eb;
  --muted: rgba(246, 241, 235, 0.58);
  --faint: rgba(246, 241, 235, 0.14);
  --line: rgba(246, 241, 235, 0.16);
  --ember: #ff4e1c;
  --ember-2: #ff6a32;
  --ember-deep: #c91e00;
  --cyan: #b7dce8;
  --glass: rgba(18, 10, 10, 0.42);
  --radius: 18px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
  background:
    radial-gradient(90% 42% at 50% 100vh, rgba(168, 30, 8, 0.2), transparent 58%),
    var(--bg);
}

body.touch,
body.no-cursor {
  cursor: auto;
}

body.touch .cursor,
body.touch .cursor-dot,
body.no-cursor .cursor,
body.no-cursor .cursor-dot {
  display: none !important;
}

html.no-cursor,
html.no-cursor body {
  cursor: auto;
}

html.no-cursor .cursor,
html.no-cursor .cursor-dot {
  display: none !important;
}

body.is-loading,
body.paywall-open {
  overflow: hidden;
}

body.is-loading .header,
body.is-loading .cursor,
body.is-loading .cursor-dot,
body.is-loading .grain {
  opacity: 0;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
a {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: none;
}

body.touch button,
body.no-cursor button,
body.touch a,
body.no-cursor a {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Loader */

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  background: #050303;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.loader-brand svg {
  width: 28px;
  height: 28px;
  animation: loader-pulse 1.2s ease-in-out infinite;
}

.loader-brand span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.loader-track {
  width: 168px;
  height: 1px;
  background: rgba(246, 241, 235, 0.12);
  overflow: hidden;
}

.loader-track i {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--ember), var(--ember-2));
  animation: loader-bar 1.05s var(--ease) infinite;
}

@keyframes loader-pulse {
  0%,
  100% {
    color: var(--ink);
    filter: none;
  }
  50% {
    color: var(--ember);
    filter: drop-shadow(0 0 8px rgba(255, 78, 28, 0.55));
  }
}

@keyframes loader-bar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}

/* Grain + cursor */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 140;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(246, 241, 235, 0.45);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s;
}

.cursor.is-hover {
  width: 56px;
  height: 56px;
  background: rgba(255, 78, 28, 0.12);
  border-color: rgba(255, 78, 28, 0.7);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--ink);
}

body.touch .cursor,
body.touch .cursor-dot,
body.no-cursor .cursor,
body.no-cursor .cursor-dot {
  display: none !important;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.btn-ember {
  background: linear-gradient(180deg, #ff7a45 0%, var(--ember) 48%, var(--ember-deep) 100%);
  color: #1a0805;
  box-shadow: 0 8px 28px rgba(255, 62, 18, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-ember:hover {
  filter: brightness(1.06);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4efe9;
  border: 0;
  color: #160807;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.brand-mark {
  width: 28px;
  height: 28px;
  color: var(--ink);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(5, 3, 3, 0.55);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--faint);
}

.header .brand {
  justify-self: start;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(246, 241, 235, 0.72);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.nav a:hover {
  color: var(--ink);
}

/* Hero */

.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 70% at 50% 100%, rgba(255, 58, 16, 0.55) 0%, rgba(90, 12, 4, 0.2) 38%, transparent 62%),
    linear-gradient(180deg, #050303 0%, #120808 42%, #3a0e08 72%, #c42800 100%);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 3, 0.62) 0%, rgba(5, 3, 3, 0.12) 28%, transparent 48%, rgba(5, 3, 3, 0.18) 100%),
    radial-gradient(60% 50% at 50% 42%, transparent 40%, rgba(5, 3, 3, 0.28) 100%);
}

.hero-ripple,
.hero-ripple-2 {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-ripple {
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  background: radial-gradient(circle, rgba(255, 86, 32, 0.2) 0%, rgba(255, 70, 20, 0.08) 34%, transparent 68%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-ripple-2 {
  width: min(38vw, 460px);
  height: min(38vw, 460px);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-display {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5vw 6vh;
  pointer-events: none;
  user-select: none;
}

.hero-display span {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 10.4vw, 10.75rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.94);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  perspective: 1600px;
}

.hero-layer {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-floats,
.hero-core {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  user-select: none;
}

.hero-floats {
  width: min(78vw, 940px);
  z-index: 4;
  animation: drift 9s ease-in-out infinite;
  filter: drop-shadow(0 18px 40px rgba(255, 60, 16, 0.18));
}

.hero-core {
  width: min(42vw, 520px);
  z-index: 5;
  filter: drop-shadow(0 30px 70px rgba(255, 48, 10, 0.38));
  animation: core-float 7.5s ease-in-out infinite;
}

.hero-ui {
  position: relative;
  z-index: 6;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 8px) 40px 36px;
  pointer-events: none;
}

.hero-ui > * {
  pointer-events: auto;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.lead {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 440px;
  padding-bottom: 2px;
}

.lead p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.pulse {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(255, 78, 28, 0.6);
  flex: none;
  animation: ping 2.4s ease-out infinite;
}

.hero-facts {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 5px;
  border-radius: 999px;
  background: rgba(8, 4, 4, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-facts a:not(.hero-facts-go) {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 235, 0.72);
  white-space: nowrap;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-facts a:not(.hero-facts-go) + a:not(.hero-facts-go) {
  position: relative;
}

.hero-facts a:not(.hero-facts-go) + a:not(.hero-facts-go)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts a:not(.hero-facts-go):hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7a45 0%, var(--ember) 48%, var(--ember-deep) 100%);
  color: #1a0805;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(255, 62, 18, 0.28);
}

.hero-facts-go svg {
  width: 14px;
  height: 14px;
}

/* Sections */

.section {
  position: relative;
  z-index: 2;
  padding: 120px 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
  scroll-margin-top: 88px;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 720px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember-2);
}

.section-head h2,
.brief-copy h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.chain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 20px;
  align-items: stretch;
}

.chain-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 20px;
  border-radius: 20px;
  color: inherit;
  background: #141110;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  scroll-margin-top: 100px;
  opacity: 1;
  transform: translateY(10px);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.chain-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

.idx {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 28px;
}

.chain-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.chain-card p,
.steps p,
.brief-lead {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.chain-foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
}

.nodes {
  width: 78px;
  height: 12px;
  flex: none;
}

.nodes line {
  stroke: rgba(246, 241, 235, 0.28);
  stroke-width: 1;
}

.nodes circle {
  fill: rgba(246, 241, 235, 0.22);
  stroke: none;
}

.nodes circle.on {
  fill: var(--ember);
}

.chain-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember-2);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
}

.chain-card:hover,
.chain-card:focus-visible {
  transform: translateY(0);
  border-color: rgba(255, 122, 69, 0.5);
  box-shadow: 0 16px 32px rgba(255, 62, 18, 0.16), 0 16px 32px rgba(0, 0, 0, 0.28);
}

.chain-card:hover::after,
.chain-card:focus-visible::after {
  opacity: 1;
}

.chain-card:hover .chain-more,
.chain-card:focus-visible .chain-more {
  opacity: 1;
  transform: none;
}

.chain-card:hover .nodes circle.on,
.chain-card:focus-visible .nodes circle.on {
  filter: drop-shadow(0 0 5px rgba(255, 78, 28, 0.85));
}

body.touch .chain-more {
  opacity: 0.9;
  transform: none;
}

.js [data-reveal].is-in.chain-card:hover,
.js [data-reveal].is-in.chain-card:focus-visible {
  transform: translateY(0);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.canvas-band {
  padding: 10px 0 20px;
  overflow: hidden;
}

.runtime {
  max-width: 1280px;
  margin: 10px auto 40px;
  padding: 0 40px;
}

.runtime-canvas {
  position: relative;
}

.flow-svg {
  width: 100%;
  height: 200px;
  display: block;
  overflow: visible;
}

.flow-path {
  fill: none;
  stroke: url(#beam);
  stroke-width: 1.4;
  stroke-dasharray: 8 14;
  animation: dash 18s linear infinite;
  transition: stroke 0.35s var(--ease), filter 0.35s var(--ease);
}

.runtime.is-hot .flow-path {
  stroke: var(--ember);
  filter: drop-shadow(0 0 8px rgba(255, 78, 28, 0.75));
}

.flow-hit {
  fill: transparent;
  stroke: none;
  cursor: none;
  pointer-events: all;
}

body.touch .flow-hit,
body.touch .chain-card {
  cursor: pointer;
}

.flow-node {
  fill: #050303;
  stroke: rgba(246, 241, 235, 0.35);
  stroke-width: 1.6;
  pointer-events: none;
  transition: stroke 0.28s var(--ease), fill 0.28s var(--ease), filter 0.28s var(--ease);
}

.flow-node.is-on {
  fill: #1a0805;
  stroke: var(--ember);
  filter: drop-shadow(0 0 8px rgba(255, 78, 28, 0.95));
}

.runtime-plaques {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.rt-plaque {
  padding: 18px 16px 16px;
  border-radius: 16px;
  background: #100e0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.4;
  transform: translateY(10px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.rt-plaque.is-on {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 122, 69, 0.45);
  box-shadow: 0 16px 32px rgba(255, 62, 18, 0.16), 0 16px 32px rgba(0, 0, 0, 0.28);
}

.rt-plaque span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.28s var(--ease);
}

.rt-plaque.is-on span {
  color: var(--ember-2);
}

.rt-plaque h3 {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.rt-plaque p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
  counter-reset: none;
}

.steps li {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  transition: border-color 0.35s var(--ease);
}

.steps li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  background: var(--ember);
  opacity: 0;
  box-shadow: 0 0 14px rgba(255, 78, 28, 0.7);
  transition: opacity 0.35s var(--ease);
}

.steps li:hover,
.steps li.is-near {
  border-top-color: var(--ember);
}

.steps li:hover::after,
.steps li.is-near::after {
  opacity: 1;
}

.steps span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ember-2);
  margin-bottom: 18px;
}

.steps h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.price-head {
  margin-bottom: 32px;
}

.price-head h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 10px 0 0;
}

.price-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.price-card {
  padding: 32px 28px;
  border-radius: 22px;
  background: #141110;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.price-card-ghost {
  background: transparent;
}

.price-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-2);
}

.price-sum {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  margin: 12px 0 14px;
}

.price-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.price-card li {
  padding-left: 16px;
  position: relative;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.price-warn {
  margin: 0 0 22px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 122, 69, 0.28);
  background: rgba(255, 78, 28, 0.08);
  color: rgba(246, 241, 235, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  height: 48px;
}

.brief-meta a {
  color: var(--ember-2);
  border-bottom: 1px solid rgba(255, 106, 50, 0.35);
}

.title-em {
  display: block;
}

.title-em::before {
  content: "—";
  margin-right: 0.28em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ember-2);
}

.paywall {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 16px;
  border: 0;
  background: rgba(5, 3, 3, 0.72);
  color: var(--ink);
}

.paywall[hidden] {
  display: none;
}

.paywall-card {
  width: min(440px, 100%);
  padding: 32px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(12, 7, 7, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(22px);
}

.paywall-card h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
  line-height: 1.15;
}

.paywall-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.paywall-card .btn {
  width: 100%;
}

.footer a:last-child {
  color: var(--ember-2);
}

.brief {
  padding-bottom: 120px;
}

.brief-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.brief-lead {
  margin: 22px 0 28px;
  max-width: 460px;
}

.brief-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.brief-meta li {
  padding-left: 16px;
  position: relative;
}

.brief-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
  padding: 28px;
  border-radius: 22px;
  background: #141110;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.brief-form .full,
.brief-form .btn,
.form-note {
  grid-column: 1 / -1;
}

.brief-form label {
  display: grid;
  gap: 8px;
}

.brief-form span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: rgba(5, 3, 3, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink);
  padding: 14px 14px;
  font-size: 15px;
  outline: none;
  resize: vertical;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-color: rgba(255, 78, 28, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 78, 28, 0.12);
}

.brief-form .btn {
  width: 100%;
  height: 52px;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.form-note.is-ok {
  color: #d7f0c8;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 40px 40px;
  border-top: 1px solid var(--faint);
  color: var(--muted);
  font-size: 13px;
}

.footer .brand-name {
  color: var(--ink);
}

/* Reveal */

[data-reveal] {
  opacity: 1;
}

.js [data-reveal] {
  opacity: 0;
  translate: 0 36px;
}

.js [data-reveal].is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.85s var(--ease), translate 0.85s var(--ease);
}

.js [data-reveal].chain-card {
  opacity: 1;
  translate: none;
  transform: translateY(36px);
}

.js [data-reveal].chain-card.is-in {
  opacity: 1;
  transform: translateY(10px);
  transition:
    transform 0.7s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.chain-grid .chain-card:nth-child(2).is-in {
  transition-delay: 0.08s, 0s, 0s;
}

.chain-grid .chain-card:nth-child(3).is-in {
  transition-delay: 0.16s, 0s, 0s;
}

.chain-grid .chain-card:nth-child(4).is-in {
  transition-delay: 0.24s, 0s, 0s;
}

/* Intro after loader */

.is-ready .header {
  animation: intro-down 0.9s var(--ease) both;
}

.is-ready .hero-display span:first-child {
  animation: intro-left 1.05s var(--ease) 0.08s both;
}

.is-ready .hero-display span:last-child {
  animation: intro-right 1.05s var(--ease) 0.08s both;
}

.is-ready .hero-stage {
  animation: intro-up 1.15s var(--ease) 0.12s both;
}

.is-ready .hero-bottom {
  animation: intro-up 0.9s var(--ease) 0.22s both;
}

@keyframes intro-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
}

@keyframes intro-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
}

@keyframes intro-left {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
}

@keyframes intro-right {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
}

/* Motion */

@keyframes drift {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 14px));
  }
}

@keyframes core-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-6deg);
  }
  50% {
    transform: translate(-50%, calc(-50% - 10px)) rotate(-4deg);
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 78, 28, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 78, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 78, 28, 0);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -400;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-floats,
  .hero-core,
  .pulse,
  .flow-path,
  .loader-brand svg,
  .loader-track i {
    animation: none;
  }

  .loader {
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    translate: 0;
  }

  .is-ready .header,
  .is-ready .hero-display span,
  .is-ready .hero-stage,
  .is-ready .hero-bottom {
    animation: none;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-dot {
    display: none !important;
  }

  button,
  a,
  input,
  textarea {
    cursor: pointer;
  }
}

@media (max-width: 1100px) {
  .chain-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero-display span {
    font-size: clamp(2.6rem, 9vw, 6rem);
  }

  .hero-core {
    width: min(46vw, 400px);
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .brief-grid {
    grid-template-columns: 1fr;
  }

  .price-grid,
  .runtime-plaques {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  body,
  body.touch,
  body.no-cursor {
    cursor: auto;
  }

  .cursor,
  .cursor-dot {
    display: none !important;
  }

  .header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 0;
    padding: max(12px, env(safe-area-inset-top)) 16px 10px;
    gap: 8px 12px;
  }

  .header-actions .btn {
    height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    padding-top: 2px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero-ui {
    padding: 108px 16px 22px;
  }

  .hero,
  .hero-ui {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-display {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 16vh 4vw 28vh;
    text-align: center;
  }

  .hero-display span {
    font-size: clamp(2.4rem, 16vw, 4.8rem);
    letter-spacing: -0.06em;
  }

  .hero-core {
    width: min(70vw, 320px);
    top: 48%;
  }

  .hero-floats {
    width: min(100vw, 520px);
    opacity: 0.86;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-facts {
    flex-wrap: wrap;
    border-radius: 22px;
    justify-content: space-between;
  }

  .hero-facts a:not(.hero-facts-go) {
    padding: 10px 12px;
    font-size: 11px;
  }

  .hero-facts-go {
    width: 100%;
    justify-content: center;
  }

  .lead p {
    font-size: 16px;
  }

  .section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 72px;
  }

  .chain-grid,
  .steps,
  .price-grid,
  .runtime-plaques {
    grid-template-columns: 1fr;
  }

  .runtime {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 0;
  }

  .flow-svg {
    height: 132px;
  }

  .brief-form {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .brief-form input,
  .brief-form textarea {
    font-size: 16px;
  }

  .title-em {
    font-size: 0.92em;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .paywall {
    padding: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .chain-card {
    transform: none;
  }

  .chain-card:hover,
  .chain-card:focus-visible,
  .js [data-reveal].is-in.chain-card,
  .js [data-reveal].is-in.chain-card:hover,
  .js [data-reveal].is-in.chain-card:focus-visible {
    transform: none;
  }

  .js [data-reveal].chain-card {
    transform: translateY(24px);
  }

  .js [data-reveal].chain-card.is-in {
    transform: none;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .hero-facts a:not(.hero-facts-go) {
    flex: 1 1 auto;
    text-align: center;
  }
}
