:root {
  color-scheme: dark;
  --bg: #0f3dff;
  --bg-deep: #08248f;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.78);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.44);
  --panel: rgba(8, 24, 88, 0.24);
  --panel-strong: rgba(8, 24, 88, 0.42);
  --shadow: 0 24px 80px rgba(2, 10, 40, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, #1c51ff 0%, var(--bg) 45%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 45%);
  pointer-events: none;
}

.orbital {
  position: fixed;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbital-one {
  width: min(72vw, 860px);
  height: min(28vw, 320px);
}

.orbital-two {
  width: min(98vw, 1180px);
  height: min(42vw, 500px);
}

.orbital-three {
  width: min(128vw, 1480px);
  height: min(58vw, 720px);
}

.layout {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 48px;
  padding: 36px;
}

.intro-panel,
.hero-panel {
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
}

.intro-panel {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 18px;
}

.kicker,
.eyebrow,
.mini-label,
.info-label {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker,
.eyebrow {
  color: var(--soft);
}

.rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.mini-label,
.info-label {
  color: var(--muted);
}

.mini-copy {
  margin: 0;
  max-width: 20rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 72px);
}

h1 {
  margin: 20px 0 24px;
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 600;
}

h1 span {
  color: rgba(255, 255, 255, 0.58);
}

.hero-copy {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.info-card {
  min-height: 160px;
  padding: 18px;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-value {
  margin: 16px 0 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
}

address.info-value {
  font-style: normal;
}

.address-card {
  background: linear-gradient(180deg, rgba(7, 18, 70, 0.36) 0%, rgba(7, 18, 70, 0.58) 100%);
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }

  .hero-panel {
    min-height: auto;
    justify-content: start;
    padding-bottom: 24px;
  }

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

  .info-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .hero-copy,
  .mini-copy,
  .info-value {
    font-size: 0.98rem;
  }

  .layout {
    padding: 20px;
  }
}
