
:root {
  --bg: #050714;
  --bg-alt: #0f172a;
  --accent: #fbbf24;
  --accent-soft: rgba(251, 191, 36, 0.16);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: #1f2937;
  --card: #111827;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);
  --max-width: 1040px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.page-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9), transparent);
  border-bottom: 1px solid rgba(55, 65, 81, 0.7);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.15);
  background: radial-gradient(circle at 20% 0%, #f97316 0, #facc15 35%, #4f46e5 80%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span:first-child {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text span:last-child {
  font-size: 0.78rem;
  color: var(--muted);
}

nav {
  margin-left: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  font-size: 0.88rem;
}

nav a {
  color: var(--muted);
  padding: 0.35rem 0.1rem;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
  background: rgba(31, 41, 55, 0.8);
}

.nav-cta {
  margin-left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #020617;
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.32);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(251, 191, 36, 0.45);
}

.btn-ghost {
  border-color: rgba(156, 163, 175, 0.6);
  color: var(--muted);
  background: rgba(17, 24, 39, 0.85);
}

.btn-ghost:hover {
  border-color: rgba(249, 250, 251, 0.8);
  color: var(--text);
}

.nav-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(17, 24, 39, 0.95);
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
}

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.section-narrow {
  max-width: 820px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  margin: 1rem 0 0.9rem;
  letter-spacing: 0.01em;
}

.hero-title span.accent {
  background: linear-gradient(135deg, #f97316, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.hero-subtitle strong {
  color: #e5e7eb;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta span::before {
  content: "•";
  margin-right: 0.3rem;
  opacity: 0.7;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.09), transparent 60%), rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(75, 85, 99, 0.8);
  padding: 1.6rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-card-title {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.pill {
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(75, 85, 99, 0.95);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.82rem;
  color: var(--muted);
}

.pill strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.section-heading {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.section-intro {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 1.9rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.97);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.card ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.card ul li {
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  position: relative;
}

.card ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(156, 163, 175, 0.9);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  color: var(--muted);
}

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

form {
  display: grid;
  gap: 0.85rem;
  font-size: 0.9rem;
}

label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.15rem;
  display: block;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(75, 85, 99, 0.95);
  background: rgba(15, 23, 42, 0.98);
  padding: 0.6rem 0.75rem;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5);
  background: #020617;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  border-top: 1px solid rgba(55, 65, 81, 0.8);
  margin-top: 1rem;
  background: #020617;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.3rem 1.25rem 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-style: dotted;
}

@media (max-width: 860px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin-top: 1.4rem;
  }

  .section {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}

@media (max-width: 720px) {
  nav {
    position: absolute;
    inset: 56px 1.1rem auto 1.1rem;
  }

  nav ul {
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 14px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 0.7rem 0.9rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
    display: none;
  }

  nav.open ul {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
