:root {
  color-scheme: light dark;
  --bg: #f7f7f4;
  --ink: #090909;
  --soft: rgba(9, 9, 9, 0.68);
  --muted: rgba(9, 9, 9, 0.46);
  --line: rgba(9, 9, 9, 0.13);
  --line-strong: rgba(9, 9, 9, 0.2);
  --surface: rgba(255, 255, 255, 0.68);
  --surface-solid: #ffffff;
  --surface-muted: rgba(9, 9, 9, 0.045);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --edge: rgba(9, 9, 9, 0.09);
  --shadow: 0 28px 80px rgba(9, 9, 9, 0.12);
  --deep-shadow: 0 42px 120px rgba(9, 9, 9, 0.16);
  --max: 1120px;
  --page-x: clamp(22px, 5vw, 72px);
  --radius: 34px;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  text-rendering: geometricPrecision;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #030303;
    --ink: #f7f7f4;
    --soft: rgba(247, 247, 244, 0.7);
    --muted: rgba(247, 247, 244, 0.46);
    --line: rgba(247, 247, 244, 0.14);
    --line-strong: rgba(247, 247, 244, 0.22);
    --surface: rgba(247, 247, 244, 0.062);
    --surface-solid: #0d0d0d;
    --surface-muted: rgba(247, 247, 244, 0.075);
    --glass: rgba(247, 247, 244, 0.07);
    --glass-strong: rgba(247, 247, 244, 0.105);
    --edge: rgba(247, 247, 244, 0.09);
    --shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
    --deep-shadow: 0 48px 140px rgba(0, 0, 0, 0.7);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, var(--surface-muted) 52%, transparent 100%);
  opacity: 0.7;
}

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

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

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

.site-shell {
  width: min(var(--max), calc(100% - (var(--page-x) * 2)));
  margin: 0 auto;
}

.site-nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: clamp(104px, 11vw, 138px);
}

.brand-dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .brand-light {
    display: none;
  }

  .brand-dark {
    display: block;
  }
}

.nav-links,
.footer-links,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links {
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.nav-links a,
.footer-links a,
.legal-link,
.contact-link {
  position: relative;
  transition:
    color 180ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 180ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 180ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a::after,
.footer-links a::after,
.legal-link::after,
.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: left center;
  transition:
    opacity 180ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.legal-link:hover,
.legal-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.legal-link:hover::after,
.legal-link:focus-visible::after,
.contact-link:hover::after,
.contact-link:focus-visible::after {
  opacity: 0.76;
  transform: scaleX(1);
}

.pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--soft);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
  transition:
    transform 190ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 190ms cubic-bezier(0.19, 1, 0.22, 1),
    background 190ms cubic-bezier(0.19, 1, 0.22, 1);
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
  padding: clamp(34px, 6vw, 76px) 0 clamp(58px, 7vw, 92px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.88;
}

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

h1 {
  max-width: 780px;
  margin-top: 28px;
  font-size: clamp(56px, 7.2vw, 104px);
  line-height: 0.99;
  letter-spacing: -0.032em;
  font-weight: 780;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 660px;
  margin-top: 28px;
  color: var(--soft);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 650;
  text-wrap: balance;
}

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

.coming-soon {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 15px;
  font-weight: 820;
  box-shadow: var(--shadow);
  cursor: default;
  transition:
    transform 190ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 220ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 190ms cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 780;
}

.pill:hover,
.pill:focus-visible {
  border-color: var(--line-strong);
  background: var(--glass-strong);
  transform: translateY(-1px);
}

.coming-soon:hover,
.coming-soon:focus-visible {
  box-shadow: var(--deep-shadow);
  transform: translateY(-2px);
}

.pill.is-pressed,
.coming-soon.is-pressed {
  transform: scale(0.985);
}

.hero-proof {
  grid-column: 1;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  border-left: 1px solid var(--line);
  color: var(--soft);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.05;
  font-weight: 760;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.82;
}

.hero-proof span:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.drop-object {
  width: min(100%, 390px);
  min-height: 505px;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44)),
    var(--surface-solid);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.54);
  animation: object-settle 840ms cubic-bezier(0.19, 1, 0.22, 1) both;
  transition:
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 260ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (prefers-color-scheme: dark) {
  .drop-object {
    background:
      linear-gradient(180deg, rgba(247, 247, 244, 0.105), rgba(247, 247, 244, 0.028)),
      var(--surface-solid);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(247, 247, 244, 0.12);
  }
}

.drop-object > * {
  position: relative;
  z-index: 1;
}

.drop-object.is-pressed {
  transform: scale(0.992);
}

.drop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 44px;
}

.chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--soft);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 820;
  white-space: nowrap;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.86;
}

