* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #120d08;
  --bg-2: #24170c;
  --panel: rgba(22, 16, 10, 0.84);
  --panel-strong: rgba(35, 24, 14, 0.9);
  --line: rgba(255, 170, 62, 0.26);
  --text: #f4e8d2;
  --muted: #bea989;
  --accent: #f7a51d;
  --accent-2: #ffcf6c;
  --shadow: rgba(0, 0, 0, 0.55);
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 172, 55, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 80%, rgba(255, 109, 25, 0.12), transparent 30rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 58%, #0a0907);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  place-items: center;
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  align-items: stretch;
  gap: 18px;
}

.hero__image-wrap,
.panel {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 0 24px 80px var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 520px;
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.panel {
  border-radius: 26px;
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.connect-card {
  margin: 30px 0 0;
  padding: 16px;
  border: 1px solid rgba(247, 165, 29, 0.34);
  border-radius: 18px;
  background: var(--panel-strong);
  display: grid;
  gap: 10px;
}

.label,
.facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

code {
  display: block;
  color: #fff4d9;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

button {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  color: #1d1308;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(247, 165, 29, 0.22);
}

button:hover {
  transform: translateY(-1px);
}

.map-link {
  margin: 14px 0 0;
  padding: 15px 16px;
  border: 1px solid rgba(125, 197, 255, 0.28);
  border-radius: 16px;
  color: var(--text);
  background: rgba(65, 115, 125, 0.22);
  display: grid;
  gap: 6px;
  text-decoration: none;
}

.map-link:hover {
  border-color: rgba(125, 197, 255, 0.48);
  transform: translateY(-1px);
}

.map-link span {
  color: #9bd4df;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-link strong {
  font-size: 17px;
}

.facts {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.facts div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.facts strong {
  display: block;
  margin-top: 7px;
  font-size: 14px;
}

.note {
  margin: 22px 0 0;
  color: #d8c29e;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 18px 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__image-wrap {
    min-height: 320px;
  }

  .facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .panel,
  .hero__image-wrap {
    border-radius: 20px;
  }

  h1 {
    font-size: 40px;
  }
}
