:root {
  --paper: #fff9f2;
  --paper-deep: #f4eadf;
  --surface: #ffffff;
  --ink: #17201f;
  --muted: #66706d;
  --line: #e9e3da;
  --coral: #ff5a2a;
  --coral-dark: #d94018;
  --teal: #16c7c1;
  --teal-deep: #087f7b;
  --yellow: #ffc857;
  --green: #168a5b;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(62, 43, 25, 0.12);
  --shell: min(1440px, calc(100% - 64px));
  --mx: 50vw;
  --my: 30vh;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 9%, rgba(255, 200, 87, 0.13), transparent 26rem),
    radial-gradient(circle at 88% 20%, rgba(22, 199, 193, 0.09), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(23, 32, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 31, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  left: calc(var(--mx) - 17rem);
  top: calc(var(--my) - 17rem);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.18;
  filter: blur(24px);
  background: radial-gradient(circle, rgba(255, 90, 42, 0.52), rgba(22, 199, 193, 0.17) 44%, transparent 72%);
}

.announcement {
  min-height: 42px;
  padding: 8px max(20px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.announcement p span {
  color: var(--yellow);
}

.announcement i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

.announcement a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.announcement a:hover {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 242, 0.86);
  box-shadow: 0 1px 0 rgba(23, 32, 31, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: "Arial Black", Inter, ui-sans-serif, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.brand img {
  width: 42px;
  height: 42px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.brand > span > span {
  color: var(--coral);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding-block: 13px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  position: relative;
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  min-height: 44px;
  padding: 11px 18px;
  color: #fff;
  background: var(--ink);
}

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

.header-cta:hover {
  box-shadow: 0 10px 30px rgba(23, 32, 31, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 128px));
  margin-bottom: 26px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: clamp(24px, 3vw, 44px);
  background: #efe3d4;
  box-shadow: 0 30px 100px rgba(60, 42, 24, 0.16);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.98) 0%, rgba(255, 249, 242, 0.92) 28%, rgba(255, 249, 242, 0.42) 52%, rgba(255, 249, 242, 0) 73%),
    linear-gradient(0deg, rgba(23, 32, 31, 0.12), transparent 22%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.012);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero:hover .hero-media img {
  transform: scale(1.025);
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: -3px;
  right: 0;
  left: 48%;
  height: 3px;
  opacity: 0.75;
  background: linear-gradient(90deg, transparent, var(--teal), #fff, var(--coral), transparent);
  box-shadow: 0 8px 18px rgba(22, 199, 193, 0.45);
  animation: scan 6s ease-in-out infinite;
}

@keyframes scan {
  0%, 12% { transform: translateY(40px); opacity: 0; }
  22%, 78% { opacity: 0.72; }
  88%, 100% { transform: translateY(680px); opacity: 0; }
}

.hero-content {
  width: min(710px, 58%);
  padding: clamp(54px, 7vw, 110px);
  padding-right: 20px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: "Arial Black", Inter, ui-sans-serif, sans-serif;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h1 {
  max-width: 840px;
  font-size: clamp(56px, 6.8vw, 112px);
}

h1 em,
h2 em {
  color: var(--coral);
  font-style: normal;
  text-shadow: 2px 2px 0 rgba(255, 200, 87, 0.72), 4px 4px 0 rgba(22, 199, 193, 0.2);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: #46504e;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-copy strong {
  color: var(--ink);
}

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

.button-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(255, 90, 42, 0.28);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 38px rgba(255, 90, 42, 0.34);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(23, 32, 31, 0.19);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(23, 32, 31, 0.18);
}

.button-dark:hover {
  background: #2c3a38;
  box-shadow: 0 20px 42px rgba(23, 32, 31, 0.22);
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-proof {
  max-width: 650px;
  margin: 44px 0 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  border-top: 1px solid rgba(23, 32, 31, 0.14);
}

.hero-proof li {
  min-width: 0;
}

.hero-proof strong,
.console-stats strong {
  display: block;
  font-family: "Arial Black", Inter, ui-sans-serif, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-proof span,
.console-stats span {
  margin-top: 6px;
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-float {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 16px 42px rgba(23, 32, 31, 0.15);
  backdrop-filter: blur(14px);
  animation: float 4.2s ease-in-out infinite;
}

.hero-float span,
.hero-float b {
  display: block;
}

.hero-float span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-float b {
  margin-top: 3px;
  font-size: 14px;
}

.hero-float b i {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 138, 91, 0.12);
}

.float-one {
  top: 12%;
  right: 4%;
}

.float-two {
  right: 18%;
  bottom: 7%;
  animation-delay: -2.1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

.filament-strip {
  width: 100%;
  padding-block: 18px;
  overflow: hidden;
  color: #fff;
  background: var(--coral);
  transform: rotate(-0.45deg) scale(1.01);
  border-block: 1px solid rgba(23, 32, 31, 0.1);
}

.filament-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 32s linear infinite;
}

.filament-strip:hover .filament-track {
  animation-play-state: paused;
}

.filament-track span {
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(15px, 1.35vw, 20px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filament-track i {
  color: var(--yellow);
  font-style: normal;
}

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

.section {
  padding-block: clamp(86px, 10vw, 156px);
}

.section-heading {
  margin-bottom: clamp(38px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 64px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.story-copy h2,
.final-inner h2 {
  font-size: clamp(50px, 6vw, 96px);
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card::after {
  position: absolute;
  right: -52px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  content: "";
  border: 24px solid rgba(255, 90, 42, 0.06);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(255, 90, 42, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.feature-card:hover::after {
  transform: scale(1.12) rotate(14deg);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #b3aaa0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 72px;
  display: grid;
  place-items: center;
  color: var(--coral);
  border-radius: 18px;
  background: rgba(255, 90, 42, 0.09);
}

.feature-icon svg,
.eco-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card:nth-child(2) .feature-icon {
  color: var(--teal-deep);
  background: rgba(22, 199, 193, 0.11);
}

.feature-card:nth-child(3) .feature-icon {
  color: #9a6b00;
  background: rgba(255, 200, 87, 0.2);
}

.feature-card h3,
.shop-copy h3,
.eco-card h3,
.process-list h3 {
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.feature-card h3 {
  font-size: 24px;
}

.feature-card p {
  max-width: 340px;
  margin: 15px 0 0;
  color: var(--muted);
}

.shop-section {
  position: relative;
  overflow: hidden;
  background: #f2e8dd;
}

.shop-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.52;
  background-image: radial-gradient(circle at center, rgba(23, 32, 31, 0.075) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.shop-section .shell {
  position: relative;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  perspective: 1200px;
}

.shop-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 31, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(45, 31, 20, 0.1);
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.shop-card:hover {
  box-shadow: 0 32px 80px rgba(45, 31, 20, 0.18);
}

.shop-art {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  isolation: isolate;
}

.art-coral {
  background: linear-gradient(145deg, #ffb288, var(--coral) 52%, #d83d19);
}

.art-teal {
  background: linear-gradient(145deg, #b6f4e9, var(--teal) 52%, #087f7b);
}

.art-grid,
.collab-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: perspective(550px) rotateX(54deg) scale(1.5) translateY(18%);
  transform-origin: center bottom;
  transition: transform 0.55s ease;
}

.shop-card:hover .art-grid {
  transform: perspective(550px) rotateX(63deg) scale(1.7) translateY(25%);
}

.art-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: transform 0.5s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.shape-one {
  width: 190px;
  height: 190px;
  border-radius: 38% 62% 54% 46% / 46% 38% 62% 54%;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: inset -26px -28px 50px rgba(23, 32, 31, 0.14), 0 34px 48px rgba(23, 32, 31, 0.21);
  transform: translate(-50%, -48%) rotate(18deg);
}

.shape-two {
  width: 92px;
  height: 122px;
  border-radius: 48px 48px 25px 25px;
  background: rgba(255, 200, 87, 0.96);
  box-shadow: inset -15px -18px 25px rgba(23, 32, 31, 0.12), 0 22px 35px rgba(23, 32, 31, 0.16);
  transform: translate(52px, -42px) rotate(-22deg);
}

.art-teal .shape-two {
  background: rgba(255, 90, 42, 0.95);
}

.shop-card:hover .shape-one {
  transform: translate(-50%, -52%) rotate(23deg) scale(1.035);
}

.shop-card:hover .shape-two {
  transform: translate(58px, -48px) rotate(-17deg);
}

.art-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.ring-one {
  width: 290px;
  height: 126px;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.ring-two {
  width: 180px;
  height: 320px;
  transform: translate(-50%, -50%) rotate(30deg);
}

.art-label {
  position: absolute;
  top: 24px;
  left: 26px;
  padding: 8px 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(23, 32, 31, 0.17);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.shop-copy {
  padding: 32px 34px 36px;
}

.shop-kicker {
  color: var(--coral-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-card-teal .shop-kicker {
  color: var(--teal-deep);
}

.shop-copy h3 {
  margin-top: 10px;
  font-size: clamp(32px, 3.4vw, 52px);
}

.shop-copy p {
  max-width: 560px;
  margin: 16px 0 25px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 850;
}

.text-link b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 0.25s ease, background 0.25s ease;
}

.shop-card:hover .text-link b {
  background: var(--coral);
  transform: translate(3px, -3px);
}

.shop-card-teal:hover .text-link b {
  background: var(--teal-deep);
}

.market-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.eco-card {
  position: relative;
  min-height: 340px;
  padding: clamp(26px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  transition: background 0.25s ease, color 0.25s ease;
}

.eco-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.eco-card:hover {
  background: #fff;
}

.eco-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.eco-download::after {
  background: var(--teal);
}

.eco-collab::after {
  background: var(--yellow);
}

.eco-mail::after {
  background: var(--ink);
}

.eco-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eco-top b {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eco-top i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.eco-card:hover .eco-top i {
  color: #fff;
  background: var(--ink);
  transform: translate(3px, -3px);
}

.eco-icon {
  width: 58px;
  height: 58px;
  margin: 38px 0 24px;
  display: grid;
  place-items: center;
  color: var(--coral);
  border-radius: 18px;
  background: rgba(255, 90, 42, 0.09);
}

.eco-download .eco-icon {
  color: var(--teal-deep);
  background: rgba(22, 199, 193, 0.1);
}

.eco-collab .eco-icon {
  color: #926200;
  background: rgba(255, 200, 87, 0.2);
}

.eco-mail .eco-icon {
  color: var(--ink);
  background: rgba(23, 32, 31, 0.08);
}

.eco-card h3 {
  font-size: clamp(28px, 2.7vw, 42px);
}

.eco-card p {
  max-width: 520px;
  margin: 14px 0 28px;
  color: var(--muted);
}

.eco-url {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.story-section::after {
  position: absolute;
  top: -30%;
  right: -14%;
  width: 760px;
  height: 760px;
  content: "";
  border: 120px solid rgba(22, 199, 193, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.story-copy h2 em {
  color: var(--teal);
  text-shadow: 2px 2px 0 rgba(255, 200, 87, 0.55), 4px 4px 0 rgba(255, 90, 42, 0.2);
}

.story-lead {
  max-width: 600px;
  margin: 34px 0 16px;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 750;
  line-height: 1.45;
}

.story-copy > p:not(.eyebrow):not(.story-lead) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.story-copy .button {
  margin-top: 20px;
  color: var(--ink);
  background: #fff;
}

.reel-console {
  position: relative;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: #0d1212;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
}

.console-top {
  min-height: 42px;
  padding: 0 7px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.console-top span i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.console-screen {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 90, 42, 0.3), transparent 30%),
    linear-gradient(145deg, #151f1e, #0b0f0f);
}

.console-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}

.console-core {
  position: relative;
  z-index: 3;
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  color: #fff;
  border: 18px solid var(--coral);
  border-top-color: var(--yellow);
  border-right-color: var(--teal);
  border-radius: 36% 64% 56% 44% / 45% 40% 60% 55%;
  box-shadow: 0 0 70px rgba(255, 90, 42, 0.35);
  transform: rotate(-9deg);
  animation: morph 7s ease-in-out infinite;
}

.console-core span,
.console-core small {
  display: block;
  text-align: center;
  transform: rotate(9deg);
}

.console-core span {
  font-family: "Arial Black", Inter, sans-serif;
  font-size: 45px;
  line-height: 0.9;
}

.console-core small {
  margin-top: 7px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

@keyframes morph {
  0%, 100% { border-radius: 36% 64% 56% 44% / 45% 40% 60% 55%; }
  50% { border-radius: 60% 40% 37% 63% / 58% 63% 37% 42%; }
}

.console-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.orbit-one {
  width: 310px;
  height: 122px;
  animation: orbit 12s linear infinite;
}

.orbit-two {
  width: 180px;
  height: 330px;
  animation: orbit 16s linear infinite reverse;
}

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

.console-tag {
  position: absolute;
  z-index: 4;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 14, 14, 0.72);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.tag-a { top: 22%; left: 10%; }
.tag-b { top: 17%; right: 11%; }
.tag-c { right: 15%; bottom: 18%; }

.console-stats {
  padding: 22px 12px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.console-stats strong {
  color: #fff;
}

.console-stats span {
  color: rgba(255, 255, 255, 0.5);
}

.process-section {
  overflow: hidden;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 150px;
  padding: 28px 6px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s ease, background 0.25s ease;
}

.process-list li:hover {
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.process-list li > span {
  color: var(--coral-dark);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 850;
}

.process-list h3 {
  font-size: clamp(30px, 3.3vw, 54px);
}

.process-list p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.process-list li > i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
  font-style: normal;
}

.collab-card {
  position: relative;
  min-height: 590px;
  padding: clamp(40px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(22, 199, 193, 0.3), transparent 25rem),
    linear-gradient(135deg, #1e2927, #0c1111);
  box-shadow: 0 34px 90px rgba(23, 32, 31, 0.22);
}

.collab-grid {
  z-index: 0;
  opacity: 0.09;
  transform: perspective(600px) rotateX(58deg) scale(1.5) translateY(25%);
}

.collab-copy {
  position: relative;
  z-index: 2;
}

.eyebrow.light {
  color: var(--teal);
}

.collab-copy h2 {
  max-width: 950px;
  font-size: clamp(48px, 5.7vw, 88px);
}

.collab-copy h2 em {
  color: var(--yellow);
  text-shadow: 2px 2px 0 rgba(255, 90, 42, 0.5);
}

.collab-copy > p:not(.eyebrow) {
  max-width: 750px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.nozzle-art {
  position: relative;
  z-index: 2;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nozzle-head {
  width: 130px;
  height: 110px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(135deg, #53615e, #202927);
  box-shadow: inset -18px -18px 30px rgba(0, 0, 0, 0.26), 0 26px 50px rgba(0, 0, 0, 0.28);
}

.nozzle-head::before {
  width: 48px;
  height: 48px;
  margin: 28px auto 0;
  display: block;
  content: "";
  border: 5px double rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #111817;
}

.nozzle-tip {
  width: 42px;
  height: 54px;
  background: linear-gradient(90deg, #b77900, var(--yellow), #a36100);
  clip-path: polygon(18% 0, 82% 0, 100% 58%, 63% 100%, 37% 100%, 0 58%);
}

.print-layer {
  height: 16px;
  margin-top: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--coral-dark), var(--coral), #ff9a79);
  box-shadow: 0 8px 20px rgba(255, 90, 42, 0.18);
  animation: layer-build 3.2s ease-in-out infinite alternate;
}

.layer-a { width: 36px; }
.layer-b { width: 68px; animation-delay: -0.4s; }
.layer-c { width: 100px; animation-delay: -0.8s; }
.layer-d { width: 132px; animation-delay: -1.2s; }

@keyframes layer-build {
  from { transform: scaleX(0.8); opacity: 0.65; }
  to { transform: scaleX(1.06); opacity: 1; }
}

.final-cta {
  padding-block: clamp(90px, 12vw, 180px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 200, 87, 0.3), transparent 24rem),
    var(--paper-deep);
}

.final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-inner h2 {
  max-width: 900px;
}

.final-inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 72px 0 28px;
  color: #fff;
  background: #0e1413;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 0.9fr);
  gap: 70px;
}

.brand-footer {
  color: #fff;
}

.footer-brand > p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.57);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  margin: 10px 0;
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(calc(100% - 44px), 1440px);
  }

  .header-inner {
    gap: 20px;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero-content {
    width: 64%;
    padding: 64px;
  }

  .float-one {
    display: none;
  }

  .float-two {
    right: 5%;
  }

  .story-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(410px, 1.15fr);
    gap: 54px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(calc(100% - 36px), 1440px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: none;
  }

  .js .menu-toggle {
    grid-column: 3;
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    padding-bottom: 14px;
    display: grid;
    justify-content: stretch;
    gap: 3px;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% - 3px);
    right: 18px;
    left: 18px;
    padding: 18px;
    display: grid;
    justify-content: stretch;
    gap: 3px;
    visibility: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--paper);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: 70%;
    padding: 54px;
  }

  h1 {
    font-size: clamp(56px, 8.5vw, 82px);
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 52px;
  }

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

  .story-copy {
    max-width: 760px;
  }

  .collab-card {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 92px;
  }

  .cursor-glow {
    display: none;
  }

  .announcement {
    min-height: 38px;
    justify-content: center;
    font-size: 11px;
    text-align: center;
  }

  .announcement p {
    gap: 8px;
  }

  .announcement p i,
  .announcement p span:not(:first-child),
  .announcement a {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .hero-media {
    position: relative;
    grid-row: 2;
    min-height: 410px;
    overflow: hidden;
  }

  .hero-media::before {
    background: linear-gradient(180deg, var(--paper) 0%, rgba(255, 249, 242, 0) 28%);
  }

  .hero-media img {
    object-position: 66% center;
  }

  .scan-line {
    left: 0;
  }

  .hero-content {
    width: 100%;
    padding: 48px 26px 34px;
    grid-row: 1;
    background: var(--paper);
  }

  h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .hero-proof strong {
    font-size: 21px;
  }

  .hero-proof span {
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-float {
    z-index: 3;
    min-width: 118px;
  }

  .float-two {
    right: 14px;
    bottom: 18px;
  }

  .filament-strip {
    transform: rotate(-0.6deg) scale(1.02);
  }

  .filament-track {
    animation: none;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .story-copy h2,
  .final-inner h2,
  .collab-copy h2 {
    font-size: clamp(46px, 13vw, 70px);
  }

  .section-heading > p {
    font-size: 16px;
  }

  .feature-card {
    padding: 26px;
  }

  .shop-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .shop-art {
    min-height: 320px;
  }

  .shape-one {
    width: 160px;
    height: 160px;
  }

  .ring-one {
    width: 250px;
  }

  .shop-copy {
    padding: 26px;
  }

  .shop-copy h3 {
    font-size: 36px;
  }

  .eco-card {
    min-height: 320px;
  }

  .story-grid {
    gap: 44px;
  }

  .reel-console {
    padding: 11px;
  }

  .console-top b {
    display: none;
  }

  .console-screen {
    min-height: 330px;
  }

  .console-stats {
    gap: 8px;
  }

  .console-stats strong {
    font-size: 21px;
  }

  .process-list li {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
  }

  .process-list li > i {
    display: none;
  }

  .process-list h3 {
    font-size: 32px;
  }

  .collab-card {
    min-height: 0;
    padding: 44px 25px 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .collab-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .nozzle-art {
    min-height: 300px;
  }

  .final-actions {
    width: min(100%, 420px);
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand > span {
    max-width: 122px;
  }

  .hero-content {
    padding-inline: 20px;
  }

  .hero-media {
    min-height: 350px;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .console-tag {
    display: none;
  }

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

@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;
  }

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

  .cursor-glow,
  .scan-line {
    display: none;
  }
}