.drop-status {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.drop-status::before {
  content: "";
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.88;
}

.drop-title {
  max-width: 280px;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 66px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.drop-note {
  max-width: 260px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.16;
  font-weight: 680;
}

.drop-time {
  margin-top: 76px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.drop-time span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drop-time strong {
  color: var(--ink);
  font-size: clamp(48px, 6.1vw, 68px);
  line-height: 0.84;
  letter-spacing: -0.035em;
  font-weight: 860;
  font-variant-numeric: tabular-nums;
}

.rail {
  height: 14px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-muted);
}

.rail-fill {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
  opacity: 0.84;
  transform-origin: left center;
  animation: rail-wake 1800ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.drop-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.section {
  padding: clamp(64px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

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

.section-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  font-weight: 760;
  text-wrap: balance;
}

.beat-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.beat {
  min-height: 318px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  row-gap: 12px;
  padding: 26px 26px 62px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, var(--glass-strong), var(--glass)),
    var(--surface-solid);
  box-shadow:
    0 22px 70px rgba(9, 9, 9, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition:
    transform 230ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 230ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 230ms cubic-bezier(0.19, 1, 0.22, 1),
    background 230ms cubic-bezier(0.19, 1, 0.22, 1);
}

.beat::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.72;
  transition:
    width 260ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.beat span {
  justify-self: start;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

.beat-time {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beat h3 {
  min-height: 1.96em;
  display: flex;
  align-items: flex-start;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.024em;
  font-weight: 820;
  text-wrap: balance;
}

.beat p:not(.beat-time) {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 570;
  max-width: 310px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.split-copy p {
  margin-top: 18px;
  color: var(--soft);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 620;
  text-wrap: balance;
}

.strip-list {
  display: grid;
  gap: 12px;
}

.split > .strip-list {
  margin-top: clamp(64px, 7.2vw, 96px);
}

.strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, var(--glass-strong), var(--glass)),
    var(--surface-solid);
  color: var(--soft);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 730;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition:
    transform 220ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 220ms cubic-bezier(0.19, 1, 0.22, 1),
    background 220ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.strip::after {
  content: "";
  width: 38px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.74;
  transition:
    width 240ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
  .drop-object:hover {
    border-color: var(--line-strong);
    box-shadow: var(--deep-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.54);
    transform: translateY(-4px);
  }

  .beat:hover {
    border-color: var(--line-strong);
    box-shadow:
      0 30px 90px rgba(9, 9, 9, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.46);
    transform: translateY(-3px);
  }

  .beat:hover::after {
    width: 66px;
    opacity: 0.88;
  }

  .strip:hover {
    border-color: var(--line-strong);
    background:
      linear-gradient(180deg, var(--glass-strong), var(--surface)),
      var(--surface-solid);
    box-shadow:
      0 18px 56px rgba(9, 9, 9, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.46);
    transform: translateY(-2px);
  }

  .strip:hover::after {
    width: 56px;
    opacity: 0.86;
  }
}

.beat.is-pressed,
.strip.is-pressed {
  transform: scale(0.992);
}

.closing {
  padding: clamp(74px, 10vw, 132px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.closing h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(44px, 7vw, 98px);
  line-height: 0.96;
  letter-spacing: -0.036em;
  font-weight: 840;
  text-wrap: balance;
}

.closing .coming-soon {
  margin-top: 30px;
}

.footer {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.footer-links a,
.footer-meta span {
  white-space: nowrap;
}

.legal-page {
  padding-bottom: 80px;
}

.legal-hero {
  padding: clamp(56px, 8vw, 96px) 0 38px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  margin-top: 0;
  font-size: clamp(48px, 7vw, 96px);
}

.legal-hero p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 620;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 88px);
  padding-top: 46px;
}

.legal-aside {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.legal-content {
  max-width: 790px;
}

.legal-content section {
  padding: 0 0 36px;
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 820;
}

.legal-content p,
.legal-content li {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 520;
}

.legal-content p {
  margin-top: 12px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

@keyframes object-settle {
  from {
    transform: translateY(18px) scale(0.992);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes rail-wake {
  from {
    transform: scaleX(0.16);
    opacity: 0.48;
  }
  to {
    transform: scaleX(1);
    opacity: 0.84;
  }
}

.js.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

  .js.reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-proof {
    grid-column: auto;
  }

  .drop-object {
    max-width: 430px;
  }

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

  .split > .strip-list {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --page-x: 22px;
  }

  .site-nav {
    min-height: 78px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 14.4vw, 68px);
  }

  .hero {
    gap: 28px;
    padding-top: 28px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 58px;
    padding: 15px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-proof span:first-child {
    border-top: 0;
  }

  .drop-object {
    width: 100%;
    min-height: 460px;
    border-radius: 30px;
  }

  .drop-title {
    font-size: 48px;
  }

  .drop-time {
    margin-top: 60px;
  }

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

  .beat {
    min-height: 286px;
    padding: 26px 26px 64px;
  }

  .strip {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .drop-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  .drop-time {
    align-items: flex-start;
    flex-direction: column;
  }

  .drop-time strong {
    font-size: 56px;
  }
}
