:root {
  --bg: #0b1720;
  --panel: rgba(10, 24, 35, 0.8);
  --panel-strong: rgba(10, 24, 35, 0.94);
  --line: rgba(126, 193, 223, 0.16);
  --text: #edf6fb;
  --muted: #a7bcc8;
  --accent: #ff7f41;
  --support: #78d5e3;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 127, 65, 0.18), transparent 24%),
    radial-gradient(circle at right 20%, rgba(120, 213, 227, 0.16), transparent 26%),
    linear-gradient(180deg, #10212e 0%, #0a141c 58%, #060d13 100%);
  font-family: "Public Sans", "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

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

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
strong {
  color: var(--text);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.02;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3.5rem;
  position: relative;
  z-index: 1;
}

.site-header,
.hero-copy,
.hero-panel,
.card,
.feature-card,
.band-card,
.cta-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  border-radius: 999px;
  background: rgba(7, 16, 24, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, var(--accent), #ffac7f);
  color: #1e1006;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav,
.hero-actions,
.footer-links,
.cta-actions,
.point-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero,
.problem-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: stretch;
  padding: 5rem 0 2rem;
}

.hero-copy,
.hero-panel,
.card,
.feature-card,
.band-card,
.cta-card {
  border-radius: 2rem;
  background: var(--panel);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.eyebrow,
.tag,
.panel-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--support);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
}

.hero h1 {
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ffb288);
  color: #1c0f08;
}

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

.status-stack {
  display: grid;
  gap: 0.8rem;
}

.status-stack article {
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-stack span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding-top: 2.5rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  max-width: 13ch;
}

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

.card h3,
.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

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

.feature-card-large {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(255, 127, 65, 0.16), transparent 28%),
    var(--panel-strong);
}

.band-card,
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.point-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.cta-section {
  padding-bottom: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

@media (max-width: 960px) {
  .hero,
  .problem-grid,
  .feature-grid,
  .band-card,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: auto;
  }

  .hero h1,
  .section-heading h2 {
    max-width: none;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    border-radius: 1.45rem;
  }

  .site-nav a {
    flex: 1 1 40%;
    text-align: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .feature-card,
  .band-card,
  .cta-card {
    border-radius: 1.35rem;
  }
}
