:root {
  color-scheme: light;
  --bg: #121416;
  --bg-deep: #0a0c0e;
  --ink: #f5f7fa;
  --muted: #b3bac3;
  --accent: #ff4d00;
  --accent-2: #007bff;
  --card: rgba(18, 20, 22, 0.78);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Questrial", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(
      1200px 800px at 12% 12%,
      rgba(255, 77, 0, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 88% 18%,
      rgba(0, 123, 255, 0.22),
      transparent 55%
    ),
    linear-gradient(135deg, var(--bg), var(--bg-deep));
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.halo {
  position: fixed;
  width: 560px;
  height: 560px;
  right: -160px;
  bottom: -220px;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.35) 0%,
    rgba(0, 123, 255, 0) 70%
  );
  filter: blur(10px);
  animation: float 12s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-30px, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 8vw 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.brand-name {
  font-size: 1.1rem;
}

.status-pill {
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(18, 20, 22, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 77, 0, 0.2);
}

main {
  padding: 0 8vw 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  padding: 36px 0 24px;
  animation: fade 0.9s ease both;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 36px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: min(520px, 100%);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 14, 0.6);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

h1 {
  font-size: clamp(2.4rem, 3vw + 1.6rem, 4rem);
  line-height: 1.05;
  margin: 0 0 20px;
}

.subhead {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 28px;
}

.value-triad {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: default;
  box-shadow: var(--shadow);
}

.cta-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 32px 0 40px;
}

.card {
  padding: 20px 22px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 10px;
  align-content: start;
}

.card-icon {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(10, 12, 14, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  padding: 26px 26px;
  background: rgba(18, 20, 22, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer-panel h2 {
  margin: 0 0 12px;
}

.footer-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(18, 20, 22, 0.65);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.step span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 6px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 8vw 40px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .footer-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 24px 6vw 10px;
  }

  main {
    padding: 0 6vw 64px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}
