@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #080c14;
  --surface: #0f1727;
  --panel: #121c2f;
  --accent: #ff7a1a;
  --accent-2: #ffb347;
  --text: #e5e7eb;
  --muted: #a0aec0;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --shadow: 0 15px 60px rgba(0, 0, 0, 0.45);
  --glow: 0 18px 50px rgba(255, 122, 26, 0.2);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 122, 26, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(255, 179, 71, 0.12), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hx-header {
  background: linear-gradient(135deg, rgba(12, 18, 30, 0.95), rgba(10, 14, 24, 0.92));
  border-bottom: 1px solid var(--line);
}

.hx-utility-bar {
  background: rgba(255, 255, 255, 0.03);
}

.hx-navbar {
  background: transparent;
  backdrop-filter: blur(10px);
}

.hx-navbar .navbar-nav {
  gap: 8px;
}

.hx-navbar .nav-link {
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  padding: 8px 12px !important;
  white-space: nowrap;
}

.hx-navbar .nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hx-navbar .nav-link.active {
  color: #0b0f18;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow);
}

.hx-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: var(--glow);
}

.hx-footer {
  width: 100%;
}

.hx-nav-wrap {
  gap: 10px;
}

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.hero {
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 122, 26, 0.12), rgba(15, 23, 39, 0.8));
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(255, 179, 71, 0.18), transparent 42%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--accent-2);
  letter-spacing: 0.3px;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: 38px;
  line-height: 1.15;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 640px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 22px;
}

.pill {
  padding: 7px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
  min-width: 0;
}

.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.badge strong {
  color: var(--accent);
}

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

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.2), transparent 55%);
}

.card h3 {
  margin: 6px 0 8px;
}

.card p {
  color: var(--muted);
  margin: 0 0 14px;
  word-break: break-word;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.metric {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 14px;
}

.metric strong {
  display: block;
  color: var(--accent);
  font-size: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(255, 122, 26, 0.3);
  font-size: 13px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.table th,
.table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  color: var(--muted);
  font-weight: 500;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.4);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 10px;
}

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

.notice {
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.filter-bar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.filter-bar select,
.filter-bar input[type="checkbox"] {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 10px 12px;
  font-size: 14px;
  width: 100%;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

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

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 8px 0 6px;
}

.price {
  font-size: 28px;
  color: var(--accent);
  margin: 8px 0;
}

.list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  color: var(--muted);
}

.list li {
  padding: 6px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.alert {
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 122, 26, 0.5);
  background: rgba(255, 122, 26, 0.08);
  color: var(--accent-2);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.actions .btn {
  min-width: 120px;
}

.btn {
  border: none;
}

.btn:not(.btn-outline-light):not(.btn-warning):not(.btn-link) {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f18;
  box-shadow: var(--glow);
  border: 1px solid rgba(255, 122, 26, 0.3);
}

.btn:hover:not(.btn-outline-light):not(.btn-warning):not(.btn-link) {
  opacity: 0.95;
}

h1, h2, h3, h4 {
  color: var(--text);
}

body, .card, .hero-card, .section, .filter-bar {
  min-width: 0;
}

.filter-bar label {
  min-width: 0;
}

@media (max-width: 991px) {
  .hx-navbar .nav-link.active::after {
    display: none;
  }
  .hx-utility-bar {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 30px;
  }
  .section {
    padding: 48px 18px;
  }
}
