:root {
  --bg-main: #050506;
  --bg-card: #101217;
  --bg-card-alt: #181b22;
  --text-main: #ffffff;
  --text-muted: #aeb3ba;
  --accent: #4d9fff;
  --radius-lg: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1080px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--text-main);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
}

/* Mobile nav */

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 20px 16px;
  background: #08090d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a {
  padding: 8px 0;
  color: var(--text-muted);
}

/* Hero */

.hero {
  padding: 96px 0 72px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3.2vw + 1.5rem, 3.1rem);
  margin: 16px 0 16px;
}

.hero-text p {
  margin: 0 0 24px;
  color: var(--text-muted);
  max-width: 620px;
}

/* Pills */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pill-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Hero actions */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #02040a;
  font-weight: 500;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hero visual */

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: radial-gradient(circle at top left, #182034, #050506);
  border-radius: 26px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7);
  max-width: 420px;
  width: 100%;
}

.hero-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

/* Sections */

.section {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section h2 {
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.section-text {
  margin: 0;
  color: var(--text-muted);
  max-width: 680px;
}

/* Grid / Cards */

.section-grid .grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

/* Contact */

.contact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-grid h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-mail {
  color: var(--text-main);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding-top: 80px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .card,
  .section,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-card {
    border-radius: 20px;
  }
}
.single-footer {
  justify-content: center !important;
}
