:root {
  --ss-primary: #540BBA;
  --ss-primary-rgb: 84,11,186;
  --ss-secondary: #8497CD;
  --ss-secondary-rgb: 132,151,205;
  --ss-gradient: linear-gradient(45deg, #540BBA 25%, #8497CD 100%);
  --ss-bg: #1A1621;
  --ss-text: #ffffff;
  --ss-text-muted: rgba(255,255,255,0.55);
  --ss-card-bg: rgba(50,45,58,0.8);
  --ss-card-border: rgba(116,58,199,0.2);
  --ss-card-border-hover: rgba(116,58,199,0.4);
  --ss-radius: 20px;
  --ss-radius-sm: 12px;
  --ss-font: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--ss-bg);
  color: var(--ss-text);
  font-family: var(--ss-font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
}

/* ===== LAYOUT CONTAINER ===== */

.ss-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  width: 100%;
}

.ss-section {
  margin-bottom: 4rem;
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== BACKGROUND DECORATION ===== */

.ss-bg-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(84,11,186,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(132,151,205,0.10) 0%, transparent 60%);
  overflow: hidden;
}

.ss-content-layer {
  position: relative;
  z-index: 1;
}

/* ===== TOP NAV BAR ===== */

.ss-navbar {
  background-color: rgba(26,22,33,0.95);
  border-bottom: 1px solid rgba(116,58,199,0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
  overflow: hidden;
}

.ss-navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ss-navbar-brand {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  background: var(--ss-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3px;
}

.ss-navbar-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ss-navbar-links a {
  color: var(--ss-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.ss-navbar-links a:hover {
  opacity: 1;
  color: var(--ss-secondary);
}

.ss-navbar-links a.active {
  opacity: 1;
  background: var(--ss-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== HERO SECTION ===== */

.ss-hero {
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
}

.ss-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(84,11,186,0.12);
  border: 1px solid rgba(84,11,186,0.25);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ss-secondary);
  margin-bottom: 24px;
}

.ss-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 0 0 20px;
  font-family: var(--ss-font);
}

.ss-hero-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ss-text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.ss-text-gradient {
  background: var(--ss-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== DIVIDER ===== */

.ss-divider {
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(84,11,186,0.2) 35%, rgba(132,151,205,0.15) 65%, transparent 95%);
  margin: 3rem 0;
  border: none;
  max-width: 100%;
}

/* ===== SECTION HEADINGS ===== */

.ss-section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  font-family: var(--ss-font);
}

.ss-section-subtitle {
  font-size: 15px;
  color: var(--ss-text-muted);
  margin: 0 0 36px;
  font-weight: 400;
}

/* ===== Q&A CARDS ===== */

.ss-qa-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.ss-qa-card {
  background: var(--ss-card-bg);
  border: 1px solid var(--ss-card-border);
  border-radius: var(--ss-radius);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  max-width: 100%;
}

.ss-qa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(84,11,186,0.25) 40%, rgba(132,151,205,0.2) 60%, transparent 90%);
  pointer-events: none;
}

.ss-qa-card:hover {
  border-color: var(--ss-card-border-hover);
  box-shadow: 0 8px 32px rgba(84,11,186,0.12);
  transform: translateY(-2px);
}

.ss-qa-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--ss-gradient);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.ss-qa-card h2,
.ss-qa-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--ss-text);
  font-family: var(--ss-font);
  letter-spacing: -0.2px;
}

.ss-qa-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ss-text-muted);
  margin: 0;
  font-family: var(--ss-font);
}

.ss-qa-card p + p {
  margin-top: 10px;
}

.ss-qa-card a {
  color: var(--ss-secondary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(132,151,205,0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ss-qa-card a:hover {
  color: #fff;
  border-bottom-color: rgba(132,151,205,0.7);
}

/* ===== INFO SECTIONS ===== */

.ss-info-block {
  background: var(--ss-card-bg);
  border: 1px solid var(--ss-card-border);
  border-radius: var(--ss-radius);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 100%;
}

.ss-info-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(84,11,186,0.22) 35%, rgba(132,151,205,0.18) 65%, transparent 95%);
  pointer-events: none;
}

.ss-info-block h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
  font-family: var(--ss-font);
}

.ss-info-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ss-text-muted);
  margin: 0 0 12px;
  font-family: var(--ss-font);
}

.ss-info-block p:last-child {
  margin-bottom: 0;
}

