:root {
  --white: #ffffff;
  --off-white: #f7f7f5;
  --black: #161616;
  --gray: #6f6f6b;
  --line: #d8d8d3;
  --wood: #8b5938;
  --page-gutter: clamp(48px, 6vw, 112px);
}

* { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; cursor: url("pixel-pointer.svg") 2 2, auto; }
body { width: 100%; max-width: 100%; overflow-x: hidden; margin: 0; background: var(--white); color: var(--black); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.5; cursor: url("pixel-pointer.svg") 2 2, auto; }
main { width: 100%; max-width: 100%; overflow-x: hidden; }
a, button, input { font: inherit; }
a, button { cursor: url("pixel-pointer.svg") 2 2, pointer; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; width: 100%; }

.nav {
  height: 72px; padding: 0 var(--page-gutter); display: grid; grid-template-columns: 1fr auto;
  align-items: center; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96);
  position: sticky; top: 0; z-index: 20;
}
.studio-mark { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: .08em; white-space: nowrap; }
.mark-pixel {
  width: 14px; height: 14px; display: inline-block; position: relative; background: var(--wood);
  box-shadow: 4px 4px 0 #00c8ff;
}
.mark-pixel::after { content: ""; position: absolute; inset: 4px -4px auto 4px; height: 3px; background: #ff3158; }
.project-number { font-size: 11px; letter-spacing: .08em; color: var(--gray); }
.nav-link { justify-self: end; font-size: 13px; border-bottom: 1px solid var(--black); }

.hero { min-height: calc(100svh - 72px); padding: 32px var(--page-gutter); display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 48px; align-items: stretch; }
.hero > *, .feature > *, .summary > *, .details > *, .product-card > *, .waitlist > * { min-width: 0; }
.hero-copy { padding: 44px 0 20px; display: flex; flex-direction: column; align-items: flex-start; }
.status, .section-label { margin: 0; color: var(--gray); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.status::before { content: ""; width: 7px; height: 7px; background: var(--wood); display: inline-block; margin-right: 9px; }
.hero h1 {
  margin: auto 0 28px; position: relative; isolation: isolate; font-size: clamp(72px, 11vw, 164px);
  line-height: .9; letter-spacing: -.075em; font-weight: 600; animation: glitch-shake 5s ease-in-out infinite;
}
.hero h1::before, .hero h1::after {
  content: attr(data-text); position: absolute; inset: 0; pointer-events: none; opacity: 0;
}
.hero h1::before { color: #ff3158; z-index: -1; animation: glitch-red 5s ease-in-out infinite; }
.hero h1::after { color: #00c8ff; z-index: -1; animation: glitch-blue 5s ease-in-out infinite; }
@keyframes glitch-shake {
  0%, 18%, 24%, 42%, 67%, 100% { transform: translate(0) skew(0); }
  19% { transform: translate(-4px, 1px) skew(-1deg); }
  20% { transform: translate(5px, -1px) skew(1deg); }
  21% { transform: translate(-2px, 0) skew(0); }
  22% { transform: translate(0); }
  43% { transform: translate(4px, 1px) skew(1deg); }
  44% { transform: translate(-5px, -1px) skew(-1deg); }
  45% { transform: translate(2px, 0); }
  68% { transform: translate(-3px, 0) skew(-1deg); }
  69% { transform: translate(4px, 1px) skew(1deg); }
  70% { transform: translate(0); }
}
@keyframes glitch-red {
  0%, 18%, 24%, 42%, 67%, 100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: translate(0); }
  19% { opacity: .95; clip-path: inset(8% 0 70% 0); transform: translate(-12px, 0); }
  20% { opacity: .45; clip-path: inset(44% 0 36% 0); transform: translate(8px, 0); }
  21% { opacity: 0; }
  43% { opacity: .9; clip-path: inset(61% 0 14% 0); transform: translate(10px, 0); }
  44% { opacity: .5; clip-path: inset(25% 0 52% 0); transform: translate(-8px, 0); }
  45% { opacity: 0; }
  68% { opacity: .95; clip-path: inset(18% 0 56% 0); transform: translate(-11px, 0); }
  69% { opacity: 0; }
}
@keyframes glitch-blue {
  0%, 18%, 24%, 42%, 67%, 100% { opacity: 0; clip-path: inset(100% 0 0 0); transform: translate(0); }
  19% { opacity: .9; clip-path: inset(72% 0 8% 0); transform: translate(12px, 0); }
  20% { opacity: .5; clip-path: inset(35% 0 43% 0); transform: translate(-8px, 0); }
  21% { opacity: 0; }
  43% { opacity: .9; clip-path: inset(14% 0 61% 0); transform: translate(-10px, 0); }
  44% { opacity: .45; clip-path: inset(52% 0 25% 0); transform: translate(8px, 0); }
  45% { opacity: 0; }
  68% { opacity: .95; clip-path: inset(58% 0 18% 0); transform: translate(11px, 0); }
  69% { opacity: 0; }
}
.hero-description { max-width: 480px; margin: 0 0 38px; font-size: clamp(22px, 2.4vw, 35px); line-height: 1.15; letter-spacing: -.035em; }
.button {
  min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--black); background: var(--white); font-size: 13px; font-weight: 700;
  transition: background .15s, color .15s;
}
.button:hover { background: var(--black); color: var(--white); }
.button.dark { background: var(--black); color: var(--white); }
.button.dark:hover { background: var(--wood); border-color: var(--wood); }
.hero-product { min-width: 0; display: flex; flex-direction: column; }
.hero-image, .feature-image { margin: 0; position: relative; overflow: hidden; background: var(--off-white); }
.hero-image { flex: 1; }
.hero-image img { height: 100%; min-height: 580px; object-fit: cover; }
.hero-price { margin: 14px 0 0; padding-top: 13px; border-top: 1px solid var(--black); display: flex; align-items: baseline; justify-content: space-between; }
.hero-price span { color: var(--gray); font-size: 12px; }
.hero-price strong { font-size: 28px; line-height: 1; letter-spacing: -.035em; }
figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 10px 12px;
  background: rgba(255,255,255,.94); display: flex; justify-content: space-between; gap: 20px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .06em;
}

.summary { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary article { min-height: 260px; padding: 34px var(--page-gutter); border-right: 1px solid var(--line); }
.summary article:last-child { border-right: 0; }
.summary span { color: var(--gray); font-size: 11px; }
.summary h2 { margin: 92px 0 12px; font-size: 24px; letter-spacing: -.03em; }
.summary p { max-width: 340px; margin: 0; color: var(--gray); font-size: 14px; }

.feature { padding: 120px var(--page-gutter); display: grid; grid-template-columns: 62% 38%; gap: 72px; align-items: center; }
.feature-image img { aspect-ratio: 1.05; object-fit: cover; }
.feature-copy h2 { margin: 34px 0 22px; font-size: clamp(46px, 6vw, 88px); line-height: .95; letter-spacing: -.055em; font-weight: 500; }
.feature-copy > p:last-child { max-width: 440px; margin: 0; color: var(--gray); font-size: 17px; }

.lifestyle { padding: 0 var(--page-gutter) 120px; }
.lifestyle img { max-height: 760px; object-fit: cover; }
.lifestyle > p { margin: 14px 0 0; color: var(--gray); font-size: 12px; }

.details { padding: 120px var(--page-gutter); background: var(--off-white); }
.details > .section-label { display: block; margin-bottom: 38px; }
.details dl { width: min(900px, 100%); margin: 0 0 0 auto; border-top: 1px solid var(--black); }
.details dl div { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.details dt { color: var(--gray); font-size: 13px; }
.details dd { margin: 0; font-size: 14px; }

.product { padding: 120px var(--page-gutter); }
.product-card { margin-top: 36px; border-top: 1px solid var(--black); border-bottom: 1px solid var(--black); padding: 24px 0; display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; }
.product-card > img { min-height: 480px; height: 100%; object-fit: cover; }
.product-info { display: flex; flex-direction: column; align-items: flex-start; padding: 8px 0; }
.product-info > span { color: var(--gray); font-size: 11px; }
.product-info h2 { margin: 34px 0 12px; font-size: clamp(58px, 7vw, 102px); line-height: .9; letter-spacing: -.06em; font-weight: 500; }
.product-info p { margin: 0; color: var(--gray); }
.product-info strong { margin: auto 0 22px; font-size: 14px; }

.waitlist { padding: 130px var(--page-gutter) 150px; background: var(--black); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.waitlist h2 { max-width: 650px; margin: 28px 0 0; font-size: clamp(44px, 5vw, 76px); line-height: 1.02; letter-spacing: -.05em; font-weight: 500; }
.waitlist .section-label { color: #a8a8a3; }
.discount-note { max-width: 560px; margin: 24px 0 0; color: #b4b4af; font-size: 14px; }
.waitlist form { width: 100%; }
.waitlist label { display: block; margin-bottom: 10px; color: #b4b4af; font-size: 12px; }
.input-row { display: flex; border-bottom: 1px solid var(--white); }
.input-row input { flex: 1; min-width: 0; padding: 16px 0; border: 0; background: transparent; color: var(--white); outline: none; font-size: 18px; }
.input-row input::placeholder { color: #777; }
.input-row button { border: 0; background: transparent; color: var(--white); font-size: 13px; font-weight: 700; }
.success { border-top: 1px solid var(--white); padding-top: 22px; }
.success p { color: #b4b4af; }

footer { min-height: 110px; padding: 32px var(--page-gutter); border-top: 1px solid #353535; background: var(--black); color: var(--white); display: flex; justify-content: space-between; align-items: flex-end; font-size: 11px; }

@media (max-width: 820px) {
  :root { --page-gutter: 18px; }
  .nav { padding: 0 14px; grid-template-columns: minmax(0, 1fr) auto; }
  .studio-mark { gap: 9px; font-size: 11px; letter-spacing: .04em; }
  .nav-link { font-size: 12px; white-space: nowrap; }
  .project-number { display: none; }
  .hero { padding: 18px; grid-template-columns: 1fr; gap: 30px; }
  .hero-product { order: -1; }
  .hero-copy { min-height: 0; padding: 30px 0 42px; }
  .hero h1 { margin: 56px 0 24px; }
  .hero-image img { min-height: 390px; }
  .summary { grid-template-columns: 1fr; }
  .summary article { min-height: 210px; padding: 34px 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .summary h2 { margin-top: 68px; }
  .feature { padding: 80px 18px; grid-template-columns: 1fr; gap: 48px; }
  .lifestyle { padding: 0 18px 80px; }
  .details { padding: 80px 18px; }
  .details dl div { grid-template-columns: 1fr 1.5fr; }
  .product { padding: 80px 18px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card > img { min-height: 320px; }
  .product-info strong { margin-top: 70px; }
  .waitlist { padding: 90px 18px 110px; grid-template-columns: 1fr; }
  footer { padding: 28px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation: none !important; }
}
