:root {
  --ink: #17120f;
  --ink-soft: #4b4038;
  --paper: #f7efe1;
  --paper-2: #fff8ec;
  --paper-3: #efe1cb;
  --red: #de4f32;
  --red-dark: #b83220;
  --green: #286c55;
  --blue: #245d8f;
  --yellow: #f2b84b;
  --pink: #ef9ea7;
  --violet: #6e57a8;
  --line: rgba(23, 18, 15, 0.14);
  --line-strong: rgba(23, 18, 15, 0.24);
  --shadow: 0 28px 70px rgba(61, 39, 24, 0.16);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --max: 1220px;
  --display: "Fraunces", Georgia, serif;
  --sans: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behaviour: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 158, 167, 0.38), transparent 25rem),
    radial-gradient(circle at 88% 6%, rgba(242, 184, 75, 0.34), transparent 26rem),
    linear-gradient(180deg, var(--paper), #fffaf1 46%, #f0dfc6);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23,18,15,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,18,15,0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black 0 45%, transparent 82%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.cursor-dot {
  position: fixed;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border-radius: 999px;
  background: var(--red);
  opacity: 0.22;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: width 150ms ease, height 150ms ease, opacity 150ms ease;
  mix-blend-mode: multiply;
}

.cursor-dot.is-big {
  width: 64px;
  height: 64px;
  opacity: 0.16;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue));
  z-index: 90;
}

.container {
  width: min(calc(100% - 38px), var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(247, 239, 225, 0.76);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(23,18,15,0.1);
}

.nav-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.logo-brand {
  line-height: 0;
  max-width: 100%;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 8px 18px rgba(23,18,15,0.10));
}

.footer-logo {
  width: 46px;
  height: 46px;
  filter: none;
}

.mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper-2);
  background: var(--ink);
  border-radius: 14px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: -0.08em;
  transform: rotate(-3deg);
  box-shadow: 0 16px 34px rgba(23,18,15,0.18);
}

.nav-links {
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(23,18,15,0.1);
  border-radius: 999px;
  background: rgba(255,248,236,0.64);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: var(--ink);
  color: var(--paper-2);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper-2);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  box-shadow: 0 13px 0 rgba(23,18,15,0.13);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 0 rgba(23,18,15,0.13);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 7px 0 rgba(23,18,15,0.13);
}

.btn.alt {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.btn.alt:hover {
  background: var(--paper-2);
}

.btn.red {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.btn .ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 600ms ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 64px 0 54px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.tiny-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255,248,236,0.72);
  box-shadow: 7px 7px 0 rgba(23,18,15,0.12);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  transform: rotate(-1deg);
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  background: rgba(255,248,236,0.88);
  box-shadow: 8px 10px 0 rgba(23,18,15,0.1);
  margin-bottom: 24px;
  max-width: min(480px, 100%);
}

.hero-logo img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-logo-text {
  color: var(--ink-soft);
  line-height: 1.4;
  font-size: 0.98rem;
}

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

.tiny-label span {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 999px;
  animation: pulse 1600ms ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.58;
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  max-width: 840px;
  font-size: clamp(4.2rem, 10vw, 9.6rem);
  line-height: 0.78;
  letter-spacing: -0.105em;
  font-family: var(--display);
  font-weight: 850;
}

.swap-word {
  display: inline-grid;
  min-width: 0.1em;
  color: var(--red);
  font-variation-settings: "SOFT" 80, "WONK" 1;
}

.swap-word span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.35em) rotate(3deg);
  animation: wordSwap 9s infinite;
}

.swap-word span:nth-child(2) {
  animation-delay: 3s;
  color: var(--green);
}

.swap-word span:nth-child(3) {
  animation-delay: 6s;
  color: var(--blue);
}

