
:root {
  --bg: #020617;
  --bg-alt: #050816;
  --bg-elevated: #0b1220;
  --border-subtle: #111827;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-strong: #fb923c;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --chip: rgba(15,23,42,0.9);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.28);
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top left, var(--bg-alt) 0, var(--bg) 40%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

/* Layout helpers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2.75rem;
}

main {
  min-height: calc(100vh - 140px);
}

/* Header / nav */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.95),
    rgba(2,6,23,0.78)
  );
  border-bottom: 1px solid rgba(15,23,42,0.9);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-badge-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-right: 10px;
  border-radius: 6px; /* optional: remove if you want sharp edges */
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fbbf24, #ef4444 40%, #111827 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
  color: #f9fafb;
}

.logo-text-main {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.logo-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

nav a {
  color: var(--text-muted);
}

nav a:hover {
  color: var(--text);
}

.nav-cta a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f9fafb;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(15,23,42,0.55);
  white-space: nowrap;
}

.nav-cta a:hover {
  background: var(--accent-strong);
}

/* Hero / sections */
.hero {
  padding-top: 2.5rem;
  padding-bottom: 2.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2rem;
  align-items: center;
}

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

.eyebrow {
  font-size: 0.8rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
}

.eyebrow span {
  font-size: 0.95rem;
}

h1, h2, h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-top: 1.05rem;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #f9fafb;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.chip {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid rgba(148,163,184,0.35);
  color: var(--text-muted);
}

/* Cards / grids / sections */
.section {
  margin-top: 2.75rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent-strong);
}

.section-title {
  font-size: 1.35rem;
  margin-top: 0.4rem;
  margin-bottom: 0.45rem;
}

.section-sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 34rem;
}

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

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

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

.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

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

/* List */
ul.list-clean {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

ul.list-clean li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

ul.list-clean li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
}

/* Forms */
form {
  display: grid;
  gap: 0.9rem;
  max-width: 480px;
}

label {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(75,85,99,0.95);
  background: rgba(15,23,42,0.95);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

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

/* Footer */
footer {
  border-top: 1px solid rgba(15,23,42,0.95);
  padding: 1.6rem 1.5rem 2.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  background: #020617;
}
header .logo-badge-img {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  object-fit: contain;
  display: block;
  margin-right: 12px;
  border-radius: 8px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45)); /* subtle lift */
}
