:root {
  --forest: #0d130b;
  --forest-2: #12190d;
  --forest-3: #1a2411;
  --cream: #faf6ea;
  --paper: #f3f0df;
  --acid: #a6e85a;
  --acid-2: #8fd63a;
  --moss: #9db187;
  --muted: #6d8059;
  --gold: #f3c64c;
  --coral: #f0776a;
  --ink: #10140e;
  --line: rgba(157, 177, 135, 0.28);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 28px 70px rgba(5, 9, 4, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 214, 58, 0.08), transparent 26rem),
    var(--forest);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(13, 19, 11, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: 2px solid rgba(250, 246, 234, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(166, 232, 90, 0.1);
}

.brand-mark img {
  width: 108%;
  max-width: none;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cto-pill {
  padding: 3px 7px;
  color: var(--forest);
  background: var(--acid);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  gap: 6px;
  padding: 5px;
  color: var(--moss);
  background: rgba(26, 36, 17, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover {
  color: var(--cream);
  background: rgba(250, 246, 234, 0.07);
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.button-acid {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 8px 30px rgba(143, 214, 58, 0.18);
}

.button-acid:hover {
  background: #b5f36c;
  box-shadow: 0 12px 36px rgba(143, 214, 58, 0.26);
}

.button-ghost {
  color: var(--cream);
  background: rgba(250, 246, 234, 0.04);
  border-color: var(--line);
}

.button-ink {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 10px 25px rgba(13, 19, 11, 0.18);
}

.button-outline {
  color: var(--forest);
  background: transparent;
  border-color: rgba(13, 19, 11, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(68px, 8vw, 118px) clamp(22px, 6vw, 96px) 128px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -250px;
  width: 60vw;
  height: 500px;
  content: "";
  background: radial-gradient(ellipse, rgba(143, 214, 58, 0.14), transparent 70%);
  filter: blur(20px);
}

.hero-copy,
.hero-world {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #436a27;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(166, 232, 90, 0.1);
}

.hero h1,
.section-heading h2,
.token-identity h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.45rem, 6.5vw, 7.6rem);
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: var(--cream);
}

.hero h1 strong {
  color: var(--acid);
  font-style: normal;
}

.hero h1 em {
  position: relative;
  color: var(--gold);
  font-style: normal;
  white-space: nowrap;
}

.hero-lede {
  max-width: 640px;
  margin: 32px 0 0;
  color: #d8e0ca;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.66;
}

.hero-caveat {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

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

.hero-world {
  perspective: 1100px;
}

.hero-image-wrap {
  position: relative;
  padding: 9px;
  background: linear-gradient(135deg, rgba(250, 246, 234, 0.18), rgba(166, 232, 90, 0.08));
  border: 1px solid rgba(250, 246, 234, 0.2);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-image-wrap::before {
  position: absolute;
  inset: -14px;
  z-index: -1;
  content: "";
  border: 1px dashed rgba(166, 232, 90, 0.28);
  border-radius: 42px;
}

.hero-image-wrap > img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 25px;
}

.hero-stamp {
  position: absolute;
  right: 22px;
  bottom: -25px;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  color: var(--forest);
  background: var(--gold);
  border: 5px solid var(--forest);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-9deg);
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: -0.05em;
}

.forest-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding: 0 12px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.forest-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.forest-live i {
  width: 6px;
  height: 6px;
  background: var(--acid);
  border-radius: 50%;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  opacity: 0.42;
  filter: blur(0.3px);
  animation: bob 6s ease-in-out infinite;
}

.hero-orbit img {
  width: 100%;
}

.hero-orbit-one {
  top: 15%;
  right: 3%;
  width: 62px;
  transform: rotate(12deg);
}

.hero-orbit-two {
  bottom: 16%;
  left: 45%;
  width: 46px;
  animation-delay: -2.2s;
  transform: rotate(-18deg);
}

@keyframes bob {
  0%,
  100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.signal-row {
  position: absolute;
  right: clamp(22px, 6vw, 96px);
  bottom: 34px;
  left: clamp(22px, 6vw, 96px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.4fr;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.signal-row > div,
.contract-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  color: var(--moss);
  background: rgba(18, 25, 13, 0.76);
  border: 0;
  border-right: 1px solid var(--line);
}

.signal-row > div span,
.contract-chip > span {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.signal-row strong {
  color: var(--cream);
  font-size: 0.74rem;
}

.contract-chip {
  justify-content: space-between;
  color: var(--cream);
  cursor: pointer;
}

.contract-chip code {
  font-family: var(--mono);
  font-size: 0.72rem;
}

.contract-chip b {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.fitzyfier-section {
  position: relative;
  padding: clamp(84px, 10vw, 150px) clamp(22px, 6vw, 96px);
  color: var(--forest);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 198, 76, 0.28), transparent 24rem),
    radial-gradient(circle at 5% 90%, rgba(143, 214, 58, 0.18), transparent 26rem),
    var(--cream);
}

.fitzyfier-section::before,
.fitzyfier-section::after {
  position: absolute;
  top: 0;
  width: 120px;
  height: 32px;
  content: "";
  background: var(--forest);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.fitzyfier-section::before {
  left: 14%;
}

.fitzyfier-section::after {
  right: 18%;
}

.section-heading {
  max-width: 830px;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 7vw, 7.2rem);
}

.section-heading h2 span {
  color: #5c9c2e;
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: #526146;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.tool-heading {
  margin-bottom: 48px;
}

.tool-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.18fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.tool-card,
.process-card {
  min-height: 610px;
  background: #fffdf4;
  border: 1px solid rgba(13, 19, 11, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(26, 48, 16, 0.1);
}

.tool-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2vw, 28px);
}

#upload-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.drop-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 40px 24px;
  background:
    radial-gradient(circle at center, rgba(166, 232, 90, 0.12), transparent 56%),
    #f7f5e8;
  border: 2px dashed rgba(76, 116, 46, 0.42);
  border-radius: 24px;
  cursor: pointer;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.drop-zone:hover,
.drop-zone.is-dragging {
  background: #f0f8df;
  border-color: #69a93c;
  transform: translateY(-2px);
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.drop-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin-bottom: 24px;
  background: var(--gold);
  border: 4px solid var(--forest);
  border-radius: 50%;
  box-shadow: 8px 9px 0 rgba(13, 19, 11, 0.11);
}

.drop-icon img {
  width: 106px;
}

.drop-icon i {
  position: absolute;
  right: -5px;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--forest);
  background: var(--acid);
  border: 3px solid var(--forest);
  border-radius: 50%;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 900;
}

.drop-zone strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.04em;
}

.drop-zone > span:not(.drop-icon) {
  margin-top: 8px;
  color: #607052;
}

.drop-zone small {
  margin-top: 20px;
  color: #77866b;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.selected-file {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  background: #eff4e3;
  border-radius: 16px;
}

.file-type {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--forest);
  background: var(--acid);
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 900;
}

.selected-file strong,
.selected-file span {
  display: block;
}

.selected-file strong {
  overflow: hidden;
  max-width: 290px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file span {
  margin-top: 3px;
  color: #6a795e;
  font-family: var(--mono);
  font-size: 0.66rem;
}

.selected-file button {
  width: 38px;
  height: 38px;
  color: var(--forest);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}

.submit-button {
  width: 100%;
  margin-top: 14px;
}

.submit-button:disabled {
  color: #8b9185;
  background: #d8dbd1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.security-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  color: #607052;
}

.security-note p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.security-note strong {
  display: block;
  color: var(--forest);
}

.shield {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--forest);
  background: var(--acid);
  border-radius: 8px 8px 12px 12px;
  font-size: 0.72rem;
  font-weight: 900;
}

.process-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 50px);
  color: var(--cream);
  background:
    radial-gradient(circle at center, rgba(166, 232, 90, 0.11), transparent 44%),
    linear-gradient(155deg, #1a2411, #0d130b 70%);
  border-color: rgba(157, 177, 135, 0.22);
}

.process-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(157, 177, 135, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 177, 135, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.process-idle,
.process-status,
.process-result,
.process-error {
  position: relative;
  z-index: 1;
  width: 100%;
}

.process-idle {
  display: grid;
  place-items: center;
  text-align: center;
}

.empty-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 270px;
  height: 270px;
  border: 1px dashed rgba(166, 232, 90, 0.3);
  border-radius: 50%;
}

.empty-orbit::before,
.empty-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(157, 177, 135, 0.12);
  border-radius: 50%;
}

