:root {
  --bg: #060816;
  --bg-soft: #090d1b;
  --panel: rgba(10, 16, 36, 0.72);
  --panel-strong: rgba(5, 10, 22, 0.96);
  --border: rgba(125, 211, 252, 0.14);
  --text: #f6f8ff;
  --muted: #8a9dbc;
  --accent: #1ea4ff;
  --accent-2: #7ee7ff;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 164, 255, 0.1), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(44, 74, 163, 0.14), transparent 22%),
    linear-gradient(180deg, #03050d 0%, #050913 42%, #05070f 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page-glow {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.15;
  z-index: -1;
}

.page-glow-left {
  top: 12rem;
  left: -12rem;
  background: rgba(0, 146, 255, 0.46);
}

.page-glow-right {
  top: 34rem;
  right: -14rem;
  background: rgba(44, 74, 163, 0.42);
}

.topbar,
.section,
.footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 10px;
}

.brand {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ticker span,
.chip-row span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 42px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 84px);
}

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

h1,
h2,
h3,
.brand {
  line-height: 0.98;
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: -0.06em;
}

h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 18px 0 8px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-text,
.section-copy,
.city-card-body p,
.capability-card p,
.hero-note-text {
  color: var(--muted);
}

.hero-text,
.section-copy {
  max-width: 38rem;
  font-size: 1.02rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #0f1f45, #184f95);
  color: var(--text);
  border-color: rgba(126, 231, 255, 0.2);
  box-shadow: 0 15px 40px rgba(15, 31, 69, 0.42);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: #d6e4fb;
}

.signal-grid,
.capability-grid,
.status-list {
  display: grid;
  gap: 16px;
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-card,
.capability-card,
.status-item,
.hero-note,
.status-panel,
.city-card-body {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(7, 12, 26, 0.92), rgba(4, 8, 19, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-card {
  border-radius: 24px;
  padding: 18px;
}

.signal-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

.signal-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-media {
  display: grid;
  gap: 18px;
}

.hero-frame {
  position: relative;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(116, 243, 255, 0.18);
  box-shadow: var(--shadow);
  background: var(--panel-strong);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 48%, transparent 70%);
  transform: translateX(-120%);
  animation: sweep 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-frame img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(3, 8, 18, 0.72);
  border: 1px solid rgba(116, 243, 255, 0.14);
}

.frame-city {
  font-weight: 700;
}

.frame-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-note {
  padding: 18px 20px;
  border-radius: 22px;
}

.hero-note-label,
.city-name,
.capability-kicker,
.status-label,
.footer-copy {
  margin: 0 0 6px;
  color: var(--accent-2);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note-title,
.footer-brand {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-note-text {
  margin: 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.thesis {
  padding-top: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.city-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(116, 243, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.city-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.city-card-wide {
  grid-column: span 2;
}

.city-card-wide img {
  aspect-ratio: 16 / 8;
}

.city-card-body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 22px;
  padding: 16px 18px;
}

.city-card-body p,
.capability-card p,
.status-item {
  margin: 0;
}

.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card {
  border-radius: 26px;
  padding: 22px;
}

.capability-card h3 {
  margin-bottom: 12px;
}

.status-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  border-radius: 30px;
  padding: 28px;
}

.status-list {
  grid-template-columns: 1fr;
  align-content: start;
}

.status-item {
  border-radius: 22px;
  padding: 18px;
}

.status-item strong {
  font-size: 1.05rem;
}

.closing-banner {
  padding-bottom: 74px;
}

.closing-banner::before {
  content: "";
  display: block;
  width: 100%;
  height: 420px;
  border-radius: 34px;
  margin-bottom: -290px;
  background:
    linear-gradient(180deg, rgba(4, 8, 18, 0.1), rgba(4, 8, 18, 0.92)),
    url("assets/george-dubai.jpg") center/cover no-repeat;
  border: 1px solid rgba(116, 243, 255, 0.12);
  box-shadow: var(--shadow);
}

.closing-copy {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 32px));
  margin-left: 32px;
  padding: 26px 0 0;
}

.closing-copy p:last-child {
  color: var(--text);
  max-width: 30rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 0 0 36px;
}

.footer-imprint {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.footer-links a:hover,
.brand:hover {
  color: var(--text);
}

.legal-main {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
  padding: 28px 0 64px;
}

.legal-hero {
  max-width: 760px;
  padding: 38px 0 12px;
}

.legal-hero p:last-child {
  color: var(--muted);
  max-width: 42rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.legal-grid-single {
  grid-template-columns: 1fr;
}

.legal-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(7, 12, 26, 0.92), rgba(4, 8, 19, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 24px;
}

.legal-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.legal-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin: 0 0 12px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card li + li {
  margin-top: 10px;
}

.legal-meta {
  display: grid;
  gap: 4px;
  color: var(--text);
  line-height: 1.55;
}

.legal-meta span:first-child {
  font-weight: 700;
}

.legal-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes sweep {
  0%,
  55% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 980px) {
  .hero,
  .status-panel,
  .capability-grid,
  .signal-grid,
  .city-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .city-card-wide {
    grid-column: auto;
  }

  .city-card-wide img {
    aspect-ratio: 1 / 1;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .closing-copy {
    margin-left: 18px;
  }
}

@media (max-width: 640px) {
  .topbar,
  .section,
  .footer {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-main {
    width: min(calc(100% - 24px), 980px);
  }

  .footer-imprint {
    text-align: left;
  }

  h1 {
    font-size: clamp(3.1rem, 19vw, 4.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-frame,
  .city-card,
  .status-panel {
    border-radius: 24px;
  }

  .closing-banner::before {
    height: 360px;
    margin-bottom: -250px;
  }

  .closing-copy {
    width: calc(100% - 18px);
    margin-left: 0;
  }
}