@keyframes wordSwap {
  0%, 7% {
    opacity: 0;
    transform: translateY(0.35em) rotate(3deg);
  }
  12%, 29% {
    opacity: 1;
    transform: translateY(0) rotate(-1deg);
  }
  36%, 100% {
    opacity: 0;
    transform: translateY(-0.35em) rotate(-3deg);
  }
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  line-height: 1.62;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(23,18,15,0.13);
  border-radius: 999px;
  background: rgba(255,248,236,0.7);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.proof-pill i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(40,108,85,0.13);
  color: var(--green);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-board {
  position: relative;
  min-height: 620px;
  perspective: 1400px;
}

.language-map {
  position: absolute;
  inset: 5% 0 0 0;
  border: 1.5px solid var(--ink);
  border-radius: 42px;
  background:
    radial-gradient(circle at 16% 22%, rgba(242,184,75,0.28), transparent 12rem),
    radial-gradient(circle at 80% 22%, rgba(111,87,168,0.18), transparent 12rem),
    radial-gradient(circle at 70% 88%, rgba(40,108,85,0.22), transparent 12rem),
    var(--paper-2);
  box-shadow: 16px 18px 0 rgba(23,18,15,0.1), var(--shadow);
  transform: rotateY(-7deg) rotateX(4deg) rotate(-1deg);
  overflow: hidden;
}

.language-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,18,15,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,18,15,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-dasharray: 9 10;
  opacity: 0.33;
  animation: dashMove 18s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -190;
  }
}

.pin {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 800;
  color: var(--paper-2);
  box-shadow: 8px 8px 0 rgba(23,18,15,0.13);
  animation: bob 5s ease-in-out infinite;
}

.pin.one {
  left: 13%;
  top: 18%;
  background: var(--red);
}

.pin.two {
  right: 16%;
  top: 23%;
  background: var(--blue);
  animation-delay: -1.4s;
}

.pin.three {
  left: 28%;
  bottom: 23%;
  background: var(--green);
  animation-delay: -2.6s;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

.chat-ticket {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 5%;
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 10px 12px 0 rgba(23,18,15,0.1);
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(23,18,15,0.26);
}

.ticket-top strong {
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.ticket-top span {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.bubble-stack {
  display: grid;
  gap: 10px;
}

.bubble {
  width: fit-content;
  max-width: 90%;
  padding: 11px 13px;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: white;
  box-shadow: 5px 5px 0 rgba(23,18,15,0.1);
  line-height: 1.35;
  font-weight: 650;
  font-size: 0.96rem;
}

.bubble:nth-child(2) {
  margin-left: auto;
  background: var(--ink);
  color: var(--paper-2);
}

.bubble:nth-child(3) {
  background: #fff0cc;
}

.stamp {
  position: absolute;
  right: 6%;
  top: 9%;
  width: 132px;
  height: 132px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-family: var(--mono);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.76rem;
  line-height: 1.24;
  transform: rotate(11deg);
  opacity: 0.9;
  animation: stampPop 4.5s ease-in-out infinite;
}

@keyframes stampPop {
  0%, 100% {
    transform: rotate(11deg) scale(1);
  }
  50% {
    transform: rotate(7deg) scale(1.06);
  }
}

.marquee-wrap {
  overflow: hidden;
  border-block: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper-2);
}

.marquee {
  display: flex;
  width: fit-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 14px;
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.marquee i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  display: inline-block;
}

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

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 13px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.8vw, 6.1rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  font-weight: 820;
}

.section-head p,
.wide-copy {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.1rem;
}

.manifesto {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border: 1.5px solid var(--ink);
  border-radius: 42px;
  background: var(--paper-2);
  box-shadow: 16px 18px 0 rgba(23,18,15,0.1);
  overflow: hidden;
}

.manifesto::before {
  content: "real voices";
  position: absolute;
  right: -16px;
  bottom: -36px;
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 15rem);
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(222,79,50,0.08);
  white-space: nowrap;
  pointer-events: none;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: end;
}

.manifesto h2 {
  margin-bottom: 0;
}

.manifesto p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: 1.12rem;
}

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