.empty-orbit::before {
  inset: 30px;
}

.empty-orbit::after {
  inset: 60px;
}

.empty-orbit img {
  z-index: 1;
  filter: grayscale(0.5) opacity(0.78);
}

.empty-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(166, 232, 90, 0.8);
}

.empty-orbit span:nth-child(1) { top: 20px; left: 76px; }
.empty-orbit span:nth-child(2) { right: 12px; bottom: 82px; width: 6px; height: 6px; }
.empty-orbit span:nth-child(3) { bottom: 16px; left: 55px; width: 5px; height: 5px; }

.process-idle p {
  margin: 26px 0 0;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.process-status {
  max-width: 570px;
  text-align: center;
}

.status-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 0 auto 34px;
}

.status-art img {
  position: relative;
  z-index: 2;
}

.scan-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(166, 232, 90, 0.16);
  border-top-color: var(--acid);
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
}

.scan-ring::after {
  position: absolute;
  inset: 20px;
  content: "";
  border: 1px dashed rgba(243, 198, 76, 0.42);
  border-radius: 50%;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.status-kicker {
  margin: 0 0 9px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-status h3,
.process-result h3,
.process-error h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  letter-spacing: -0.045em;
}

.progress-track {
  appearance: none;
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 32px;
  overflow: hidden;
  color: var(--acid);
  background: rgba(250, 246, 234, 0.1);
  border: 0;
  border-radius: 99px;
}

.progress-track::-webkit-progress-bar {
  background: rgba(250, 246, 234, 0.1);
  border-radius: 99px;
}

.progress-track::-webkit-progress-value {
  background: linear-gradient(90deg, var(--acid-2), var(--gold));
  border-radius: 99px;
  transition: width 500ms ease;
}

.progress-track::-moz-progress-bar {
  background: linear-gradient(90deg, var(--acid-2), var(--gold));
  border-radius: 99px;
}

.stage-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #617151;
  font-family: var(--mono);
  font-size: 0.57rem;
  list-style: none;
  text-transform: uppercase;
}

