/* ========= Global ========= */

:root {
  --bg-body: #0f172a;
  --bg-elevated: #020617;
  --bg-soft: #020617;
  --bg-card: #020617;
  --bg-light: #f9fafb;

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-strong: #f9fafb;

  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.14);
  --accent-strong: #4f46e5;
  --accent-alt: #22c55e;

  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.6);
  --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.4);

  --wrap: 1120px;
  --gap-section: clamp(72px, 10vh, 110px);
  --pad-section: clamp(32px, 6vw, 72px);
}

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

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top left, #111827 0, #020617 40%, #020617 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Limit width + padding */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

/* ========= STICKY HEADER ========= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.85));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__logo-dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #22c55e);
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.4);
}

.site-header__brand-name {
  font-weight: 600;
  color: #e5e7eb;
  font-size: 15px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header__nav a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-header__nav a:hover:not(.site-header__cta) {
  color: #e5e7eb;
}

.site-header__cta {
  font-size: 13px;
  padding: 8px 18px;
}

/* === HAMBURGER TOGGLE (hidden on desktop) === */
.site-header__toggle {
  display: none; /* becomes flex on mobile */
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.site-header__toggle i {
  font-size: 18px;
  color: #e5e7eb;
  transition: opacity 0.18s ease, transform 0.18s ease;
  position: absolute;
}

/* Default: show menu */
.site-header__toggle .fa-bars {
  opacity: 1;
}

.site-header__toggle .fa-xmark {
  opacity: 0;
  transform: scale(0.8);
}

/* Active state: swap icons */
.site-header__toggle.is-active .fa-bars {
  opacity: 0;
  transform: scale(0.8);
}

.site-header__toggle.is-active .fa-xmark {
  opacity: 1;
  transform: scale(1);
}

/* Mobile header tweaks (spacing only) */
@media (max-width: 720px) {
  .site-header__inner {
    gap: 12px;
  }
  .site-header__nav {
    gap: 12px;
    font-size: 12px;
  }
}

/* Mobile nav dropdown behaviour */
@media (max-width: 860px) {
  .site-header__toggle {
    display: inline-flex;
    z-index: 60;
  }

  .site-header__nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
    padding: 12px 22px 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.95);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    z-index: 55;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__nav a {
    font-size: 13px;
  }

  .site-header__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ========= Base Hero (background + blobs) ========= */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-block: var(--pad-section);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient orb background */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.7;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.5), transparent);
  top: -80px;
  right: -120px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent);
  bottom: -120px;
  left: -80px;
}

/* (legacy hero-box – unused but harmless) */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
  padding: clamp(28px, 6vw, 40px);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.76, 0.3, 1) both;
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0 0 10px;
}

.hero-sub {
  font-size: clamp(16px, 1.1rem, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 24px;
}

/* Primary CTA */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #f9fafb;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
              opacity 0.18s ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.cta:hover::after {
  opacity: 0.9;
}

.cta.dark {
  background: #f9fafb;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
}

/* ========= Sections ========= */

section {
  padding-block: var(--gap-section);
}

.section-title {
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 16px;
  color: #e5e7eb;
}

.section-sub {
  margin: 0 0 32px;
  max-width: 560px;
  color: var(--text-muted);
}

.features {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
}

.features .wrap {
  position: relative;
}

.features .wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  opacity: 0.4;
  pointer-events: none;
}

/* ========= Features Grid / Cards ========= */

.grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  padding: 20px 20px 22px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card h3 {
  position: relative;
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--text-strong);
}

.card p {
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.7);
  border-color: rgba(129, 140, 248, 0.85);
}

.card:hover::before {
  opacity: 1;
}

/* ========= Showcase ========= */

.showcase {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617 90%);
}

.showcase-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.showcase-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-card);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.showcase-card.large {
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 0.76, 0.3, 1);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.68),
    rgba(15, 23, 42, 0.15)
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.85);
  border-color: rgba(129, 140, 248, 0.9);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card:hover::after {
  opacity: 1;
}

/* ========= Pricing ========= */

.pricing {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617 90%);
}

.price-card {
  margin-top: 16px;
  padding: 26px 24px 24px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  max-width: 420px;
}

.price-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text-strong);
}

.price {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #fbbf24;
}

.desc {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ========= Contact & Forms ========= */

.contact {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617 90%);
  padding-bottom: clamp(80px, 10vh, 120px);
}

.contact-form {
  margin-top: 20px;
  max-width: 560px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(129, 140, 248, 0.9);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.6);
}

.contact-form button.cta {
  justify-self: flex-start;
}

/* ========= CART & CHECKOUT BOXES ========= */

.cart-box,
.checkout-box {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
  padding: 18px 18px 20px;
}

.cart-box {
  background: rgba(15, 23, 42, 0.96);
}

.cart-box__title {
  margin: 0 0 12px;
  font-size: 17px;
  color: #e5e7eb;
}

.cart-box__empty {
  margin: 0 0 8px;
  font-size: 14px;
  color: #9ca3af;
}

.cart-box__table-wrap {
  overflow-x: auto;
}

.cart-box__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 420px;
}

.cart-box__table th,
.cart-box__table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(55, 65, 81, 0.7);
  text-align: left;
}

.cart-box__table th:last-child,
.cart-box__table td:last-child {
  text-align: center;
}

.cart-box__table thead {
  color: #9ca3af;
}

