@font-face { font-family: Outfit; src: url('/assets/outfit-400.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: Outfit; src: url('/assets/outfit-600.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: Outfit; src: url('/assets/outfit-800.ttf') format('truetype'); font-weight: 800; font-display: swap; }

/* Visual language of the app's entry surfaces (docs/design-system/entry-surfaces.md). */
:root {
  --blue: #2563eb;
  --blue-top: #2f6cf2;
  --blue-deep: #1b4fd1;
  --on-blue-2: rgba(255, 255, 255, 0.84);
  --on-blue-3: rgba(255, 255, 255, 0.66);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-line: rgba(255, 255, 255, 0.3);
  --action-ink: #0f2a6b;

  --canvas: #ede9e2;
  --canvas-2: #e4dfd6;
  --panel-line: #ddd6ca;
  --ink: #1b1d22;
  --ink-2: #5a5d64;
  --hud: #2a2b2f;

  --display: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --gutter: clamp(16px, 4vw, 48px);
  color-scheme: light;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 400 17px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="zh-CN"] body { font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, p, figure, ul { margin: 0; }
h1, h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.035em; text-wrap: balance; }
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2 { letter-spacing: 0; font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif; }
button, input, select { font: inherit; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.blue :focus-visible { outline-color: #fff; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden, .language-picker label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -100px; z-index: 10; padding: 10px 16px; border-radius: 999px; background: #fff; color: var(--action-ink); font-weight: 600; }
.skip:focus { top: 16px; }

/* ---------- brand ground ---------- */
.blue { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.ground { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ground__base {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 20% 15%, rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(60% 70% at 85% 90%, rgba(10, 30, 110, 0.55), transparent 65%),
    linear-gradient(160deg, var(--blue-top) 0%, var(--blue) 45%, var(--blue-deep) 100%);
}
.ground__aurora {
  position: absolute; inset: -25%;
  background: radial-gradient(38% 38% at 28% 32%, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: wander 26s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}
.ground__aurora + .ground__aurora {
  background: radial-gradient(34% 34% at 72% 68%, rgba(124, 170, 255, 0.26), transparent 72%);
  animation-duration: 34s; animation-delay: -12s;
}
.hex {
  position: absolute; width: 240px; height: 270px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.05);
  animation: drift 24s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}
.hero .hex:nth-of-type(1) { left: 14%; top: -60px; }
.hero .hex:nth-of-type(2) { left: 74%; top: -110px; scale: 0.72; animation-delay: -8s; }
.hero .hex:nth-of-type(3) { left: -6%; top: 52%; scale: 0.9; animation-delay: -4s; }
.hero .hex:nth-of-type(4) { left: 86%; top: 62%; scale: 1.2; animation-delay: -12s; }
.final .hex:nth-of-type(1) { left: 6%; top: 12%; scale: 0.8; }
.final .hex:nth-of-type(2) { left: 80%; top: -80px; animation-delay: -9s; }
@keyframes drift { from { translate: 0 0; } to { translate: 30px -50px; } }
@keyframes wander {
  from { transform: translate3d(-4%, 2%, 0) scale(1); }
  to { transform: translate3d(5%, -3%, 0) scale(1.12); }
}

/* ---------- brand lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { width: 44px; height: 44px; margin: -6px; }
.brand__word { width: auto; height: 21px; }

/* ---------- 40px pills, no shadow ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding-inline: 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; white-space: nowrap; text-decoration: none; cursor: pointer;
  transition: background-color 150ms var(--ease), border-color 150ms var(--ease);
}
.pill--white { background: #fff; color: var(--action-ink); border: 0; }
.pill--white:hover { background: #e8efff; }
.pill--white:disabled { opacity: 0.7; cursor: wait; }
.pill--line { background: transparent; color: #fff; border: 1px solid var(--glass-line); }
.pill--line:hover { background: var(--glass); border-color: rgba(255, 255, 255, 0.6); }

/* ---------- top ---------- */
.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 28px; }
.top__actions { display: flex; align-items: center; gap: 8px; }
.language-picker select {
  height: 40px; padding: 0 34px 0 16px; border-radius: 999px;
  border: 1px solid var(--glass-line); background: transparent; color: #fff; font-size: 14px; font-weight: 500;
  appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px; background-repeat: no-repeat;
}
.language-picker select:hover { background-color: var(--glass); }
.language-picker option { color: var(--ink); }

/* ---------- hero ---------- */
.hero { text-align: center; padding-bottom: clamp(40px, 6vw, 72px); }
.hero__head { max-width: 780px; margin-inline: auto; padding-top: clamp(20px, 4vw, 48px); scroll-margin-top: 24px; }
.hero h1 { font-size: clamp(40px, 6.6vw, 84px); line-height: 1; }
.hero__lead { margin: 20px auto 0; max-width: 40ch; color: var(--on-blue-2); font-size: clamp(17px, 1.6vw, 19px); text-wrap: pretty; }

/* ---------- waitlist ---------- */
.waitlist { width: 100%; max-width: 540px; margin: 32px auto 0; text-align: left; }
.waitlist__row {
  display: flex; gap: 6px; padding: 6px;
  background: var(--glass); border: 1px solid var(--glass-line); border-radius: 999px;
  -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
  transition: border-color 150ms var(--ease), background-color 150ms var(--ease);
}
.waitlist__row:focus-within { border-color: rgba(255, 255, 255, 0.75); background: rgba(255, 255, 255, 0.16); }
.waitlist input[type="email"] {
  flex: 1; min-width: 0; height: 40px; padding-inline: 16px;
  border: 0; background: transparent; color: #fff; font-size: 16px;
}
.waitlist input[type="email"]::placeholder { color: var(--on-blue-3); }
.waitlist input[type="email"]:focus { outline: none; }
.waitlist input[aria-invalid="true"] { color: #ffe7a3; }
.waitlist__meta { display: grid; gap: 12px; margin-top: 14px; padding-inline: 8px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--on-blue-2); cursor: pointer; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; flex: none; accent-color: #fff; }
.more summary {
  display: inline-block; cursor: pointer; list-style: none;
  font-size: 14px; font-weight: 600; color: #fff;
  text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.4); text-underline-offset: 4px;
}
.more summary::-webkit-details-marker { display: none; }
.more summary:hover { text-decoration-color: #fff; }
.more__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.more__fields label { display: grid; gap: 6px; font-size: 13px; color: var(--on-blue-2); }
.more__fields select {
  width: 100%; min-width: 0; height: 40px; padding: 0 12px; border-radius: 12px;
  border: 1px solid var(--glass-line); background: var(--glass); color: #fff; font-size: 14px;
}
.more__fields option { color: var(--ink); }
.honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
#form-status { margin: 0; font-size: 14px; font-weight: 600; }
#form-status:empty { display: none; }
#form-status.error { color: #ffe7a3; }
#form-status.success {
  padding: 12px 16px; border-radius: 22px; font-size: 15px;
  background: var(--glass); border: 1px solid var(--glass-line); color: #fff;
}
.waitlist__keep { justify-self: start; }
.waitlist__keep[hidden] { display: none; }
.noscript { margin-top: 12px; font-size: 14px; color: var(--on-blue-2); }

/* ---------- hero stage ---------- */
.stage { max-width: 920px; margin: clamp(32px, 5vw, 56px) auto 0; }
.room { position: relative; width: 100%; aspect-ratio: 1400 / 1193; }
.room img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity 450ms var(--ease);
  filter: drop-shadow(0 40px 50px rgba(8, 24, 90, 0.35));
}
.room img.is-on { opacity: 1; }
.dock {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px;
  width: fit-content; max-width: 100%; margin: -12px auto 0;
  padding: 10px 10px 10px 22px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-line);
  -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
}
.dock__now { min-width: 190px; text-align: left; }
.dock__name { display: block; font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.02em; line-height: 1.2; }
.dock__finish { display: block; font-size: 13px; line-height: 1.3; color: var(--on-blue-2); }
.swatches { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.swatch {
  position: relative; width: 36px; height: 36px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; background: transparent;
  transition: border-color 150ms var(--ease);
}
.swatch::before {
  content: ""; position: absolute; inset: 3px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wall) 0 50%, var(--floor) 50% 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.swatch:hover { border-color: rgba(255, 255, 255, 0.5); }
.swatch[aria-pressed="true"] { border-color: #fff; }
.swatch--atelier { --wall: #667055; --floor: #b6ab95; }
.swatch--petroleo { --wall: #233f46; --floor: #66503b; }
.swatch--studio { --wall: #b3ac9f; --floor: #c7a77b; }
.swatch--graphite { --wall: #3b4b56; --floor: #59564f; }
.swatch--criativo { --wall: #c88779; --floor: #aaa1bc; }
.swatch--costeiro { --wall: #8eaab8; --floor: #d5cfbf; }
.swatch--techlab { --wall: #263b50; --floor: #787e84; }
.swatch--terracota { --wall: #be816c; --floor: #d8d0be; }
.hero__note { margin-top: 18px; font-size: 14px; color: var(--on-blue-3); }

/* ---------- product scenes on the office canvas ---------- */
.scene { padding-block: clamp(72px, 10vw, 128px); }
.scene + .scene { padding-top: 0; }
.scene__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.scene__grid--flip { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
.scene__grid--flip .scene__text { order: 2; }
.scene h2 { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.02; }
.scene__text p { margin-top: 18px; max-width: 36ch; color: var(--ink-2); text-wrap: pretty; }

.office {
  position: relative; overflow: hidden; padding: 76px 20px 20px;
  border-radius: 28px; background: var(--canvas-2); border: 1px solid var(--panel-line);
}
.office__room { width: 100%; max-width: 640px; margin: 0 auto; }
.office__prompt {
  position: absolute; top: 18px; left: 50%; translate: -50% 0;
  display: flex; align-items: center; gap: 10px;
  width: min(460px, calc(100% - 150px)); height: 44px; padding-inline: 14px; border-radius: 14px;
  background: var(--hud); color: #fff; font-size: 14px;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}
.office__prompt svg { flex: none; opacity: 0.55; }
.office__typed { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.at { color: #8fb3ff; }
.caret { flex: none; width: 2px; height: 16px; background: #fff; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.office__people { position: absolute; top: 18px; right: 16px; display: grid; gap: 6px; }
.who {
  display: flex; align-items: center; gap: 7px; height: 30px; padding: 0 12px 0 4px; border-radius: 999px;
  background: var(--hud); color: #fff; font-size: 12.5px; font-weight: 500;
}
.who__dot { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-style: normal; font-size: 10.5px; font-weight: 600; }
.who__dot--pixel { background: #0891b2; }
.who__dot--jose { background: #dc2626; }
.bubble {
  position: absolute; display: flex; align-items: center; gap: 8px; max-width: 290px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  background: var(--hud); color: #fff; font-size: 13px; line-height: 1.3;
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.55);
}
.bubble .who__dot { width: 24px; height: 24px; font-size: 11px; }
.bubble--one { left: 7%; top: 44%; }
.bubble--two { right: 8%; top: 30%; }

.build {
  display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: 18px; align-items: center;
  padding: 18px; border-radius: 28px; background: var(--canvas-2); border: 1px solid var(--panel-line);
}
.build__panel { position: relative; aspect-ratio: 640 / 880; overflow: hidden; border-radius: 22px; border: 1px solid var(--panel-line); background: #fbfaf8; }
.build__panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity 250ms var(--ease); }
.build__panel img.is-on { opacity: 1; }
.tabs { display: inline-flex; gap: 2px; margin-top: 26px; padding: 4px; border-radius: 999px; background: var(--canvas-2); border: 1px solid var(--panel-line); }
.tab {
  height: 34px; padding-inline: 18px; border: 0; border-radius: 999px; background: transparent;
  font-size: 14px; font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: background-color 150ms var(--ease), color 150ms var(--ease);
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); }
.scene__text .tab-copy { min-height: 4.7em; margin-top: 16px; }
.specs { list-style: none; max-width: 420px; margin-top: 22px; padding: 0; }
.specs li { display: flex; justify-content: space-between; gap: 16px; padding-block: 11px; border-top: 1px solid var(--panel-line); font-size: 15px; color: var(--ink-2); }
.specs li:last-child { border-bottom: 1px solid var(--panel-line); }
.specs b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }

.team { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.shot { position: relative; overflow: hidden; aspect-ratio: 900 / 776; border-radius: 22px; border: 1px solid var(--panel-line); background: var(--canvas-2); }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot--studio { grid-column: 1 / -1; aspect-ratio: 1600 / 971; }
.shot figcaption { position: absolute; left: 12px; bottom: 12px; padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.92); font-size: 13px; font-weight: 500; }
.looks { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 26px; padding: 0; }
.look { display: inline-flex; align-items: center; height: 32px; padding-inline: 14px; border-radius: 999px; border: 1px solid var(--panel-line); background: #fff; font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.look--on { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------- final ---------- */
.final { text-align: center; padding-top: clamp(80px, 11vw, 136px); }
.final__mark { width: 128px; height: 128px; margin: -20px auto 4px; }
.final h2 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1; }
.final__lead { max-width: 38ch; margin: 18px auto 0; color: var(--on-blue-2); }
.final__cta { margin-top: 28px; }
.foot {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px;
  margin-top: clamp(72px, 10vw, 120px); padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2); font-size: 14px; color: var(--on-blue-3); text-align: left;
}
.foot a { color: #fff; text-underline-offset: 4px; }
.foot .brand__mark { width: 36px; height: 36px; }
.foot .brand__word { height: 17px; }

/* ---------- entrance ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 450ms var(--ease) both; }
  .rise--2 { animation-delay: 120ms; }
  .rise--3 { animation-delay: 180ms; }
  .rise--4 { animation-delay: 240ms; }
  .rise--5 { animation-delay: 300ms; }
}
@keyframes rise { from { opacity: 0; translate: 0 12px; } to { opacity: 1; translate: 0 0; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ground__aurora, .hex, .caret { animation: none; }
  .room img, .build__panel img { transition: none; }
}

/* ---------- narrow ---------- */
@media (max-width: 900px) {
  .scene__grid, .scene__grid--flip { grid-template-columns: minmax(0, 1fr); }
  .scene__grid--flip .scene__text { order: 0; }
}
@media (max-width: 640px) {
  .top__join { display: none; }
  .waitlist__row { flex-direction: column; border-radius: 24px; }
  .waitlist__row .pill { width: 100%; }
  .more__fields { grid-template-columns: minmax(0, 1fr); }
  .dock { padding: 14px; border-radius: 24px; }
  .dock__now { width: 100%; min-width: 0; text-align: center; }
  .swatches { gap: 2px; }
  .swatch { width: 32px; height: 32px; }
  .build { grid-template-columns: minmax(0, 1fr); }
  .build__panel { width: 100%; max-width: 320px; margin-inline: auto; }
  .office { padding: 70px 10px 12px; }
  .office__prompt { width: calc(100% - 20px); }
  .office__people, .bubble--two { display: none; }
  .bubble { max-width: 220px; font-size: 12px; }
  .foot { flex-direction: column; align-items: flex-start; }
}

.consent-legal { font-size: 13px; line-height: 1.5; color: var(--on-blue-2); margin: 8px 0 0; text-align: left; }
.consent-legal a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-links { display: inline-flex; gap: 16px; align-items: center; }
.footer-links a { color: #fff; }
.cycle-pause{font:inherit;color:inherit;background:transparent;border:1px solid currentColor;border-radius:8px;padding:8px 12px;cursor:pointer}.cycle-pause:focus-visible{outline:3px solid currentColor;outline-offset:4px}
