:root {
  color-scheme: dark;
  --bg: #0b0d0f;
  --bg-soft: #111418;
  --bg-card: #171b20;
  --text: #ffffff;
  --text-muted: #c0c4ca;
  --accent: #ff4400;
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 1100px;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../../assets/fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../../assets/fonts/Rajdhani-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at top right, #1b1f23 0%, #0b0d0f 45%, #07090b 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 50px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  font-family: "Rajdhani", "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: var(--text);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0a0b0c;
  box-shadow: 0 0 24px rgba(255, 68, 0, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 68, 0, 0.4);
}

.hero {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  padding: 54px clamp(24px, 6vw, 72px);
}

.hero-content {
  max-width: 700px;
  display: grid;
  gap: 14px;
}

.eyebrow {
  font-family: "Rajdhani", "Space Grotesk", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1.2rem, 3.2rem);
  line-height: 1.1;
}

.hero-copy {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.section-header {
	margin-top:20px;
  display: grid;
  gap: 8px;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}


.section-header h2 {
  font-size: 1.9rem;
}

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

.body {
  color: var(--text-muted);
}

.steps {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: steps;
}

.steps li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  counter-increment: steps;
  color: var(--text-muted);
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--accent);
  font-weight: 600;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.card:hover {
  border-color: rgba(255, 68, 0, 0.4);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}


.card h3 {
  font-size: 1.2rem;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.callout {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 8px;
}

.callout strong {
  font-size: 0.95rem;
}

.callout.important {
  background: rgba(255, 68, 0, 0.08);
  border-color: rgba(255, 68, 0, 0.4);
}

.callout.tip {
  background: rgba(255, 255, 255, 0.04);
}

.footer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 22px 18px 40px;
  }

  .btn.primary {
    width: 100%;
  }

  .hero {
    padding: 46px 22px;
  }
}