.step-card {
  position: relative;
  min-height: 360px;
  padding: 26px;
  border: 1.5px solid var(--ink);
  border-radius: 30px;
  background: var(--paper-2);
  box-shadow: 10px 12px 0 rgba(23,18,15,0.1);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.step-card:hover {
  transform: translateY(-7px) rotate(-1deg);
  box-shadow: 14px 18px 0 rgba(23,18,15,0.1);
}

.step-card:nth-child(2):hover {
  transform: translateY(-7px) rotate(1deg);
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.8;
  color: rgba(23,18,15,0.07);
  font-weight: 900;
}

.step-card .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 800;
  margin-bottom: 84px;
  box-shadow: 7px 7px 0 rgba(23,18,15,0.1);
}

.step-card:nth-child(2) .badge {
  background: var(--pink);
}

.step-card:nth-child(3) .badge {
  background: #96c5a8;
}

.step-card h3 {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 12px;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  font-size: 1.02rem;
}

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

.tile {
  position: relative;
  min-height: 250px;
  padding: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  background: var(--paper-2);
  box-shadow: 8px 9px 0 rgba(23,18,15,0.09);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 130ms ease, box-shadow 180ms ease;
}

.tile:hover {
  box-shadow: 12px 14px 0 rgba(23,18,15,0.1);
}

.tile::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -68px;
  bottom: -70px;
  background: rgba(242,184,75,0.2);
  z-index: 0;
}

.tile:nth-child(2)::after,
.tile:nth-child(6)::after {
  background: rgba(222,79,50,0.16);
}

.tile:nth-child(3)::after,
.tile:nth-child(7)::after {
  background: rgba(40,108,85,0.16);
}

.tile:nth-child(4)::after,
.tile:nth-child(8)::after {
  background: rgba(36,93,143,0.14);
}

.tile-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 44px;
  background: white;
  font-size: 1.3rem;
  box-shadow: 6px 6px 0 rgba(23,18,15,0.09);
  transform: translateZ(30px);
}

.tile h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 1.22rem;
  letter-spacing: -0.045em;
  transform: translateZ(36px);
}

.tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  transform: translateZ(24px);
}

.exchange-wall {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.wall-copy {
  padding: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 36px;
  background: var(--ink);
  color: var(--paper-2);
  box-shadow: 12px 14px 0 rgba(23,18,15,0.13);
}

.wall-copy h2 {
  color: var(--paper-2);
}

.wall-copy p {
  color: rgba(255,248,236,0.76);
  line-height: 1.68;
  font-size: 1.07rem;
}

.wall-copy .btn {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.profile-wall {
  display: grid;
  gap: 14px;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  background: var(--paper-2);
  box-shadow: 8px 9px 0 rgba(23,18,15,0.09);
  transition: transform 200ms ease;
}

.profile-card:hover {
  transform: translateX(-8px) rotate(-0.7deg);
}

.avatar {
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--mono);
  font-weight: 800;
  box-shadow: 6px 6px 0 rgba(23,18,15,0.1);
}

.profile-card:nth-child(1) .avatar {
  background: var(--red);
}

.profile-card:nth-child(2) .avatar {
  background: var(--green);
}

.profile-card:nth-child(3) .avatar {
  background: var(--blue);
}

.profile-card:nth-child(4) .avatar {
  background: var(--violet);
}

.profile-main strong {
  display: block;
  letter-spacing: -0.035em;
  font-size: 1.1rem;
}

.profile-main small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-weight: 650;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.tag-row span {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(23,18,15,0.13);
  background: rgba(255,255,255,0.58);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.value-section {
  position: relative;
  overflow: hidden;
}

.value-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-card {
  padding: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 34px;
  background: var(--paper-2);
  box-shadow: 10px 12px 0 rgba(23,18,15,0.1);
}

.value-card.good {
  background: #ffe7b3;
}

.value-card h3 {
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.list {
  display: grid;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  line-height: 1.42;
  font-weight: 650;
}

.list i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1.3px solid var(--ink);
  border-radius: 50%;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--ink);
  background: white;
  margin-top: 1px;
}

.list.good i {
  background: var(--green);
  color: white;
}

.quote-panel {
  padding: clamp(30px, 5vw, 66px);
  border-radius: 44px;
  border: 1.5px solid var(--ink);
  background: var(--red);
  color: white;
  text-align: center;
  box-shadow: 16px 18px 0 rgba(23,18,15,0.12);
  position: relative;
  overflow: hidden;
}

.quote-panel::before,
.quote-panel::after {
  content: "\201C";
  position: absolute;
  font-family: var(--display);
  font-size: 20rem;
  line-height: 0.6;
  opacity: 0.12;
}

.quote-panel::before {
  left: 20px;
  top: 40px;
}

.quote-panel::after {
  content: "\201D";
  right: 20px;
  bottom: -30px;
}

.quote-panel p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.2vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 820;
}

