:root {
  color-scheme: light;
  --bg: #0b1220;
  --bg-alt: #0f172a;
  --surface: #131c32;
  --surface-light: #1b2642;
  --card: #0f1b32;
  --accent: #f97316;
  --accent-strong: #ea580c;
  --text: #f8fafc;
  --text-muted: #cbd5f5;
  --line: rgba(148, 163, 184, 0.2);
  --pill-ok: #22c55e;
  --pill-warn: #facc15;
  --pill-alert: #f43f5e;
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.4);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: "Space Grotesk", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: radial-gradient(circle at top, #1b2440 0%, #0b1220 50%, #060b15 100%);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(11, 18, 32, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.brand__logo {
  width: 44px;
  height: 44px;
}

.brand__name {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand__tag {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav__cta {
  display: flex;
  gap: 0.75rem;
}

.button {
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0b1220;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: -40% 0 auto;
  height: 60%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  z-index: 1;
}

.eyebrow {
  font-family: var(--mono);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero__copy h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.meta__value {
  margin: 0;
  font-weight: 700;
}

.meta__label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__panel {
  display: grid;
  gap: 1.5rem;
}

.hero__card {
  background: linear-gradient(160deg, #111c33, #0d1629);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card__header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.card__row:last-child {
  border-bottom: none;
}

.card__title {
  margin: 0;
  font-weight: 600;
}

.card__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  color: #0b1220;
}

.pill--ok {
  background: var(--pill-ok);
}

.pill--warn {
  background: var(--pill-warn);
}

.pill--alert {
  background: var(--pill-alert);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.metric__value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.metric__label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  margin-bottom: 2.5rem;
}

.section__header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section__header p {
  margin: 0;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.feature-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--accent);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.workflow__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.workflow__list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.workflow__list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.workflow__panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
}

.workflow__step {
  background: var(--surface-light);
  border-radius: 16px;
  padding: 1.25rem;
}

.step__label {
  font-family: var(--mono);
  letter-spacing: 0.2rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  margin: 0 0 0.5rem;
}

.reminders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.reminders__card {
  background: var(--card);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
}

.reminders__pillset {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reminders__list {
  display: grid;
  gap: 1rem;
}

.reminders__item {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq__item {
  background: var(--surface);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--line);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

 .cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 30px 70px -50px rgba(15, 23, 42, 0.9);
}

@media (min-width: 768px) {
  .cta-panel {
    flex-direction: row;
    align-items: center;
  }
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: #05080f;
}

.footer__inner {
  display: grid;
  gap: 1rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
}

.footer__meta {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 5rem;
  }

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