:root {
  --ink: #1e1e1e;
  --paper: #f1f1f1;
  --max-width: 1440px;
  --border: 1px solid var(--ink);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .05;
  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='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.mono {
  font-family: "DM Mono", monospace;
  letter-spacing: .04em;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 500;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: .11em;
}

.brand-copy small {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .06em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .25; transform: scale(.72); }
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  padding: 28px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-index,
.section-index {
  font-size: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .65fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  padding: 58px 0 72px;
}

.eyebrow {
  margin: 0 0 20px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}

.hero h1,
.manifesto h2,
.drop-copy h2,
.gate h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .92;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(64px, 7.4vw, 128px);
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero-description {
  max-width: 640px;
  margin: 38px 0 0;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta {
  min-height: 62px;
  padding: 0 20px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

.cta:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--ink);
}

.cta-primary {
  color: var(--paper);
  background: var(--ink);
}

.cta-primary:hover {
  color: var(--ink);
  background: var(--paper);
}

.cta-arrow {
  font-size: 22px;
  line-height: 1;
}

.cta-note {
  font-size: 9px;
  opacity: .72;
}

.access-card {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: .82;
  justify-self: end;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--ink);
  transform: rotate(2.2deg);
  overflow: hidden;
  transition: transform .5s var(--ease);
}

.access-card:hover {
  transform: rotate(0deg) translateY(-8px);
}

.access-card::before,
.access-card::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
  top: 57px;
  z-index: 2;
}

.access-card::before { left: -12px; }
.access-card::after { right: -12px; }

.access-card-top {
  min-height: 68px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--ink);
  font-size: 9px;
}

.access-card-center {
  position: relative;
  min-height: 66%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
}

.scanner {
  display: grid;
  grid-template-columns: repeat(5, 24px);
  grid-auto-rows: 24px;
  gap: 5px;
}

.scanner span {
  background: var(--ink);
  animation: scannerBlink 2.2s steps(2) infinite;
}

.scanner span:nth-child(2n) { animation-delay: .35s; }
.scanner span:nth-child(3n) { animation-delay: .75s; }
.scanner span:nth-child(4n) { animation-delay: 1.1s; }

@keyframes scannerBlink {
  0%, 55% { opacity: 1; }
  56%, 100% { opacity: .12; }
}

.access-card-center p {
  margin: 0;
  font-size: 10px;
}

