:root {
  color-scheme: dark;
  --bg: #06111d;
  --bg-deep: #02070d;
  --panel: rgba(6, 16, 29, 0.86);
  --panel-strong: rgba(10, 24, 41, 0.94);
  --panel-soft: rgba(13, 32, 53, 0.78);
  --text: #f5f3eb;
  --muted: #b4c0cf;
  --accent: #ef7b2d;
  --accent-strong: #ffb14b;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 123, 45, 0.18), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(74, 120, 173, 0.22), transparent 28%),
    linear-gradient(180deg, #091624 0%, var(--bg-deep) 70%);
}

a {
  color: inherit;
}

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.hero-header {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(9, 22, 36, 0.96), rgba(6, 14, 24, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  box-shadow: var(--shadow);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.hero-orbit-one {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 177, 75, 0.3), transparent 72%);
}

.hero-orbit-two {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(66, 111, 160, 0.22), transparent 72%);
}

.brand-bar,
.hero-nav,
.hero-grid {
  position: relative;
  z-index: 1;
}

.brand-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0a1521;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-name {
  margin: 0;
  color: #dbe2ee;
  font-size: 0.96rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
  align-items: stretch;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-copy h1,
.section-intro h2,
.contact-panel h2,
.hero-aside h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.92;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #101824;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 28px rgba(239, 123, 45, 0.18);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d9e1ec;
  font-size: 0.94rem;
}

.hero-aside {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(14, 31, 50, 0.9), rgba(9, 21, 36, 0.96));
}

.hero-panel-label {
  margin: 0;
  color: #d8e0ea;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.hero-aside h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.signal-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.signal-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-card strong,
.stats-grid strong,
.process-step span {
  display: block;
}

.signal-card strong {
  margin-bottom: 6px;
  color: #fff6e8;
}

.signal-card span {
  color: var(--muted);
}

.section {
  margin-top: 44px;
}

.panel {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.dark-panel {
  background: linear-gradient(180deg, rgba(11, 26, 44, 0.95), rgba(7, 17, 29, 0.96));
}

.section-intro {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-intro h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.section-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.grid,
.cards-grid,
.sector-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card,
.sector-card,
.process-step {
  padding: 24px;
  border-radius: 22px;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.card-glow {
  background: linear-gradient(180deg, rgba(11, 29, 48, 0.95), rgba(7, 18, 31, 0.96));
}

.card-contrast {
  background: rgba(255, 255, 255, 0.035);
}

.card h3,
.sector-card h3,
.process-step h3,
.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #fff8ef;
}

.card p,
.sector-card p,
.process-step p,
.highlight-box p {
  margin: 0;
  color: var(--muted);
}

.sector-panel {
  background:
    linear-gradient(180deg, rgba(10, 24, 40, 0.92), rgba(6, 16, 27, 0.94));
}

.sector-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sector-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.feature-panel {
  padding: 0;
  background: transparent;
  border: 0;
}

.split-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.95fr);
  align-items: start;
}

.highlight-box {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(14, 37, 61, 0.94), rgba(8, 21, 36, 0.98));
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.stats-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.stats-grid div {
  padding: 17px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.stats-grid strong {
  font-size: 1.5rem;
  color: var(--text);
}

.stats-grid span {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #ffe1bd;
  text-decoration: none;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.process-step span {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(16, 36, 58, 0.95), rgba(9, 20, 33, 0.96));
}

.contact-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.contact-panel p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 20px 16px 32px;
  }

  .hero-header,
  .panel,
  .contact-panel {
    padding: 22px;
  }

  .hero-nav {
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand-bar {
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.3rem);
  }

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

  .hero-proof {
    flex-direction: column;
  }
}