.cart-box__totals {
  margin-top: 14px;
  border-top: 1px dashed rgba(75, 85, 99, 0.8);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.cart-box__totals > div {
  display: flex;
  justify-content: space-between;
}

.cart-box__totals span:first-child {
  color: #9ca3af;
}

.cart-box__grand {
  margin-top: 4px;
  font-weight: 600;
  color: #f9fafb;
}

.cart-box__qty-input {
  width: 60px;
  padding: 5px 6px;
  border-radius: 8px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.cart-box__remove {
  border: none;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: rgba(248, 113, 113, 0.22);
  color: #fecaca;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  transition: background 0.18s ease, transform 0.18s ease;
}

.cart-box__remove:hover {
  background: rgba(248, 113, 113, 0.38);
  transform: translateY(-1px);
}

.cart-box__cta {
  margin-top: 12px;
  font-size: 13px;
}

.checkout-box {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.2), rgba(15, 23, 42, 0.97));
}

.checkout-box__title {
  margin: 0 0 12px;
  font-size: 17px;
  color: #e5e7eb;
}

.checkout-box__sub {
  margin: 0 0 14px;
  font-size: 13px;
  color: #9ca3af;
}

.checkout-box__form {
  margin-top: 8px;
}

.checkout-box__message {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.checkout-box__message--success {
  border: 1px solid rgba(34, 197, 94, 0.75);
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
}

.checkout-box__message--error {
  border: 1px solid rgba(248, 113, 113, 0.75);
  background: rgba(248, 113, 113, 0.12);
  color: #fee2e2;
}

/* ========= Product Cards (alignment) ========= */

.product {
  display: flex;
  flex-direction: column;
}

.product h3 {
  margin-bottom: 8px;
}

.product p:first-of-type {
  flex: 1; /* description grows to push price & button down */
}

.product-price {
  margin-top: 10px;
  font-size: 14px;
  color: #fbbf24;
  font-weight: 600;
}

.product-btn {
  margin-top: 10px;
  font-size: 13px;
  align-self: flex-start;
}

/* ========= Animation ========= */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scroll reveal utility */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.22, 0.76, 0.3, 1),
              transform 0.5s cubic-bezier(0.22, 0.76, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= Responsive (global sections) ========= */

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

  .showcase-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 210px;
  }

  .showcase-card.large {
    grid-row: span 1;
    min-height: 260px;
  }

  .price-card {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 80vh;
  }

  .hero-inner {
    padding-inline: 20px;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-sub {
    max-width: none;
  }

  .contact-form button.cta {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   PRO HERO (new)
   ========================================= */

.hero-pro {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-block: clamp(56px, 12vh, 96px);
  position: relative;
  overflow: hidden;
}

.hero-pro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
}

.hero-pro__copy {
  max-width: 640px;
}

.hero-pro__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
  margin: 0 0 10px;
}

.hero-pro__title {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.15;
  color: #f9fafb;
  margin: 0 0 14px;
}

.hero-pro__text {
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
}

.hero-pro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-pro__ghost {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease,
              color 0.18s ease;
}

.hero-pro__ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(129, 140, 248, 0.9);
  transform: translateY(-1px);
  color: #e5e7eb;
}

.hero-pro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}

.hero-pro__meta-number {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-pro__meta-label {
  display: block;
  font-size: 12px;
  color: #9ca3af;
}

/* Hero mockup card */

.hero-pro__mockup {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.24), rgba(15, 23, 42, 0.98));
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
  padding: 16px 16px 18px;
  max-width: 380px;
  justify-self: end;
}

.hero-pro__mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.hero-pro__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.7);
  font-size: 11px;
}

.hero-pro__mockup-body {
  padding: 10px 10px 8px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
}

.hero-pro__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-block: 4px;
  color: #e5e7eb;
}

.hero-pro__line span:last-child {
  font-weight: 500;
}

.hero-pro__line--muted span:first-child {
  color: #9ca3af;
}

.hero-pro__line--total {
  margin-top: 4px;
  font-weight: 600;
}

.hero-pro__divider {
  height: 1px;
  margin: 6px 0;
  background: linear-gradient(to right, rgba(148, 163, 184, 0.4), rgba(148, 163, 184, 0.1));
}

.hero-pro__mockup-btn {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
  font-size: 13px;
}

.hero-pro__hint {
  margin: 8px 2px 2px;
  font-size: 11px;
  color: #9ca3af;
}

/* Hero responsive */

@media (max-width: 960px) {
  .hero-pro__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-pro__mockup {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-pro {
    min-height: auto;
    padding-block: 40px;
  }
  .hero-pro__actions {
    flex-direction: column;
  }
}

/* =========================================
   FAQ ACCORDION
   ========================================= */

.faq-accordion {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.9);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.2), rgba(15, 23, 42, 0.95));
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.8);
  border-color: rgba(129, 140, 248, 0.9);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 16px;
  color: #9ca3af;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #a5b4fc;
}

.faq-item p {
  margin-top: 8px;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  padding-block: 22px 26px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__logo-dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #22c55e);
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.4);
}

.site-footer__title {
  margin: 0;
  font-size: 14px;
  color: #e5e7eb;
  font-weight: 500;
}

.site-footer__tagline {
  margin: 2px 0 0;
  font-size: 12px;
  color: #9ca3af;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
}

.site-footer__nav a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__nav a:hover {
  color: #e5e7eb;
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
