:root {
  --ink: #111217;
  --paper: #f4f1e9;
  --white: #fffef9;
  --cyan: #13c8f5;
  --magenta: #ff3b95;
  --yellow: #ffd33d;
  --orange: #ff7141;
  --lime: #bcff59;
  --line: rgba(17, 18, 23, 0.14);
  --muted: #66676d;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(19, 200, 245, .12), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-flex;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.11em;
}

.brand-mark span:nth-child(1) { color: var(--cyan); }
.brand-mark span:nth-child(2) { color: var(--magenta); }
.brand-mark span:nth-child(3) { color: var(--orange); }

.brand-name {
  font-size: 19px;
  letter-spacing: 0.06em;
}

.header-pill {
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 17px;
  transition: .25s ease;
}

.header-pill:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  padding: 40px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(188,255,89,.22);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(188,255,89,0); }
}

.hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(64px, 7.5vw, 116px);
  line-height: .91;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.accent-word {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.accent-word::after {
  content: "";
  position: absolute;
  left: -1%;
  right: -5%;
  height: .22em;
  bottom: .02em;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  z-index: -1;
  transform: rotate(-2deg);
  border-radius: 999px;
}

.hero-intro {
  max-width: 640px;
  font-size: 20px;
  line-height: 1.62;
  color: #48494f;
  margin: 34px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--magenta);
}

.button-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--cyan);
}

.launch-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.hero-art {
  min-height: 570px;
  position: relative;
  perspective: 1000px;
}

.art-orbit {
  position: absolute;
  border: 1px solid rgba(17,18,23,.16);
  border-radius: 50%;
}

.orbit-one {
  width: 465px;
  height: 465px;
  right: 10px;
  top: 42px;
}

.orbit-two {
  width: 320px;
  height: 320px;
  right: 85px;
  top: 115px;
  border-style: dashed;
}

.print-card {
  position: absolute;
  box-shadow: 0 22px 50px rgba(17,18,23,.16);
  border: 1px solid rgba(17,18,23,.18);
}

.card-business {
  width: 330px;
  height: 205px;
  background: var(--white);
  right: 115px;
  top: 95px;
  padding: 28px;
  transform: rotate(-7deg);
  animation: floatA 6s ease-in-out infinite;
}

.card-business strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-top: 25px;
}

.mini-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--magenta);
}

.mini-lines {
  position: absolute;
  right: 24px;
  bottom: 25px;
  display: grid;
  gap: 6px;
}

.mini-lines i {
  display: block;
  width: 62px;
  height: 4px;
  background: var(--ink);
}

.mini-lines i:nth-child(2) { width: 42px; background: var(--cyan); }
.mini-lines i:nth-child(3) { width: 52px; background: var(--yellow); }

.card-poster {
  width: 245px;
  height: 325px;
  background: var(--magenta);
  color: #fff;
  right: -3px;
  top: 215px;
  padding: 22px;
  transform: rotate(9deg);
  overflow: hidden;
  animation: floatB 7s ease-in-out infinite;
}

.poster-number {
  position: absolute;
  font-family: "Manrope", sans-serif;
  font-size: 155px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.11em;
  color: rgba(255,255,255,.17);
  left: -18px;
  top: -14px;
}

.poster-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 27px;
  line-height: .95;
  letter-spacing: -.05em;
}

.card-sticker {
  width: 200px;
  height: 92px;
  border-radius: 999px;
  background: var(--yellow);
  left: 4px;
  bottom: 73px;
  padding: 25px 30px;
  transform: rotate(-9deg);
  animation: floatC 5.5s ease-in-out infinite;
}

.card-sticker span,
.card-sticker strong {
  display: block;
  line-height: 1;
}

.card-sticker span {
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 800;
}

.card-sticker strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  margin-top: 5px;
}

.cmyk-dot {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--ink);
}

.cyan { background: var(--cyan); right: 390px; top: 60px; }
.magenta { background: var(--magenta); right: 35px; top: 82px; width: 21px; height: 21px; }
.yellow { background: var(--yellow); right: 310px; bottom: 32px; width: 25px; height: 25px; }