.stage-list li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.stage-list li.is-active {
  color: var(--gold);
}

.stage-list li.is-done {
  color: var(--acid);
}

.process-result {
  align-self: stretch;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.done-check {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--forest);
  background: var(--acid);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.comparison-grid figure {
  margin: 0;
}

.comparison-grid figcaption {
  margin: 0 0 8px 4px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #080c07;
  border: 1px solid rgba(157, 177, 135, 0.22);
  border-radius: 18px;
}

.result-frame {
  border-color: rgba(166, 232, 90, 0.46);
  box-shadow: inset 0 0 0 2px rgba(166, 232, 90, 0.08);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expiry-note {
  margin: 14px 0 0;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-align: center;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.result-actions .button-ink {
  color: var(--forest);
  background: var(--acid);
}

.result-actions .button-outline {
  color: var(--cream);
  border-color: rgba(250, 246, 234, 0.25);
}

.text-button {
  padding: 12px;
  color: var(--moss);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-error {
  max-width: 500px;
  text-align: center;
}

.error-mark {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  color: var(--forest);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 900;
}

.process-error .button {
  margin-top: 26px;
  color: var(--cream);
  border-color: rgba(250, 246, 234, 0.25);
}

.noscript-note {
  padding: 14px;
  background: var(--coral);
  border-radius: 12px;
}

.meme-ticker {
  overflow: hidden;
  color: var(--forest);
  background: var(--acid);
  border-block: 2px solid var(--forest);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 72px;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  padding: 0 28px;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.ticker-track i {
  color: #4d7e2d;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.thesis-section {
  padding: clamp(90px, 11vw, 160px) clamp(22px, 6vw, 96px);
  background:
    radial-gradient(circle at 20% 20%, rgba(143, 214, 58, 0.08), transparent 24rem),
    var(--forest);
}

.thesis-heading {
  max-width: 1100px;
  margin-bottom: 64px;
}

.thesis-heading h2 {
  font-size: clamp(3.1rem, 7vw, 7.5rem);
}

.thesis-heading h2 span {
  color: var(--gold);
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1440px;
}

.thesis-grid article {
  position: relative;
  min-height: 450px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(31, 43, 20, 0.96), rgba(18, 25, 13, 0.96));
  border: 1px solid var(--line);
  border-radius: 28px;
}

.step-number {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.step-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 220px;
}

.first-art img {
  width: 140px;
  filter: drop-shadow(10px 14px 0 rgba(0, 0, 0, 0.18));
  transform: rotate(-6deg);
}

.crowd-art img {
  position: absolute;
}

.crowd-art img:nth-child(1) {
  z-index: 2;
  width: 130px;
}

.crowd-art img:nth-child(2) {
  left: 16%;
  bottom: 28px;
  width: 86px;
  transform: rotate(-14deg);
}

.crowd-art img:nth-child(3) {
  right: 13%;
  bottom: 40px;
  width: 76px;
  transform: rotate(13deg);
}

.arrow-art span {
  position: absolute;
  color: var(--acid);
  font-family: var(--display);
  font-size: 12rem;
  opacity: 0.14;
}

.arrow-art img {
  z-index: 1;
  width: 120px;
  transform: translate(-12px, 13px) rotate(8deg);
}

.thesis-grid h3 {
  margin: 4px 0 12px;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.thesis-grid p {
  margin: 0;
  color: var(--moss);
  font-size: 0.93rem;
  line-height: 1.65;
}

.thesis-footnote {
  max-width: 880px;
  margin: 42px 0 0;
  color: #6f8160;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.7;
}

.token-section {
  padding: clamp(80px, 10vw, 150px) clamp(22px, 6vw, 96px);
  color: var(--forest);
  background: var(--paper);
}

.token-panel {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 58px);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 198, 76, 0.32), transparent 25rem),
    #fffdf5;
  border: 1px solid rgba(13, 19, 11, 0.14);
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(20, 32, 13, 0.09);
}

.token-identity {
  display: flex;
  gap: 34px;
  align-items: center;
}

.token-avatar {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 190px;
  height: 190px;
  background: var(--gold);
  border: 4px solid var(--forest);
  border-radius: 50%;
  box-shadow: 12px 12px 0 rgba(13, 19, 11, 0.1);
}

.token-avatar img {
  width: 170px;
}

.token-avatar span {
  position: absolute;
  right: -6px;
  bottom: 16px;
  padding: 8px 12px;
  color: var(--forest);
  background: var(--acid);
  border: 3px solid var(--forest);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
}

.token-identity h2 {
  font-size: clamp(2.7rem, 6vw, 6rem);
}

.token-identity h2 span {
  color: #5c9c2e;
}

.token-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.token-tags span {
  padding: 7px 11px;
  color: #4e613f;
  background: #edf4df;
  border: 1px solid #d4e2c5;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contract-panel {
  margin-top: 42px;
  padding: 20px;
  background: #eff4e5;
  border: 1px solid #d4dfc5;
  border-radius: 20px;
}

.contract-panel > span,
.contract-panel small {
  color: #69795e;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.contract-panel > div {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.contract-panel code {
  overflow: hidden;
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1.4vw, 0.86rem);
  text-overflow: ellipsis;
}

.contract-panel button {
  padding: 8px 14px;
  color: var(--forest);
  background: var(--acid);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
}

.token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  padding: 90px 22px;
  overflow: hidden;
  color: var(--forest);
  background:
    radial-gradient(circle at 50% 65%, rgba(243, 198, 76, 0.9), transparent 20rem),
    var(--acid);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image: radial-gradient(var(--forest) 1px, transparent 1px);
  background-size: 18px 18px;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  margin-bottom: -70px;
}

