:root {
  --bg: #0d0d0e;
  --bg-soft: #151517;
  --panel: #1b1b1e;
  --gold: #c29a5b;
  --gold-soft: rgba(194, 154, 91, 0.20);
  --cream: #f3eee5;
  --muted: #b9b2a8;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 170px 24px 210px;
  text-align: center;
  background:
    linear-gradient(rgba(13, 13, 14, 0.72), rgba(13, 13, 14, 0.98)),
    radial-gradient(circle at 50% 16%, rgba(194, 154, 91, 0.18), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.017) 0,
      rgba(255, 255, 255, 0.017) 1px,
      transparent 1px,
      transparent 74px
    ),
    var(--bg);
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 68%, rgba(194, 154, 91, 0.08), transparent 25%),
    radial-gradient(circle at 85% 55%, rgba(194, 154, 91, 0.07), transparent 25%);
}

.brand {
  position: absolute;
  z-index: 3;
  top: 46px;
  left: 24px;
  right: 24px;
  text-align: center;
}

.brand__name {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
}

.brand__sub {
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

.brand__meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__title,
.section-heading h2,
.details__copy h2,
.service h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__title {
  margin: 0;
  font-size: clamp(54px, 8vw, 98px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero__lead {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.6vw, 29px);
  line-height: 1.55;
}

.hero__text {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
}

.hero__status {
  display: inline-block;
  margin-top: 34px;
  padding: 13px 20px;
  border: 1px solid rgba(194, 154, 91, 0.52);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skyline {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 235px;
  object-fit: fill;
  opacity: 0.88;
}

.section {
  padding: 105px 0;
}

.section--worlds {
  background: var(--bg);
}

.section--details {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section--service {
  background: var(--bg);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.details__copy h2,
.service h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.12;
}

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

.card {
  min-height: 300px;
  padding: 40px 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 154, 91, 0.55);
}

.card__number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.card h3 {
  margin: 76px 0 14px;
  font-size: 22px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.details__copy p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  position: relative;
  padding: 18px 14px 18px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 15px;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 2px;
  color: var(--gold);
}

.service {
  max-width: 820px;
  text-align: center;
}

.service > p:not(.eyebrow) {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 26px;
  border: 1px solid var(--gold);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  color: #111;
  background: var(--gold);
  transform: translateY(-2px);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #09090a;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__brand strong {
  display: block;
  letter-spacing: 0.14em;
}

.footer__brand span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.footer__links {
  display: flex;
  gap: 22px;
}

.footer__links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 860px;
  }

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

  .card {
    min-height: auto;
  }

  .card h3 {
    margin-top: 38px;
  }

  .details {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 650px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: 890px;
    padding: 150px 16px 160px;
  }

  .brand {
    top: 34px;
  }

  .brand__name {
    letter-spacing: 0.10em;
  }

  .brand__sub {
    letter-spacing: 0.20em;
  }

  .skyline {
    height: 150px;
  }

  .section {
    padding: 74px 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .button {
    transition: none;
  }
}
