:root {
  --paper: #efe9dc;
  --paper-deep: #e3d9c6;
  --ink: #1b1b19;
  --ink-muted: #5d5a53;
  --red: #e9472e;
  --line: rgba(27, 27, 25, 0.22);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.72), transparent 31rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  margin: 0 3.5vw;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  text-decoration: none;
}

.wordmark-text,
.site-nav,
.local-time,
.eyebrow,
.section-label,
.art-note,
.domain-card > p,
.copy-feedback {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 2.4rem;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.local-time {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(233, 71, 46, 0.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  min-height: calc(100svh - 96px);
  padding: clamp(5rem, 11vh, 9rem) 7vw;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 2.2rem;
  color: var(--red);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.7vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.intro {
  max-width: 650px;
  margin: 2.6rem 0 0;
  color: var(--ink-muted);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.9;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
  transition: transform 200ms ease;
}

.scroll-cue:hover svg,
.scroll-cue:focus-visible svg {
  transform: translateY(5px);
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(29vw, 500px);
  aspect-ratio: 1;
}

.hero-art::before {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  content: "";
  background: var(--red);
  box-shadow: 0 3rem 6rem rgba(96, 45, 31, 0.18);
}

.orbit {
  position: absolute;
  z-index: 2;
  inset: 4%;
  border: 1px solid rgba(27, 27, 25, 0.55);
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(62deg) scaleY(0.34);
}

.orbit-two {
  transform: rotate(-26deg) scaleY(0.64);
}

.orbit-one::after,
.orbit-two::after {
  position: absolute;
  top: 46%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--ink);
}

.monogram {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: 0.7;
  text-align: center;
  transform: translateY(-1%);
}

.monogram-chuang {
  margin-left: 0.65em;
}

.art-note {
  position: absolute;
  z-index: 4;
  padding: 0.35rem;
  background: var(--paper);
  letter-spacing: 0.24em;
}

.art-note-top {
  top: 10%;
  right: 0;
  transform: rotate(90deg);
}

.art-note-bottom {
  bottom: 10%;
  left: 0;
  transform: rotate(-90deg);
}

.hero-index {
  position: absolute;
  right: 3.5vw;
  bottom: 2rem;
  color: rgba(27, 27, 25, 0.28);
  font-family: var(--serif);
  font-size: 2.8rem;
}

.reveal {
  animation: reveal-up 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 220ms; }
.reveal-delay-3 { animation-delay: 360ms; }

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.statement {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) 1fr auto;
  gap: 5vw;
  padding: clamp(6rem, 12vw, 11rem) 7vw;
  background: var(--paper-deep);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1rem;
}

.section-label span {
  color: var(--red);
}

.section-label p {
  margin: 0;
}

.statement-body h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 10vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.statement-pronounce {
  margin: 1.4rem 0 4rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.statement-copy {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  line-height: 1.65;
}

.statement-seal {
  align-self: end;
  display: grid;
  width: 92px;
  height: 92px;
  padding: 0.8rem;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  line-height: 1.4;
  transform: rotate(4deg);
}

.next {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(300px, 0.75fr) 1fr;
  gap: 5vw;
  padding: clamp(6rem, 11vw, 10rem) 7vw;
  color: var(--paper);
  background: var(--ink);
}

.section-label.light span {
  color: #ff644c;
}

.next-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.6vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.next-heading p {
  max-width: 460px;
  margin: 2rem 0 0;
  color: rgba(239, 233, 220, 0.62);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.8;
}

.future-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(239, 233, 220, 0.26);
}

.future-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(239, 233, 220, 0.26);
}

.future-number {
  padding-top: 0.3rem;
  color: #ff644c;
  font-size: 0.68rem;
  font-weight: 700;
}

.future-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.future-list p {
  margin: 0;
  color: rgba(239, 233, 220, 0.56);
  font-size: 0.86rem;
  line-height: 1.7;
}

.domain-card {
  display: grid;
  place-items: center;
  min-height: 52vh;
  padding: 6rem 2rem;
  text-align: center;
}

.domain-card > p {
  margin: 0 0 1.6rem;
  color: var(--red);
}

.domain-card button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
  font: inherit;
}

.domain-card button span {
  border-bottom: 2px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 1.1;
  transition: color 180ms ease, border-color 180ms ease;
}

.domain-card button svg {
  width: clamp(24px, 3vw, 42px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.domain-card button:hover span,
.domain-card button:focus-visible span {
  color: var(--red);
  border-color: var(--red);
}

.copy-feedback {
  min-height: 1rem;
  margin-top: 1.4rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin: 0 3.5vw;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.site-footer .back-to-top {
  justify-self: end;
  color: var(--ink);
  text-decoration: none;
}

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

  .hero-art {
    position: absolute;
    right: -10vw;
    width: 47vw;
    opacity: 0.26;
  }

  .statement,
  .next {
    grid-template-columns: 150px 1fr;
  }

  .statement-seal {
    position: absolute;
    right: 7vw;
    bottom: 4rem;
  }

  .future-list {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    margin: 0 1.25rem;
  }

  .wordmark-text,
  .local-time {
    display: none;
  }

  .site-nav {
    gap: 1.4rem;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 5.2rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14.6vw, 5.2rem);
    line-height: 1.12;
  }

  .intro {
    margin-top: 2rem;
  }

  .desktop-only {
    display: none;
  }

  .hero-art {
    top: 13%;
    right: -34vw;
    width: 92vw;
    opacity: 0.13;
  }

  .hero-art .monogram,
  .hero-art .art-note {
    display: none;
  }

  .hero-index {
    right: 1.5rem;
  }

  .statement,
  .next {
    display: block;
    padding: 5.5rem 1.5rem;
  }

  .section-label {
    margin-bottom: 4.5rem;
    padding-top: 0;
  }

  .statement-body h2 {
    font-size: 22vw;
  }

  .statement-pronounce {
    margin-bottom: 2.8rem;
  }

  .statement-copy {
    font-size: 1.4rem;
  }

  .statement-seal {
    position: static;
    margin: 3.5rem 0 0 auto;
  }

  .next-heading h2 {
    font-size: 3rem;
  }

  .future-list {
    margin-top: 4rem;
  }

  .domain-card {
    min-height: 44vh;
    padding: 5rem 1.2rem;
  }

  .domain-card button span {
    font-size: 15vw;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    margin: 0 1.25rem;
  }

  .site-footer p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