@keyframes floatA { 50% { transform: rotate(-4deg) translateY(-13px); } }
@keyframes floatB { 50% { transform: rotate(6deg) translateY(12px); } }
@keyframes floatC { 50% { transform: rotate(-5deg) translateY(-10px); } }

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
  animation: ticker 24s linear infinite;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ticker-track b { color: var(--yellow); }

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

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

.services {
  padding: 150px 0 135px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.section-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 20px;
}

.section-heading h2,
.coming-inner h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 83px);
  line-height: .96;
  letter-spacing: -.06em;
  margin: 0;
}

.section-heading p,
.coming-inner p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 650px;
  margin-top: 26px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.service-card {
  min-height: 205px;
  padding: 30px 30px 28px 0;
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 54px 1fr 32px;
  gap: 18px;
  align-items: start;
  transition: padding .25s ease, background .25s ease;
}

.service-card:nth-child(odd) {
  border-right: 1px solid var(--ink);
  padding-right: 36px;
}

.service-card:nth-child(even) {
  padding-left: 36px;
}

.service-card:hover {
  background: rgba(255,255,255,.42);
}

.service-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--magenta);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -.03em;
}

.service-card p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.55;
}

.service-arrow {
  font-size: 25px;
  transition: transform .2s ease;
}

.service-card:hover .service-arrow {
  transform: translate(3px, -3px);
}

.coming-soon {
  background: var(--ink);
  color: var(--white);
  min-height: 640px;
  width: min(calc(100% - 28px), 1380px);
  border-radius: 8px;
  padding: 90px max(36px, calc((100% - var(--max-width)) / 2));
  position: relative;
  overflow: hidden;
}

.coming-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.section-kicker.light {
  color: var(--lime);
}

.coming-inner p {
  color: rgba(255,255,255,.68);
}

.progress-wrap {
  margin-top: 58px;
  max-width: 650px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.progress-value { color: var(--yellow); }

.progress-bar {
  height: 10px;
  border: 1px solid rgba(255,255,255,.35);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  transform-origin: left;
  animation: progress 2.2s cubic-bezier(.4,0,.2,1) both;
}

@keyframes progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.big-123 {
  position: absolute;
  font-family: "Manrope", sans-serif;
  font-size: clamp(260px, 37vw, 590px);
  line-height: .72;
  font-weight: 800;
  letter-spacing: -.12em;
  color: rgba(255,255,255,.035);
  right: -65px;
  bottom: -40px;
  user-select: none;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0 52px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
}

.brand-footer .brand-mark { font-size: 34px; }
.brand-footer .brand-name { font-size: 22px; }

.legal {
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.legal p { margin: 0 0 14px; }
.legal strong { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .hero-art {
    width: min(580px, 100%);
    margin: 0 auto;
  }

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

  .service-card:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .service-card:nth-child(even) {
    padding-left: 0;
  }

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

  .legal { text-align: left; }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .site-header { height: 84px; }
  .header-pill { display: none; }

  .brand-mark { font-size: 27px; }
  .brand-name { font-size: 18px; }

  .hero {
    padding: 45px 0 70px;
    gap: 20px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(55px, 19vw, 76px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-art {
    min-height: 420px;
    transform: scale(.82);
    transform-origin: center top;
    margin-bottom: -55px;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
    right: 50%;
    transform: translateX(50%);
  }

  .orbit-two { display: none; }

  .card-business {
    right: 55px;
    top: 80px;
  }

  .card-poster {
    right: -80px;
    top: 195px;
  }

  .card-sticker {
    left: -65px;
    bottom: 35px;
  }

  .cyan { right: auto; left: 8px; }

  .services {
    padding: 105px 0 90px;
  }

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

  .service-card {
    grid-template-columns: 42px 1fr 22px;
    padding: 25px 0;
    min-height: auto;
  }

  .coming-soon {
    width: calc(100% - 16px);
    min-height: 580px;
    padding: 70px 24px;
  }

  .progress-top {
    flex-direction: column;
    gap: 6px;
  }

  .site-footer {
    padding-top: 50px;
  }
}

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