.ss-info-block a {
  color: var(--ss-secondary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(132,151,205,0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ss-info-block a:hover {
  color: #fff;
  border-bottom-color: rgba(132,151,205,0.7);
}

/* ===== FEATURE GRID ===== */

.ss-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 100%;
}

.ss-feature-item {
  background: rgba(84,11,186,0.05);
  border: 1px solid rgba(84,11,186,0.12);
  border-radius: var(--ss-radius-sm);
  padding: 24px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ss-feature-item:hover {
  border-color: rgba(84,11,186,0.28);
  background: rgba(84,11,186,0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(84,11,186,0.1);
}

.ss-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ss-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.ss-feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: var(--ss-font);
  color: var(--ss-text);
}

.ss-feature-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ss-text-muted);
  margin: 0;
  font-family: var(--ss-font);
}

/* ===== STATS ROW ===== */

.ss-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  max-width: 100%;
}

.ss-stat-card {
  flex: 1;
  min-width: 140px;
  background: rgba(84,11,186,0.05);
  border: 1px solid rgba(84,11,186,0.12);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.ss-stat-card:hover {
  background: rgba(84,11,186,0.09);
  border-color: rgba(84,11,186,0.22);
  transform: translateY(-2px);
}

.ss-stat-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--ss-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 4px;
}

.ss-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ss-text-muted);
}

/* ===== INLINE LINK STYLES ===== */

.ss-inline-link {
  color: var(--ss-secondary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(132,151,205,0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ss-inline-link:hover {
  color: #fff;
  border-bottom-color: rgba(132,151,205,0.7);
}

/* ===== NAVIGATION BUTTONS ===== */

.ss-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--ss-radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-family: var(--ss-font);
  border: none;
  letter-spacing: -0.1px;
}

.ss-btn-primary {
  background: var(--ss-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(84,11,186,0.3);
}

.ss-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(84,11,186,0.4);
}

.ss-btn-outline {
  background: rgba(84,11,186,0.08);
  border: 1px solid rgba(84,11,186,0.25);
  color: var(--ss-text);
}

.ss-btn-outline:hover {
  background: rgba(84,11,186,0.16);
  border-color: rgba(84,11,186,0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(84,11,186,0.12);
}

.ss-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--ss-radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(84,11,186,0.1);
  border: 1px solid rgba(84,11,186,0.22);
  color: var(--ss-text);
  transition: all 0.3s ease;
  font-family: var(--ss-font);
}

.ss-home-btn:hover {
  background: rgba(84,11,186,0.2);
  border-color: rgba(84,11,186,0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84,11,186,0.15);
}

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

.ss-footer {
  border-top: 1px solid rgba(84,11,186,0.15);
  padding: 32px 0 16px;
  margin-top: 48px;
  max-width: 100%;
}

.ss-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ss-footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.ss-footer-nav a {
  color: var(--ss-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.ss-footer-nav a:hover {
  opacity: 0.9;
}

.ss-footer-copy {
  font-size: 12px;
  color: var(--ss-text);
  opacity: 0.25;
  margin: 0;
  font-family: var(--ss-font);
}

/* ===== BREADCRUMB ===== */

.ss-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

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

.ss-breadcrumb a:hover {
  color: #fff;
}

.ss-breadcrumb-sep {
  opacity: 0.3;
  font-size: 12px;
}

.ss-breadcrumb-current {
  opacity: 0.5;
  font-weight: 500;
}

/* ===== CALLOUT BOX ===== */

.ss-callout {
  background: rgba(84,11,186,0.08);
  border: 1px solid rgba(84,11,186,0.22);
  border-left: 3px solid #540BBA;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
  max-width: 100%;
}

.ss-callout p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ss-text-muted);
  margin: 0;
  font-family: var(--ss-font);
}

.ss-callout a {
  color: var(--ss-secondary);
  font-weight: 600;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .ss-page-wrapper {
    padding: 0 1rem 3rem;
  }

  .ss-hero {
    padding: 40px 0 32px;
  }

  .ss-qa-card {
    padding: 22px 20px;
  }

  .ss-info-block {
    padding: 24px 20px;
  }

  .ss-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ss-btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .ss-btn,
  .ss-home-btn {
    justify-content: center;
  }

  .ss-stats-row {
    gap: 10px;
  }

  .ss-navbar-links {
    display: none;
  }

  .ss-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .ss-feature-grid {
    grid-template-columns: 1fr;
  }

  .ss-stat-card {
    min-width: 100px;
  }

  .ss-hero h1 {
    font-size: 30px;
  }

  .ss-qa-card h2,
  .ss-qa-card h3 {
    font-size: 16px;
  }
}