.final-cta h2 {
  font-size: clamp(4rem, 10vw, 10rem);
}

.final-cta h2 span {
  color: var(--forest);
  text-shadow: 4px 4px 0 rgba(250, 246, 234, 0.45);
}

.final-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: -80px;
}

.cta-face {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(8px 10px 0 rgba(13, 19, 11, 0.12));
}

.cta-face-one {
  top: 15%;
  left: 8%;
  width: 120px;
  transform: rotate(-12deg);
}

.cta-face-two {
  right: 10%;
  bottom: 16%;
  width: 88px;
  transform: rotate(14deg);
}

.site-footer {
  padding: 54px clamp(22px, 6vw, 96px) 42px;
  color: var(--moss);
  background: #090d08;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-top > p {
  margin: 0;
  font-size: 0.78rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-self: end;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-contract {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  margin: 34px 0 0;
  padding: 16px 0;
  color: var(--moss);
  background: none;
  border: 0;
  border-block: 1px solid rgba(157, 177, 135, 0.16);
  cursor: pointer;
  text-align: left;
}

.footer-contract span,
.footer-contract b {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.footer-contract code {
  overflow: hidden;
  flex: 1;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-overflow: ellipsis;
}

.disclaimer {
  max-width: 1100px;
  margin: 24px 0 0;
  color: #56614f;
  font-size: 0.66rem;
  line-height: 1.65;
}

[hidden] {
  display: none !important;
}

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

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 82px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-world {
    max-width: 900px;
  }

  .signal-row {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    grid-template-columns: repeat(2, 1fr);
    margin-top: -62px;
  }

  .signal-row > div:nth-child(2) {
    border-right: 0;
  }

  .tool-shell {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .process-card {
    min-height: 560px;
  }

  .thesis-grid {
    grid-template-columns: 1fr;
  }

  .thesis-grid article {
    display: grid;
    grid-template-columns: 80px 240px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 270px;
  }

  .step-number {
    grid-row: 1 / 3;
  }

  .step-art {
    grid-row: 1 / 3;
    height: 210px;
  }

  .thesis-grid h3 {
    align-self: end;
  }

  .thesis-grid p {
    align-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .cto-pill {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .hero {
    gap: 52px;
    padding: 58px 18px 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-image-wrap {
    padding: 6px;
    border-radius: 24px;
    transform: none;
  }

  .hero-image-wrap > img {
    min-height: 220px;
    object-position: 54% center;
    border-radius: 18px;
  }

  .hero-stamp {
    right: 10px;
    bottom: -30px;
    width: 94px;
    height: 94px;
  }

  .forest-caption {
    display: grid;
    margin-top: 36px;
  }

  .signal-row {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .signal-row > div,
  .contract-chip {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contract-chip {
    border-bottom: 0;
  }

  .hero-orbit {
    display: none;
  }

  .fitzyfier-section,
  .thesis-section,
  .token-section {
    padding-inline: 16px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 16vw, 5.1rem);
  }

  .tool-card,
  .process-card {
    min-height: auto;
    border-radius: 24px;
  }

  .drop-zone {
    min-height: 370px;
  }

  .process-card {
    min-height: 520px;
    padding: 24px 16px;
  }

  .empty-orbit {
    width: 230px;
    height: 230px;
  }

  .stage-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
    text-align: left;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .media-frame {
    max-height: 330px;
  }

  .result-actions {
    display: grid;
  }

  .result-actions .button,
  .result-actions .text-button {
    width: 100%;
  }

  .thesis-grid article {
    display: block;
    min-height: 420px;
  }

  .step-art {
    height: 220px;
  }

  .token-panel {
    border-radius: 26px;
  }

  .token-identity {
    display: block;
  }

  .token-avatar {
    width: 146px;
    height: 146px;
    margin-bottom: 32px;
  }

  .token-avatar img {
    width: 132px;
  }

  .token-identity h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .contract-panel > div {
    align-items: flex-start;
  }

  .contract-panel code {
    max-width: 75%;
    white-space: normal;
    word-break: break-all;
  }

  .token-actions {
    display: grid;
  }

  .final-cta {
    min-height: 560px;
  }

  .final-cta h2 {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
  }

  .final-cta .eyebrow,
  .final-cta > div {
    margin: 0;
  }

  .final-cta > div {
    display: grid;
    width: 100%;
    max-width: 380px;
  }

  .cta-face-one {
    top: 6%;
    left: -20px;
    width: 82px;
  }

  .cta-face-two {
    right: -12px;
    bottom: 7%;
    width: 70px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-links {
    justify-self: start;
  }

  .footer-contract code {
    font-size: 0.55rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
