/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --paper: #f1eee5;
  --ink: #171711;
  --blue: #2446f0;
  --acid: #d7ff3f;
  --line: rgba(23, 23, 17, 0.23);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), "PingFang SC", "Microsoft YaHei", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--blue);
  color: white;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: white;
  padding: 0.8rem 1rem;
  transition: top 160ms ease;
}
.skip-link:focus {
  top: 1rem;
}
.nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 2.2rem;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}
.wordmark-dot,
.title-accent {
  color: var(--blue);
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7rem 2.2rem 0;
  overflow: hidden;
}
.hero-kicker {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-title-wrap {
  position: relative;
  margin: auto 0;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4.5rem, 14.4vw, 14rem);
  line-height: 0.77;
  letter-spacing: -0.095em;
  font-weight: 780;
}
.hero-stamp {
  position: absolute;
  right: 1.7vw;
  bottom: -3.8rem;
  width: 7.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.63rem;
  font-weight: 650;
  transform: rotate(9deg);
  border: 1px solid var(--ink);
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0 2rem;
}
.hero-intro {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  line-height: 1.55;
  letter-spacing: -0.03em;
}
.round-link {
  flex: 0 0 auto;
  width: 4.1rem;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.round-link:hover,
.round-link:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(0.25rem);
}
.ticker {
  width: calc(100% + 4.4rem);
  margin-left: -2.2rem;
  overflow: hidden;
  background: var(--blue);
  color: white;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.68rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  padding-right: 0.5rem;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section {
  display: grid;
  grid-template-columns: minmax(7rem, 18%) 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--line);
}
.section-label {
  padding: 2rem 2.2rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-copy,
.contact-content {
  padding: clamp(4rem, 8vw, 8rem) clamp(2.2rem, 7vw, 8rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 3rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}
.about h2,
.contact h2 {
  max-width: 62rem;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  line-height: 1.14;
  letter-spacing: -0.065em;
  font-weight: 600;
}
.about-details {
  width: min(100%, 45rem);
  margin: 7rem 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-details p {
  margin: 0;
}
.now {
  background: var(--ink);
  color: var(--paper);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.section-label-light {
  border-right-color: rgba(255, 255, 255, 0.18);
}
.now-content {
  padding: clamp(4rem, 8vw, 7rem) clamp(2.2rem, 5vw, 5rem);
}
.now-heading {
  display: grid;
  grid-template-columns: 0.8fr 2fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 5rem;
}
.eyebrow-light {
  margin: 0;
}
.now-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 600;
}
.now-heading > p:last-child {
  margin: 0;
  color: rgba(241, 238, 229, 0.65);
  line-height: 1.65;
}
.now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.now-card {
  min-height: 24rem;
  padding: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  transition: background 180ms ease, color 180ms ease;
}
.now-card:last-child {
  border-right: 0;
}
.now-card:hover {
  background: var(--acid);
  color: var(--ink);
}
.card-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
}
.card-arrow {
  font-size: 1.2rem;
}
.now-card h3 {
  margin: auto 0 0;
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}
.card-chinese {
  margin: 1rem 0 0;
  font-size: 1rem;
}
.card-text {
  margin: 1.6rem 0 0;
  color: rgba(241, 238, 229, 0.62);
  line-height: 1.7;
  font-size: 0.9rem;
}
.now-card:hover .card-text {
  color: rgba(23, 23, 17, 0.7);
}
.contact {
  min-height: 75vh;
}
.contact-content {
  display: flex;
  flex-direction: column;
}
.email-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 6rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  border-bottom: 1px solid currentColor;
}
.email-link span {
  display: inline-block;
  transition: transform 180ms ease;
}
.email-link:hover span,
.email-link:focus-visible span {
  transform: translate(0.2rem, -0.2rem);
}
footer {
  min-height: 10rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.2rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer p {
  margin: 0;
}
footer p:last-child {
  text-align: right;
}
.footer-mark {
  width: fit-content;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 17vw;
  }
  .hero-stamp {
    width: 5.5rem;
    bottom: -5rem;
  }
  .section {
    grid-template-columns: 5.5rem 1fr;
  }
  .section-label {
    padding-inline: 1.2rem;
  }
  .now-heading {
    grid-template-columns: 1fr;
  }
  .now-grid {
    grid-template-columns: 1fr;
  }
  .now-card {
    min-height: 20rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .now-card:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 620px) {
  .nav,
  .hero {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .nav-links {
    gap: 1rem;
    font-size: 0.62rem;
  }
  .hero {
    padding-top: 6.5rem;
  }
  .hero-kicker span:last-child {
    display: none;
  }
  .hero-title-wrap {
    margin: auto 0 5rem;
  }
  .hero h1 {
    font-size: 18.4vw;
  }
  .hero-stamp {
    right: 0;
    bottom: -5.6rem;
  }
  .hero-bottom {
    align-items: center;
  }
  .round-link {
    width: 3.25rem;
  }
  .ticker {
    width: calc(100% + 2.2rem);
    margin-left: -1.1rem;
  }
  .section {
    display: block;
    min-height: auto;
  }
  .section-label {
    min-height: 4rem;
    padding: 1.2rem 1.1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
  }
  .section-label-light {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }
  .about-copy,
  .contact-content,
  .now-content {
    padding: 4rem 1.1rem;
  }
  .about h2,
  .contact h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }
  .about-details {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    gap: 1.5rem;
  }
  .now-heading {
    margin-bottom: 3rem;
  }
  .now-card {
    min-height: 18rem;
  }
  .contact-content {
    min-height: 70vh;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.1rem;
  }
  footer p:nth-child(2) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
