:root {
  --bg: #070809;
  --text: #f4f1ec;
  --muted: #b6b0a7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff7a1a;
  --accent-strong: #ffb04d;
  --accent-soft: rgba(255, 122, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.08), transparent 26%),
    linear-gradient(180deg, #0b0c0d 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

.glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.28;
}

.glowOne {
  top: -10rem;
  right: -10rem;
  background: rgba(255, 122, 26, 0.22);
}

.glowTwo {
  bottom: -10rem;
  left: -8rem;
  background: rgba(255, 184, 77, 0.12);
}

.pageShell {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 26px;
}

.brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a,
.button {
  color: inherit;
  text-decoration: none;
}

nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 36px;
  align-items: center;
  padding: 30px 0 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  max-width: 20ch;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.lead,
.statement p,
.miniPanel p,
.bulletList li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.lead {
  max-width: 56ch;
  margin-top: 18px;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1c0d02;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.heroVisual {
  padding: 24px 0;
}

.signalStack {
  padding: 18px 0 20px;
}

.signalLabel {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd1a7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signalLine {
  height: 16px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.14) 0%, rgba(255, 122, 26, 0.86) 100%);
}

.signalLine.long {
  width: 100%;
}

.signalLine.short {
  width: 58%;
}

.miniPanel {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.miniPanel p {
  margin: 0;
}

.statement {
  padding: 34px 0 20px;
  border-top: 1px solid var(--line);
}

.statement p {
  max-width: 62ch;
  margin: 18px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding-top: 32px;
}

.bulletList {
  margin: 14px 0 0;
  padding-left: 18px;
}

.bulletList li + li {
  margin-top: 10px;
}

@media (max-width: 840px) {
  .topbar,
  .hero,
  .split {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    gap: 12px;
  }

  h1,
  h2 {
    max-width: none;
  }
}
