:root {
  --ink: #0b0b0b;
  --muted: #6f6b64;
  --line: #ded8cf;
  --paper: #faf9f6;
  --sand: #f5f1ea;
  --orange: #ff5a1f;
  --blue: #245cff;
  --green: #1b7f5a;
  --aubergine: #6d4aff;
  --gold: #b7791f;
  color-scheme: light;
  font-family: Inter, "Helvetica Neue", "Noto Sans SC", "Source Han Sans SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", "Noto Sans SC", "Source Han Sans SC", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
body.lock-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  max-width: 1200px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}
.wordmark img { width: clamp(42px, 4vw, 58px); height: clamp(42px, 4vw, 58px); }
.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(11, 11, 11, 0.68);
  font-size: 14px;
}
.nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-toggle, .ghost-button, .solid-button {
  min-height: 42px;
  border: 1px solid rgba(11, 11, 11, 0.18);
  border-radius: 999px;
  background: transparent;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.solid-button {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.language-toggle:hover, .ghost-button:hover, .solid-button:hover { transform: translateY(-1px); border-color: var(--orange); }
.solid-button:hover { background: var(--orange); color: white; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 24px;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.world-hero { background: var(--ink); color: white; }
.city-hero { background: var(--paper); }
.hero-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 24px 56px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(52px, 8.4vw, 116px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 790;
}
.hero p {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(11, 11, 11, 0.68);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.world-hero p { color: rgba(255, 255, 255, 0.72); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.world-hero .ghost-button { border-color: rgba(255,255,255,0.34); color: white; }
.world-hero .solid-button { border-color: white; background: white; color: var(--ink); }
.world-hero .solid-button:hover { background: var(--orange); border-color: var(--orange); color: white; }

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  background: #fffdfa;
  overflow: hidden;
}
.world-hero .hero-visual { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); }
.image-panel {
  position: absolute;
  inset: 0;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,249,246,0) 48%, rgba(250,249,246,0.78));
}
.world-hero .image-panel::after { background: linear-gradient(180deg, rgba(11,11,11,0.04), rgba(11,11,11,0.72)); }
.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(14px);
}
.world-hero .floating-note { border-color: rgba(255,255,255,0.18); background: rgba(11,11,11,0.72); }
.floating-note strong { display: block; margin-bottom: 8px; font-size: 18px; }
.floating-note span { color: var(--muted); line-height: 1.5; }
.world-hero .floating-note span { color: rgba(255,255,255,0.68); }

.signal-map {
  position: absolute;
  inset: -20% -10%;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 20% 30%, var(--orange) 0 2px, transparent 2.5px),
    radial-gradient(circle at 70% 24%, white 0 1.5px, transparent 2px),
    radial-gradient(circle at 42% 68%, white 0 1.5px, transparent 2px),
    linear-gradient(115deg, transparent 0 47%, rgba(255,255,255,0.3) 47.2% 47.6%, transparent 47.8%),
    linear-gradient(30deg, transparent 0 56%, rgba(255,90,31,0.5) 56.1% 56.4%, transparent 56.6%);
  background-size: 340px 240px, 260px 210px, 300px 230px, 520px 340px, 620px 360px;
  animation: drift 18s linear infinite alternate;
}
@keyframes drift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-28px, 18px, 0); } }

.section-kicker {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}
.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.section-heading p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}
.grid-3, .grid-4, .grid-6 {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  padding: 24px;
  min-height: 176px;
}
.card h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.12; }
.card p { color: var(--muted); line-height: 1.55; margin-bottom: 0; }
.metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 760;
}
.metric::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.process-step:last-child { border-right: 0; }
.process-step b { color: var(--orange); font-size: 14px; }
.process-step strong { display: block; margin-bottom: 10px; font-size: 24px; }
.process-step span { color: var(--muted); line-height: 1.5; }

.category-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: white;
}
.line-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--orange);
}
.category-card:nth-child(2) .line-icon { color: var(--blue); }
.category-card:nth-child(3) .line-icon { color: var(--green); }
.category-card:nth-child(4) .line-icon { color: var(--aubergine); }
.category-card:nth-child(5) .line-icon { color: var(--gold); }
.category-card:nth-child(6) .line-icon { color: var(--orange); }
.category-card h3 { margin-bottom: 8px; font-size: 24px; }
.category-card small {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-weight: 700;
}
.category-card p { color: var(--muted); line-height: 1.5; margin: 0; }

.visual-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 16px;
}
.poi-tile {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  background: white;
  overflow: hidden;
}
.poi-tile.large { min-height: 520px; grid-row: span 2; }
.poi-tile img { width: 100%; height: 100%; object-fit: cover; }
.poi-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(12px);
  font-weight: 760;
}

.mockup {
  border: 1px solid var(--ink);
  background: white;
  padding: clamp(18px, 3vw, 34px);
}
.prompt-box {
  border: 1px solid var(--line);
  padding: 18px 20px;
  margin-bottom: 18px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.prompt-box span:first-child { color: var(--ink); font-weight: 680; }
.recommendations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.rec-card {
  border: 1px solid var(--line);
  padding: 18px;
}
.rec-card h3 { margin-bottom: 12px; font-size: 21px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  border: 1px solid rgba(255,90,31,0.28);
  color: var(--orange);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
}
.rec-card p { color: var(--muted); margin: 0; line-height: 1.5; }

.waitlist-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--ink);
  padding-top: clamp(30px, 5vw, 56px);
}
.waitlist-form {
  display: grid;
  gap: 14px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; color: rgba(11,11,11,0.7); font-size: 14px; }
input, textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: var(--ink);
  padding: 14px 15px;
}
textarea { min-height: 118px; resize: vertical; }
.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.check-chip {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: white;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
}
.check-chip input { width: 16px; min-height: 16px; accent-color: var(--orange); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status {
  display: none;
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--muted);
  background: white;
}
.form-status.is-visible { display: block; }
.form-status.success { border-color: rgba(27,127,90,0.32); color: var(--green); }
.form-status.error { border-color: rgba(255,90,31,0.4); color: var(--orange); }

.dark-band {
  background: var(--ink);
  color: white;
}
.dark-band .section-heading p, .dark-band .card p, .dark-band .process-step span { color: rgba(255,255,255,0.66); }
.dark-band .card, .dark-band .process-step { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.16); }
.dark-band .process { border-color: rgba(255,255,255,0.16); }
.dark-band .process-step { border-right-color: rgba(255,255,255,0.16); }

.contact-block {
  border-top: 1px solid var(--ink);
  padding-top: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}
.email-link {
  font-size: clamp(32px, 5vw, 76px);
  line-height: 1;
  font-weight: 780;
  color: var(--orange);
  overflow-wrap: anywhere;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.footer-links { display: flex; gap: 18px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .nav { display: none; }
  .hero-grid, .waitlist-panel, .contact-block { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .dark-band .process-step:nth-child(-n+2) { border-bottom-color: rgba(255,255,255,0.16); }
  .visual-strip { grid-template-columns: 1fr 1fr; }
  .poi-tile.large { grid-column: 1 / -1; grid-row: auto; min-height: 440px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 16px; }
  .language-toggle { min-width: 52px; padding: 0 12px; }
  .hero-grid, .section { padding-left: 16px; padding-right: 16px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(44px, 13vw, 68px); }
  .hero p { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .solid-button, .ghost-button { width: 100%; min-height: 50px; }
  .hero-visual { min-height: 360px; }
  .grid-3, .grid-4, .grid-6, .process, .recommendations, .visual-strip, .field-row, .interest-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}