.access-card-bottom {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.access-card-bottom span {
  min-height: 58px;
  display: grid;
  place-items: center;
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.access-card-bottom span + span {
  border-left: 1px solid var(--ink);
}

.scroll-cue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
}

.ticker {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ticker-track {
  width: max-content;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  animation: marquee 24s linear infinite;
}

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

.manifesto {
  padding: 110px 0 120px;
}

.manifesto-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(48px, 8vw, 150px);
  align-items: end;
}

.manifesto h2,
.drop-copy h2,
.gate h2 {
  font-size: clamp(52px, 6.1vw, 98px);
}

.manifesto-copy {
  padding-bottom: 8px;
}

.manifesto-copy p:first-child {
  margin: 0;
  max-width: 560px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

.manifesto-tag {
  margin: 28px 0 0;
  font-size: 9px;
}

.benefit-grid {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}

.benefit-card {
  position: relative;
  min-height: 320px;
  padding: 24px;
  overflow: hidden;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--ink);
}

.benefit-card.inverted {
  color: var(--paper);
  background: var(--ink);
}

.benefit-number {
  font-size: 9px;
}

.benefit-card h3 {
  margin: 88px 0 14px;
  font-size: clamp(34px, 3.2vw, 54px);
  letter-spacing: -.05em;
}

.benefit-card p {
  max-width: 350px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.card-line {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(.2);
  transition: transform .55s var(--ease);
}

.benefit-card:hover .card-line {
  transform: scaleX(1);
}

.drop-section {
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.drop-shell {
  min-height: 820px;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(48px, 9vw, 160px);
  align-items: center;
}

.drop-copy .section-index {
  margin-bottom: 72px;
}

.drop-copy .eyebrow {
  margin-bottom: 24px;
}

.drop-interface {
  position: relative;
  width: min(100%, 430px);
  min-height: 650px;
  justify-self: end;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper);
  transform: rotate(-2.5deg);
  box-shadow: 22px 22px 0 rgba(241,241,241,.12);
}

.phone-top {
  min-height: 46px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  font-size: 8px;
}

.chat-header {
  min-height: 76px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
}

.chat-logo {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.chat-header div:last-child {
  display: grid;
  gap: 2px;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.messages {
  padding: 40px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  max-width: 84%;
  padding: 15px;
  border: 1px solid var(--ink);
  font-size: 12px;
  line-height: 1.45;
}

.message strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 14px;
}

.message p {
  margin: 0;
}

.message-label {
  font-size: 8px;
  opacity: .65;
}

.message.outgoing {
  align-self: flex-end;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
}

.m1,
.m2,
.m3 {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.drop-section.is-visible .m1 { opacity: 1; transform: none; transition-delay: .1s; }
.drop-section.is-visible .m2 { opacity: 1; transform: none; transition-delay: .3s; }
.drop-section.is-visible .m3 { opacity: 1; transform: none; transition-delay: .5s; }

.gate {
  padding: 120px 0;
}

.gate-box {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.gate-code {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(241,241,241,.38);
  font-size: 9px;
}

.gate-grid {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: center;
}

.gate h2 {
  max-width: 850px;
}

.gate-action {
  align-self: end;
  padding-bottom: 28px;
}

.gate-action p {
  margin: 0 0 24px;
  max-width: 470px;
  font-size: 15px;
  line-height: 1.6;
}

.cta-light {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.cta-light:hover {
  box-shadow: 6px 6px 0 var(--paper);
  color: var(--paper);
  background: var(--ink);
}

.gate-action .cta-note {
  display: inline-block;
  margin-top: 12px;
}

.gate-stamp {
  position: absolute;
  right: -48px;
  top: 58px;
  display: grid;
  opacity: .045;
  font-size: clamp(90px, 12vw, 190px);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.08em;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: center;
  pointer-events: none;
}

.footer {
  padding: 30px 0 100px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--ink);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-size: 12px;
  letter-spacing: .08em;
}

.footer-brand span {
  font-size: 12px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
  font-size: 8px;
}

.mobile-sticky {
  display: none;
}

.reveal-section {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .hero-grid,
  .manifesto-grid,
  .drop-shell,
  .gate-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 42px;
  }

  .access-card,
  .drop-interface {
    justify-self: start;
  }

  .access-card {
    width: min(78vw, 390px);
    margin-top: 24px;
  }

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

  .benefit-card + .benefit-card {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .drop-shell {
    padding-bottom: 90px;
  }

  .drop-copy .section-index {
    margin-bottom: 54px;
  }

  .drop-interface {
    width: min(90vw, 430px);
    justify-self: center;
  }

  .gate-grid {
    min-height: auto;
    padding: 78px 0 22px;
  }

  .gate-action {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  :root {
    --border: 1px solid var(--ink);
  }

  .section-shell,
  .site-header {
    width: min(calc(100% - 28px), var(--max-width));
  }

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

  .brand-mark {
    width: 38px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    display: none;
  }

  .header-status {
    font-size: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 22px;
  }

  .hero-grid {
    gap: 38px;
    padding: 50px 0 54px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 82px);
    line-height: .9;
  }

  .outline-word {
    -webkit-text-stroke-width: 1px;
  }

  .hero-description {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 30px;
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    width: 100%;
  }

  .access-card {
    width: calc(100% - 15px);
    justify-self: center;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .scroll-cue {
    padding-top: 12px;
  }

  .manifesto {
    padding: 82px 0 88px;
  }

  .manifesto-grid {
    margin-top: 40px;
    gap: 34px;
  }

  .manifesto h2,
  .drop-copy h2,
  .gate h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .manifesto-copy p:first-child {
    font-size: 16px;
  }

  .benefit-grid {
    margin-top: 56px;
  }

  .benefit-card {
    min-height: 260px;
    padding: 20px;
  }

  .benefit-card h3 {
    margin-top: 58px;
  }

  .drop-shell {
    min-height: auto;
    padding: 82px 0 86px;
    gap: 58px;
  }

  .drop-copy .section-index {
    margin-bottom: 46px;
  }

  .drop-interface {
    min-height: 570px;
    transform: rotate(-1deg);
  }

  .gate {
    padding: 84px 0 100px;
  }

  .gate-box {
    padding: 18px;
  }

  .gate-grid {
    gap: 48px;
    padding-top: 62px;
  }

  .footer {
    padding-bottom: 104px;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 50;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 64px;
    padding: 8px 8px 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--paper);
    background: var(--ink);
    border: 1px solid var(--paper);
    transform: translateY(120%);
    transition: transform .45s var(--ease);
  }

  .mobile-sticky.is-visible {
    transform: translateY(0);
  }

  .mobile-sticky > div {
    display: grid;
    gap: 2px;
  }

  .mobile-sticky strong {
    font-size: 10px;
    letter-spacing: .06em;
  }

  .mobile-sticky span {
    font-size: 7px;
  }

  .mobile-sticky > a {
    padding: 14px 13px;
    color: var(--ink);
    background: var(--paper);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