.quote-panel span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.78);
  font-weight: 750;
}

.waitlist {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1.5px solid var(--ink);
  border-radius: 44px;
  background:
    radial-gradient(circle at 12% 16%, rgba(242,184,75,0.34), transparent 20rem),
    radial-gradient(circle at 92% 20%, rgba(239,158,167,0.32), transparent 22rem),
    var(--paper-2);
  box-shadow: 16px 18px 0 rgba(23,18,15,0.1);
  overflow: hidden;
}

.waitlist::before {
  content: "join the first circle";
  position: absolute;
  left: 22px;
  bottom: -18px;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 13rem);
  line-height: 0.72;
  letter-spacing: -0.1em;
  color: rgba(23,18,15,0.06);
  white-space: nowrap;
}

.waitlist-copy,
.form-card {
  position: relative;
  z-index: 1;
}

.form-card {
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 30px;
  background: rgba(255,250,241,0.82);
  box-shadow: 10px 12px 0 rgba(23,18,15,0.1);
  backdrop-filter: blur(10px);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

label {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input,
select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  outline: none;
  box-shadow: 5px 5px 0 rgba(23,18,15,0.08);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

input:focus,
select:focus {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 rgba(23,18,15,0.1);
}

.form-card .btn {
  width: 100%;
  margin-top: 5px;
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.48;
}

.success {
  display: none;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: #dff0db;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 5px 5px 0 rgba(23,18,15,0.08);
}

.faq {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 13px;
}

.faq-item {
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  background: var(--paper-2);
  box-shadow: 8px 9px 0 rgba(23,18,15,0.08);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 1.12rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-family: var(--mono);
  color: var(--red);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "\00D7";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 21px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.footer {
  padding: 46px 0;
  border-top: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper-2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}

.footer .mark {
  background: var(--paper-2);
  color: var(--ink);
}

.footer .logo-brand {
  display: inline-flex;
  align-items: center;
}

.footer small {
  color: rgba(255,248,236,0.68);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) rotate(0.6deg);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(.2,.8,.2,1);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behaviour: auto !important;
  }

  .cursor-dot {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .manifesto-grid,
  .exchange-wall,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero-board {
    min-height: 580px;
  }

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

  .tilt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-inner {
    min-height: 68px;
  }

  .nav-actions .btn.alt {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .footer-logo {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 48px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-copy {
    font-size: 1.04rem;
  }

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

  .hero-board {
    min-height: 550px;
  }

  .language-map {
    inset: 6% 0 0 0;
    transform: none;
    border-radius: 32px;
  }

  .stamp {
    width: 98px;
    height: 98px;
    font-size: 0.64rem;
  }

  .pin {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .chat-ticket {
    left: 4%;
    right: 4%;
  }

  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .manifesto,
  .waitlist,
  .quote-panel {
    border-radius: 30px;
  }

  .tilt-grid,
  .value-board {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .step-card .badge {
    margin-bottom: 52px;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .cursor-dot {
    display: none;
  }
}
