:root {
  --bg: #0b0d10;
  --bg-2: #111418;
  --card: #141a20;
  --accent: #ffb200;
  --accent-2: #36d7b7;
  --text: #f5f4f1;
  --muted: #9aa3ad;
  --outline: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(circle at top, rgba(255, 178, 0, 0.08), transparent 55%),
    linear-gradient(160deg, #0a0c0f 0%, #10151b 45%, #0f1317 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  filter: blur(0px);
  border-radius: 50%;
  opacity: 0.65;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.4), transparent 65%);
}

.orb-2 {
  width: 320px;
  height: 320px;
  bottom: -90px;
  left: -60px;
  background: radial-gradient(circle, rgba(54, 215, 183, 0.35), transparent 65%);
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.25;
}

.page {
  position: relative;
  z-index: 1;
  padding: 72px clamp(20px, 6vw, 90px) 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 64px;
}

.hero {
  display: grid;
  gap: 24px;
  animation: fadeIn 0.9s ease forwards;
  opacity: 0;
}

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--accent-2);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.subhead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(255, 178, 0, 0.2);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 178, 0, 0.25);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--outline);
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--mono);
}

.stat-value {
  font-size: 1.05rem;
  margin-top: 6px;
}

.section {
  display: grid;
  gap: 24px;
  animation: fadeInUp 0.9s ease forwards;
  opacity: 0;
}

.section:nth-of-type(1) {
  animation-delay: 0.1s;
}

.section:nth-of-type(2) {
  animation-delay: 0.2s;
}

.section:nth-of-type(3) {
  animation-delay: 0.3s;
}

.section:nth-of-type(4) {
  animation-delay: 0.4s;
}

.section:nth-of-type(5) {
  animation-delay: 0.5s;
}

.section:nth-of-type(6) {
  animation-delay: 0.6s;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.section-title p {
  color: var(--muted);
}

.card {
  background: linear-gradient(140deg, rgba(20, 26, 32, 0.9), rgba(13, 16, 20, 0.8));
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

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

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tags li {
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.simple-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.simple-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(54, 215, 183, 0.15);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  margin-top: 7px;
  box-shadow: 0 0 0 6px rgba(54, 215, 183, 0.1);
}

.contact {
  display: grid;
  gap: 16px;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--mono);
}

.contact-value {
  font-size: 1.05rem;
  margin-top: 6px;
}

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding-bottom: 20px;
}

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

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

@media (max-width: 780px) {
  .page {
    padding: 56px 20px 70px;
  }

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

  .button {
    width: 100%;
  }
}
