
.site-header[data-v-617ccc60] {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}
.navbar[data-v-617ccc60] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.navbar-brand .logo[data-v-617ccc60] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}
.logo-icon[data-v-617ccc60] {
  font-size: 2rem;
}
.mobile-toggle[data-v-617ccc60] {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span[data-v-617ccc60] {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-menu[data-v-617ccc60] {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: space-between;
}
.navbar-nav[data-v-617ccc60] {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-dropdown[data-v-617ccc60] {
  position: relative;
}
.nav-link[data-v-617ccc60] {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link.nav-toggle[data-v-617ccc60] {
  background: none;
  border: none;
  cursor: pointer;
}
.nav-link[data-v-617ccc60]:hover {
  color: var(--primary-color);
}
.dropdown-arrow[data-v-617ccc60] {
  font-size: 0.625rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.dropdown-arrow.rotated[data-v-617ccc60] {
  transform: rotate(180deg);
}

/* ===== Mega Menu ===== */
.mega-menu[data-v-617ccc60] {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 0.5rem;
  z-index: 100;
  display: flex;
  min-width: 580px;
  overflow: hidden;
}
.mega-menu[data-v-617ccc60]::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.mega-menu-tabs[data-v-617ccc60] {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border-right: 1px solid var(--border-color);
  padding: 0.5rem;
  min-width: 160px;
}
.mega-tab[data-v-617ccc60] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  text-align: left;
}
.mega-tab[data-v-617ccc60]:hover {
  background: rgba(11, 61, 145, 0.08);
  color: var(--primary-color);
}
.mega-tab.active[data-v-617ccc60] {
  background: var(--primary-color);
  color: #fff;
}
.tab-icon[data-v-617ccc60] {
  font-size: 1rem;
}
.mega-menu-content[data-v-617ccc60] {
  flex: 1;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-content: start;
}
.mega-item[data-v-617ccc60] {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mega-item[data-v-617ccc60]:hover {
  background: var(--bg-light);
}
.mega-item:hover .item-name[data-v-617ccc60] {
  color: var(--primary-color);
}
.mega-item .item-icon[data-v-617ccc60] {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 2px;
}
.item-info[data-v-617ccc60] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.item-name[data-v-617ccc60] {
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}
.item-desc[data-v-617ccc60] {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}
.navbar-actions[data-v-617ccc60] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.language-selector[data-v-617ccc60] {
  position: relative;
}
.lang-btn[data-v-617ccc60] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.875rem;
  transition: var(--transition);
}
.lang-btn[data-v-617ccc60]:hover {
  border-color: var(--primary-color);
}
.lang-dropdown[data-v-617ccc60] {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 160px;
  padding: 0.5rem;
}
.lang-dropdown button[data-v-617ccc60] {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.lang-dropdown button[data-v-617ccc60]:hover {
  background: var(--bg-light);
}
.lang-dropdown button.active[data-v-617ccc60] {
  background: var(--primary-color);
  color: white;
}
.btn-sm[data-v-617ccc60] {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
.mobile-toggle[data-v-617ccc60] {
    display: flex;
}
.navbar-menu[data-v-617ccc60] {
    position: fixed;
    top: 73px;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
    max-height: calc(100vh - 73px);
}
.navbar-menu.is-active[data-v-617ccc60] {
    transform: translateX(0);
}
.navbar-nav[data-v-617ccc60] {
    flex-direction: column;
    gap: 0;
}
.nav-dropdown[data-v-617ccc60] {
    width: 100%;
}
.nav-link[data-v-617ccc60] {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    justify-content: space-between;
}
.mega-menu[data-v-617ccc60] {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    margin-top: 0.5rem;
    flex-direction: column;
    min-width: 100%;
    transform: none;
    left: 0;
    border-radius: var(--radius-sm);
}
.mega-menu-tabs[data-v-617ccc60] {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    min-width: 100%;
    gap: 0.25rem;
}
.mega-tab[data-v-617ccc60] {
    flex: 1;
    min-width: calc(50% - 0.25rem);
    justify-content: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
}
.mega-menu-content[data-v-617ccc60] {
    grid-template-columns: 1fr;
}
.mega-item[data-v-617ccc60] {
    padding: 0.75rem 1rem;
}
.navbar-actions[data-v-617ccc60] {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1rem;
}
.navbar-actions .btn[data-v-617ccc60] {
    width: 100%;
    justify-content: center;
}
}

.site-footer[data-v-cf14f912] {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #040f23 0%, #0b2f73 55%, #0a7cc6 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.site-footer[data-v-cf14f912]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.footer-content[data-v-cf14f912] {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-column h4[data-v-cf14f912] {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.footer-brand[data-v-cf14f912] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.logo-icon[data-v-cf14f912] {
  font-size: 2rem;
}
.footer-description[data-v-cf14f912] {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer-as[data-v-cf14f912] {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-family: 'Courier New', monospace;
}
.footer-column ul[data-v-cf14f912] {
  list-style: none;
}
.footer-column ul li[data-v-cf14f912] {
  margin-bottom: 0.75rem;
}
.footer-column ul li a[data-v-cf14f912] {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.footer-column ul li a[data-v-cf14f912]:hover {
  color: white;
  padding-left: 5px;
}
.footer-bottom[data-v-cf14f912] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.copyright[data-v-cf14f912] {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer-social[data-v-cf14f912] {
  display: flex;
  gap: 1rem;
}
.footer-social a[data-v-cf14f912] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}
.footer-social a[data-v-cf14f912]:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
@media (max-width: 1024px) {
.footer-content[data-v-cf14f912] {
    grid-template-columns: repeat(3, 1fr);
}
.footer-column[data-v-cf14f912]:first-child {
    grid-column: span 3;
}
}
@media (max-width: 768px) {
.footer-content[data-v-cf14f912] {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.footer-column[data-v-cf14f912]:first-child {
    grid-column: span 1;
}
.footer-bottom[data-v-cf14f912] {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
}

:root {
  --primary-color: #0b3d91;
  --primary-dark: #08285d;
  --secondary-color: #0ea5e9;
  --accent-gradient: linear-gradient(120deg, #0b3d91 0%, #0b5cd7 55%, #0a8edc 100%);
  --bg-gradient: linear-gradient(180deg, #f8fbff 0%, #eef4ff 55%, #ffffff 100%);
  --surface-gradient: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  --surface-card-bg: #ffffff;
  --surface-card-border: rgba(15, 23, 42, 0.1);
  --surface-card-text: #0f172a;
  --text-dark: #0f172a;
  --text-light: #5f6b7a;
  --text-secondary: #4c5672;
  --bg-light: #f4f7fb;
  --bg-white: #ffffff;
  --border-color: rgba(15, 23, 42, 0.08);
  --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
  --glass-border: rgba(15, 23, 42, 0.15);
  --glass-text: #0f172a;
  --success-color: #22c55e;
  --warning-color: #facc15;
  --danger-color: #ef4444;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.18);
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: all 0.35s ease;
}
[data-theme='dark'] {
  --bg-gradient: linear-gradient(180deg, #050910 0%, #0f172a 55%, #101a33 100%);
  --surface-gradient: linear-gradient(180deg, #111b2e 0%, #0f172a 100%);
  --surface-card-bg: rgba(15, 23, 42, 0.9);
  --surface-card-border: rgba(255, 255, 255, 0.08);
  --surface-card-text: #eef4ff;
  --text-dark: #eef4ff;
  --text-light: rgba(238, 244, 255, 0.7);
  --text-secondary: rgba(238, 244, 255, 0.7);
  --bg-light: rgba(10, 15, 31, 0.7);
  --bg-white: rgba(15, 23, 42, 0.92);
  --border-color: rgba(235, 245, 255, 0.12);
  --glass-bg: linear-gradient(135deg, rgba(11, 23, 43, 0.75), rgba(14, 33, 63, 0.55));
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-text: #eef4ff;
  --shadow-sm: 0 8px 25px rgba(2, 6, 23, 0.35);
  --shadow-md: 0 18px 45px rgba(2, 6, 23, 0.45);
  --shadow-lg: 0 28px 70px rgba(2, 6, 23, 0.55);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
               'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-gradient);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.app-root main {
  flex: 1;
  background: transparent;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: 2.75rem;
}
h2 { font-size: 2.15rem;
}
h3 { font-size: 1.85rem;
}
h4 { font-size: 1.55rem;
}
h5 { font-size: 1.25rem;
}
h6 { font-size: 1rem;
}
.hero h1,
.hero-title,
.hero-copy h1,
.hero-text h1 {
  color: #f4f9ff;
}
.hero .subtitle,
.hero-subtitle,
.hero-copy .subtitle,
.hero-text .subtitle {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  text-wrap: balance;
}
p {
  margin-bottom: 1rem;
  color: var(--text-light);
}
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-color);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: linear-gradient(120deg, #092f6b 0%, #0a4fb3 60%, #0a7ccd 100%);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(11, 92, 215, 0.35);
  color: var(--primary-color);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(11, 92, 215, 0.08);
  border-color: rgba(11, 92, 215, 0.55);
  color: var(--primary-dark);
}
.btn-outline.inverted,
.hero .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline.inverted:hover,
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
[data-theme='dark'] .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
[data-theme='dark'] .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
h1 { font-size: 2rem;
}
h2 { font-size: 1.75rem;
}
h3 { font-size: 1.5rem;
}
.section {
    padding: 60px 0;
}
.section-title h2 {
    font-size: 2rem;
}
}

.hero[data-v-2a06e797] {
  position: relative;
  color: white;
  padding: 140px 0 120px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(11, 92, 215, 0.4), transparent 60%),
    linear-gradient(135deg, #041227 0%, #0b3d91 60%, #0a8edc 100%);
  box-shadow: var(--shadow-lg);
}
.hero[data-v-2a06e797]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 70%);
  mix-blend-mode: screen;
}
.hero-background[data-v-2a06e797],
.hero-shapes[data-v-2a06e797],
.shape[data-v-2a06e797] {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape[data-v-2a06e797] {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(12px);
}
.shape-1[data-v-2a06e797] {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -140px;
}
.shape-2[data-v-2a06e797] {
  width: 360px;
  height: 360px;
  bottom: -90px;
  left: 8%;
}
.shape-3[data-v-2a06e797] {
  width: 260px;
  height: 260px;
  top: 45%;
  right: 18%;
}
.hero-content[data-v-2a06e797] {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.hero-title[data-v-2a06e797] {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  color: #f4f9ff;
  text-shadow: 0 8px 22px rgba(4, 18, 39, 0.35);
}
.hero-subtitle[data-v-2a06e797] {
  font-size: 1.35rem;
  margin-bottom: 2.75rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero-actions[data-v-2a06e797] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg[data-v-2a06e797] {
  padding: 16px 38px;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.btn-outline[data-v-2a06e797] {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: white;
}
.btn-outline[data-v-2a06e797]:hover {
  background: white;
  color: var(--primary-color);
}
.stats-section[data-v-2a06e797] {
  padding: 4rem 0;
}
.stats-grid[data-v-2a06e797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}
.stat-item[data-v-2a06e797] {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-item[data-v-2a06e797]:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.stat-number[data-v-2a06e797] {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #0a8edc;
  line-height: 1.1;
  word-break: break-word;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.stat-label[data-v-2a06e797] {
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.solutions-section[data-v-2a06e797] {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), transparent);
}
.solutions-grid[data-v-2a06e797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.solution-card[data-v-2a06e797] {
  position: relative;
  background: var(--glass-bg);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  color: var(--glass-text);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.solution-card[data-v-2a06e797]::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: var(--transition);
}
.solution-card[data-v-2a06e797]:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.solution-card[data-v-2a06e797]:hover::before {
  opacity: 1;
}
.solution-card[data-v-2a06e797] > * {
  position: relative;
  z-index: 1;
}
.solution-header[data-v-2a06e797] {
  display: flex;
  gap: 1rem;
}
.solution-icon[data-v-2a06e797] {
  font-size: 2.75rem;
  filter: drop-shadow(0 10px 18px rgba(14, 165, 233, 0.35));
}
.solution-badge[data-v-2a06e797] {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solution-metrics[data-v-2a06e797] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.solution-metrics li[data-v-2a06e797] {
  display: flex;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}
.edge-section[data-v-2a06e797] {
  background: var(--bg-white);
}
.edge-grid[data-v-2a06e797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.edge-card[data-v-2a06e797] {
  background: linear-gradient(135deg, rgba(11, 92, 215, 0.15), rgba(10, 142, 220, 0.08));
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 92, 215, 0.2);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.edge-icon[data-v-2a06e797] {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.edge-badge[data-v-2a06e797] {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.edge-card h3[data-v-2a06e797] {
  margin-bottom: 0.75rem;
}
.hosting-section[data-v-2a06e797] {
  background: var(--bg-light);
}
.hosting-grid[data-v-2a06e797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.hosting-card[data-v-2a06e797] {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.hosting-card[data-v-2a06e797]:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.hosting-badge[data-v-2a06e797] {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hosting-icon[data-v-2a06e797] {
  font-size: 3rem;
}
.hosting-description[data-v-2a06e797] {
  color: var(--text-light);
}
.hosting-features[data-v-2a06e797] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hosting-features li[data-v-2a06e797] {
  display: flex;
  gap: 0.5rem;
  color: var(--text-dark);
}
.products-preview-section[data-v-2a06e797] {
  background: var(--bg-white);
}
.products-grid[data-v-2a06e797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-card[data-v-2a06e797] {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: var(--transition);
  display: block;
  color: inherit;
  box-shadow: var(--shadow-sm);
}
.product-card[data-v-2a06e797]:hover {
  border-color: rgba(14, 165, 233, 0.5);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.product-icon[data-v-2a06e797] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.products-cta[data-v-2a06e797] {
  text-align: center;
}
.cta-section[data-v-2a06e797] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0f8ddc 100%);
  color: white;
  padding: 90px 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin-bottom: 80px;
  box-shadow: var(--shadow-lg);
}
.cta-content h2[data-v-2a06e797] {
  color: white;
  font-size: 2.65rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-2a06e797] {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.cta-footnote[data-v-2a06e797] {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}
@media (max-width: 768px) {
.hero[data-v-2a06e797] {
    padding: 90px 0;
}
.hero-title[data-v-2a06e797] {
    font-size: 2.6rem;
}
.hero-subtitle[data-v-2a06e797] {
    font-size: 1.15rem;
}
.solutions-grid[data-v-2a06e797],
  .edge-grid[data-v-2a06e797],
  .hosting-grid[data-v-2a06e797],
  .products-grid[data-v-2a06e797] {
    grid-template-columns: 1fr;
}
.stats-grid[data-v-2a06e797] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stat-number[data-v-2a06e797] {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
}
.stat-item[data-v-2a06e797] {
    padding: 1.1rem 0.75rem;
}
}
@media (max-width: 480px) {
.stats-grid[data-v-2a06e797] {
    grid-template-columns: 1fr;
}
.stat-item[data-v-2a06e797] {
    align-items: center;
}
}

.page-header[data-v-e59f6d48] {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 45%, #0ea5e9 100%);
  color: white;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header[data-v-e59f6d48]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.2), transparent 60%);
  mix-blend-mode: screen;
}
.page-header h1[data-v-e59f6d48] {
  position: relative;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
  color: white;
}
.page-header p[data-v-e59f6d48] {
  position: relative;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
}
.products-section[data-v-e59f6d48] {
  padding: 0;
}
.product-detail[data-v-e59f6d48] {
  padding: 90px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.product-detail[data-v-e59f6d48]:nth-child(even) {
  background: rgba(14, 165, 233, 0.05);
}
.product-detail-content[data-v-e59f6d48] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.product-detail-reverse .product-detail-content[data-v-e59f6d48] {
  direction: rtl;
}
.product-detail-reverse .product-detail-text[data-v-e59f6d48] {
  direction: ltr;
}
.product-detail-reverse .product-detail-visual[data-v-e59f6d48] {
  direction: ltr;
}
.product-badge[data-v-e59f6d48] {
  display: inline-block;
  background: rgba(14, 165, 233, 0.2);
  color: var(--primary-color);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-detail-text h2[data-v-e59f6d48] {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.product-description[data-v-e59f6d48] {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.product-features[data-v-e59f6d48] {
  list-style: none;
  margin-bottom: 2rem;
}
.product-features li[data-v-e59f6d48] {
  padding: 0.65rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.02rem;
}
.feature-check[data-v-e59f6d48] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.product-detail-visual[data-v-e59f6d48] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-visual[data-v-e59f6d48] .domain-widget,
.product-detail-visual[data-v-e59f6d48] .cdn-calculator {
  width: 100%;
}
.visual-card[data-v-e59f6d48] {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(11, 92, 215, 0.2));
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 1px solid rgba(14, 165, 233, 0.25);
}
.visual-icon[data-v-e59f6d48] {
  font-size: 10rem;
  line-height: 1;
}
@media (max-width: 1024px) {
.product-detail-content[data-v-e59f6d48] {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.product-detail-reverse .product-detail-content[data-v-e59f6d48] {
    direction: ltr;
}
.visual-card[data-v-e59f6d48] {
    min-height: 300px;
    padding: 3rem;
}
.visual-icon[data-v-e59f6d48] {
    font-size: 8rem;
}
}
@media (max-width: 768px) {
.page-header h1[data-v-e59f6d48] {
    font-size: 2.5rem;
}
.product-detail[data-v-e59f6d48] {
    padding: 60px 0;
}
.product-detail-text h2[data-v-e59f6d48] {
    font-size: 2rem;
}
.visual-card[data-v-e59f6d48] {
    min-height: 200px;
    padding: 2rem;
}
.visual-icon[data-v-e59f6d48] {
    font-size: 6rem;
}
}

.page-header[data-v-607dce6f] {
  background: linear-gradient(135deg, #05122b 0%, #0a3b85 55%, #0a8edc 100%);
  color: white;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header[data-v-607dce6f]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.18), transparent 60%);
  mix-blend-mode: screen;
}
.page-header h1[data-v-607dce6f] {
  position: relative;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0;
  color: white;
}
.company-section[data-v-607dce6f] {
  padding: 100px 0;
}
.content-grid[data-v-607dce6f] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.content-block h2[data-v-607dce6f] {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.content-block p[data-v-607dce6f] {
  font-size: 1.125rem;
  line-height: 1.8;
}
.company-logo[data-v-607dce6f] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-display[data-v-607dce6f] {
  background: linear-gradient(135deg, #041227 0%, #0a4fb3 55%, #0aa0e3 100%);
  padding: 4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-md);
}
.logo-icon-large[data-v-607dce6f] {
  font-size: 6rem;
  display: block;
  margin-bottom: 1rem;
}
.company-name[data-v-607dce6f] {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
.as-badge[data-v-607dce6f] {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-family: 'Courier New', monospace;
  font-weight: 600;
}
.mission-vision-section[data-v-607dce6f] {
  background: var(--bg-light);
}
.mv-grid[data-v-607dce6f] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.mv-card[data-v-607dce6f] {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}
.mv-card[data-v-607dce6f]:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.mv-icon[data-v-607dce6f] {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.mv-card h3[data-v-607dce6f] {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.mv-card p[data-v-607dce6f] {
  font-size: 1.125rem;
  line-height: 1.8;
}
.values-section[data-v-607dce6f] {
  background: white;
}
.values-grid[data-v-607dce6f] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.value-card[data-v-607dce6f] {
  padding: 2.5rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card[data-v-607dce6f]:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.value-icon[data-v-607dce6f] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.value-card h3[data-v-607dce6f] {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.network-section[data-v-607dce6f] {
  background: var(--bg-light);
}
.network-info[data-v-607dce6f] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.network-item[data-v-607dce6f] {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.network-label[data-v-607dce6f] {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.network-value[data-v-607dce6f] {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}
.contact-section[data-v-607dce6f] {
  background: white;
}
.contact-grid[data-v-607dce6f] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-card[data-v-607dce6f] {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card[data-v-607dce6f]:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.contact-icon[data-v-607dce6f] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-card h4[data-v-607dce6f] {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.contact-card a[data-v-607dce6f] {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 500;
}
.map-section[data-v-607dce6f] {
  padding: 0;
}
.map-placeholder[data-v-607dce6f] {
  height: 400px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-content[data-v-607dce6f] {
  text-align: center;
}
.map-icon[data-v-607dce6f] {
  font-size: 5rem;
  margin-bottom: 1rem;
}
.map-content h3[data-v-607dce6f] {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.map-content p[data-v-607dce6f] {
  font-size: 1.125rem;
  color: var(--text-light);
}
@media (max-width: 1024px) {
.content-grid[data-v-607dce6f],
  .mv-grid[data-v-607dce6f] {
    grid-template-columns: 1fr;
}
.values-grid[data-v-607dce6f],
  .contact-grid[data-v-607dce6f],
  .network-info[data-v-607dce6f] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.page-header h1[data-v-607dce6f] {
    font-size: 2.5rem;
}
.content-block h2[data-v-607dce6f] {
    font-size: 2rem;
}
.logo-display[data-v-607dce6f] {
    padding: 3rem 2rem;
}
.logo-icon-large[data-v-607dce6f] {
    font-size: 4rem;
}
.company-name[data-v-607dce6f] {
    font-size: 2rem;
}
}

.domain-widget[data-v-92e593fc] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  color: var(--surface-card-text);
}
.widget-header p[data-v-92e593fc] {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--text-light);
}
.widget-header h4[data-v-92e593fc] {
  font-size: 1.75rem;
  margin: 0.4rem 0;
}
.widget-note[data-v-92e593fc] {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.search-form[data-v-92e593fc] {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  width: 100%;
}
.input-group[data-v-92e593fc] {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-gradient);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  min-width: 0;
}
.input-group input[data-v-92e593fc] {
  flex: 1 1 auto;
  background: transparent;
  border: none;
  color: var(--surface-card-text);
  font-size: 1.1rem;
  min-width: 0;
}
.input-group input[data-v-92e593fc]:focus {
  outline: none;
}
.input-group select[data-v-92e593fc] {
  background: rgba(11, 92, 215, 0.08);
  border: none;
  color: var(--surface-card-text);
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  min-width: 0;
  width: clamp(120px, 35vw, 220px);
  flex: 0 1 clamp(120px, 35vw, 220px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.input-group select[data-v-92e593fc]:focus {
  outline: none;
}
.dot[data-v-92e593fc] {
  color: var(--text-light);
  font-weight: 600;
}
.suffix-list[data-v-92e593fc] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.suffix-chip[data-v-92e593fc] {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--surface-card-border);
  background: transparent;
  color: var(--surface-card-text);
  cursor: pointer;
  transition: var(--transition);
}
.suffix-chip.active[data-v-92e593fc] {
  background: rgba(11, 92, 215, 0.12);
  border-color: rgba(11, 92, 215, 0.35);
  color: var(--primary-color);
}
@media (max-width: 640px) {
.search-form[data-v-92e593fc] {
    flex-direction: column;
}
.input-group[data-v-92e593fc] {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
}
.dot[data-v-92e593fc] {
    display: none;
}
.input-group select[data-v-92e593fc] {
    width: 100%;
    max-width: 100%;
}
.search-form .btn[data-v-92e593fc] {
    width: 100%;
}
}
.results[data-v-92e593fc] {
  margin-top: 1.5rem;
}
.result-card[data-v-92e593fc] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-card-border);
  background: rgba(11, 92, 215, 0.03);
  margin-bottom: 0.8rem;
}
.result-main h5[data-v-92e593fc] {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}
.result-main p[data-v-92e593fc] {
  margin: 0;
  color: var(--text-light);
}
.result-meta[data-v-92e593fc] {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.price-tag[data-v-92e593fc] {
  font-weight: 600;
}
.status-pill[data-v-92e593fc] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.status-pill.available[data-v-92e593fc] {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}
.status-pill.locked[data-v-92e593fc] {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.loading-state[data-v-92e593fc] {
  text-align: center;
  padding: 1rem 0;
  color: var(--text-light);
}
.auth-warning[data-v-92e593fc],
.error-message[data-v-92e593fc] {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--surface-card-border);
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  background: var(--surface-card-bg);
}
.auth-warning a[data-v-92e593fc] {
  margin-left: 0.35rem;
  color: var(--primary-color);
  text-decoration: underline;
}
.helper-text[data-v-92e593fc] {
  color: var(--text-light);
  text-align: center;
  padding: 1rem 0;
}
@media (max-width: 768px) {
.result-card[data-v-92e593fc] {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}
.result-meta[data-v-92e593fc] {
    text-align: left;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}
}
@media (max-width: 640px) {
.search-form[data-v-92e593fc] {
    flex-direction: column;
}
.input-group[data-v-92e593fc] {
    width: 100%;
    flex-wrap: wrap;
    padding: 0.75rem;
}
.input-group input[data-v-92e593fc],
  .input-group select[data-v-92e593fc] {
    flex: 1 1 100%;
}
.input-group select[data-v-92e593fc] {
    min-width: 100%;
    max-width: 100%;
    margin-top: 0.35rem;
}
.dot[data-v-92e593fc] {
    display: none;
}
.search-form .btn[data-v-92e593fc] {
    width: 100%;
}
}

.hero[data-v-8fb78f16] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 5.5rem 0;
}
.hero-grid[data-v-8fb78f16] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-copy h1[data-v-8fb78f16] {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.eyebrow[data-v-8fb78f16] {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.subtitle[data-v-8fb78f16] {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero-metrics[data-v-8fb78f16] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.hero-metrics li[data-v-8fb78f16] {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.metric-value[data-v-8fb78f16] {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}
.metric-label[data-v-8fb78f16] {
  font-size: 0.95rem;
  opacity: 0.85;
}
.search-section[data-v-8fb78f16] {
  padding: 80px 0;
}
.search-grid[data-v-8fb78f16] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.tld-panel[data-v-8fb78f16] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  color: var(--surface-card-text);
}
.panel-header h3[data-v-8fb78f16] {
  margin-bottom: 0.5rem;
}
.panel-header p[data-v-8fb78f16] {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.tld-list[data-v-8fb78f16] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tld-row[data-v-8fb78f16] {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.tld-note[data-v-8fb78f16] {
  margin: 0.35rem 0;
  color: var(--text-light);
}
.tld-promo[data-v-8fb78f16] {
  color: var(--secondary-color);
}
.features-section[data-v-8fb78f16] {
  background: var(--bg-light);
}
.section-title[data-v-8fb78f16] {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
}
.features-grid[data-v-8fb78f16] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.feature-card[data-v-8fb78f16] {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--glass-text);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.feature-icon[data-v-8fb78f16] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.flow-section[data-v-8fb78f16] {
  background: var(--surface-gradient);
}
.flow-grid[data-v-8fb78f16] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.flow-card[data-v-8fb78f16] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.flow-index[data-v-8fb78f16] {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
}
.flow-card h3[data-v-8fb78f16] {
  margin: 0.75rem 0;
}

.cdn-calculator[data-v-18ac9543] {
  background: var(--surface-card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-card-border);
  padding: 2.25rem;
  color: var(--surface-card-text);
  box-shadow: var(--shadow-sm);
}
.calculator-header p[data-v-18ac9543] {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--text-light);
}
.calculator-header h4[data-v-18ac9543] {
  font-size: 1.65rem;
  margin: 0.4rem 0;
}
.subline[data-v-18ac9543] {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.region-rows[data-v-18ac9543] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.region-row[data-v-18ac9543] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(11, 92, 215, 0.05);
  border: 1px solid var(--surface-card-border);
}
label[data-v-18ac9543] {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
label span[data-v-18ac9543] {
  font-size: 0.85rem;
  color: var(--text-light);
}
select[data-v-18ac9543],
input[type='number'][data-v-18ac9543] {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  color: var(--surface-card-text);
}
[data-theme='dark'] select[data-v-18ac9543],
[data-theme='dark'] input[type='number'][data-v-18ac9543] {
  background: rgba(255, 255, 255, 0.08);
}
.row-summary[data-v-18ac9543] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.row-cost[data-v-18ac9543] {
  font-weight: 600;
}
.remove-row[data-v-18ac9543] {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
}
.add-row[data-v-18ac9543] {
  border: 1px dashed var(--surface-card-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  background: transparent;
  color: var(--surface-card-text);
  cursor: pointer;
}
.add-row[data-v-18ac9543]:hover:not(:disabled) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.summary[data-v-18ac9543] {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(11, 92, 215, 0.04);
  border: 1px solid var(--surface-card-border);
  display: grid;
  gap: 0.75rem;
}
.summary-line[data-v-18ac9543] {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
.summary-line.total[data-v-18ac9543] {
  font-weight: 600;
}

.hero[data-v-907ace97] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 5rem 0;
}
.hero-grid[data-v-907ace97] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.eyebrow[data-v-907ace97] {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.subtitle[data-v-907ace97] {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  opacity: 0.9;
}
.hero-metrics[data-v-907ace97] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.hero-metrics li[data-v-907ace97] {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.metric-value[data-v-907ace97] {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}
.calc-section[data-v-907ace97] {
  background: var(--bg-light);
}
.section-heading[data-v-907ace97] {
  text-align: center;
  margin-bottom: 2rem;
}
.region-section[data-v-907ace97] {
  background: var(--surface-gradient);
}
.section-title[data-v-907ace97] {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2rem;
}
.region-grid[data-v-907ace97] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.region-card[data-v-907ace97] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.region-header[data-v-907ace97] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.burst[data-v-907ace97] {
  font-size: 0.85rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 92, 215, 0.1);
  color: var(--primary-color);
}
.region-meta[data-v-907ace97] {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.features-grid[data-v-907ace97] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card[data-v-907ace97] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon[data-v-907ace97] {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.dns-page[data-v-f0e0b045] {
  min-height: 100vh;
}
.hero[data-v-f0e0b045] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}
.hero h1[data-v-f0e0b045] {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero .subtitle[data-v-f0e0b045] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions[data-v-f0e0b045] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-section[data-v-f0e0b045] {
  background: var(--bg-light);
  padding: 4rem 0;
}
.stats-grid[data-v-f0e0b045] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-item[data-v-f0e0b045] {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-number[data-v-f0e0b045] {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.stat-label[data-v-f0e0b045] {
  color: var(--text-secondary);
  font-size: 1rem;
}
.features-section[data-v-f0e0b045] {
  padding: 4rem 0;
}
.section-title[data-v-f0e0b045] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}
.features-grid[data-v-f0e0b045] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card[data-v-f0e0b045] {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card[data-v-f0e0b045]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon[data-v-f0e0b045] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card h3[data-v-f0e0b045] {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.feature-card p[data-v-f0e0b045] {
  color: var(--text-secondary);
  line-height: 1.6;
}
.cta-section[data-v-f0e0b045] {
  background: linear-gradient(135deg, #041227 0%, #0a4fb3 60%, #0a94e5 100%);
  color: white;
  padding: 4rem 0;
}
.cta-content[data-v-f0e0b045] {
  text-align: center;
}
.cta-content h2[data-v-f0e0b045] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-f0e0b045] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
.hero h1[data-v-f0e0b045] {
    font-size: 2rem;
}
.hero .subtitle[data-v-f0e0b045] {
    font-size: 1rem;
}
.section-title[data-v-f0e0b045] {
    font-size: 2rem;
}
.features-grid[data-v-f0e0b045] {
    grid-template-columns: 1fr;
}
}

.vhost-page[data-v-a9f0d3a7] {
  min-height: 100vh;
}
.hero[data-v-a9f0d3a7] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}
.hero h1[data-v-a9f0d3a7] {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero .subtitle[data-v-a9f0d3a7] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions[data-v-a9f0d3a7] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-section[data-v-a9f0d3a7] {
  background: var(--bg-light);
  padding: 4rem 0;
}
.stats-grid[data-v-a9f0d3a7] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-item[data-v-a9f0d3a7] {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-number[data-v-a9f0d3a7] {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.stat-label[data-v-a9f0d3a7] {
  color: var(--text-secondary);
  font-size: 1rem;
}
.features-section[data-v-a9f0d3a7] {
  padding: 4rem 0;
}
.section-title[data-v-a9f0d3a7] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}
.features-grid[data-v-a9f0d3a7] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card[data-v-a9f0d3a7] {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card[data-v-a9f0d3a7]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon[data-v-a9f0d3a7] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card h3[data-v-a9f0d3a7] {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.feature-card p[data-v-a9f0d3a7] {
  color: var(--text-secondary);
  line-height: 1.6;
}
.cta-section[data-v-a9f0d3a7] {
  background: linear-gradient(135deg, #041227 0%, #0a4fb3 60%, #0a94e5 100%);
  color: white;
  padding: 4rem 0;
}
.cta-content[data-v-a9f0d3a7] {
  text-align: center;
}
.cta-content h2[data-v-a9f0d3a7] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-a9f0d3a7] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
.hero h1[data-v-a9f0d3a7] {
    font-size: 2rem;
}
.hero .subtitle[data-v-a9f0d3a7] {
    font-size: 1rem;
}
.section-title[data-v-a9f0d3a7] {
    font-size: 2rem;
}
.features-grid[data-v-a9f0d3a7] {
    grid-template-columns: 1fr;
}
}

.shared-page[data-v-8941d194] {
  min-height: 100vh;
}
.hero[data-v-8941d194] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}
.hero h1[data-v-8941d194] {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero .subtitle[data-v-8941d194] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions[data-v-8941d194] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-section[data-v-8941d194] {
  background: var(--bg-light);
  padding: 4rem 0;
}
.stats-grid[data-v-8941d194] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-item[data-v-8941d194] {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-number[data-v-8941d194] {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.stat-label[data-v-8941d194] {
  color: var(--text-secondary);
  font-size: 1rem;
}
.features-section[data-v-8941d194] {
  padding: 4rem 0;
}
.section-title[data-v-8941d194] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}
.features-grid[data-v-8941d194] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card[data-v-8941d194] {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card[data-v-8941d194]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon[data-v-8941d194] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card h3[data-v-8941d194] {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.feature-card p[data-v-8941d194] {
  color: var(--text-secondary);
  line-height: 1.6;
}
.cta-section[data-v-8941d194] {
  background: linear-gradient(135deg, #041227 0%, #0a4fb3 60%, #0a94e5 100%);
  color: white;
  padding: 4rem 0;
}
.cta-content[data-v-8941d194] {
  text-align: center;
}
.cta-content h2[data-v-8941d194] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-8941d194] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
.hero h1[data-v-8941d194] {
    font-size: 2rem;
}
.hero .subtitle[data-v-8941d194] {
    font-size: 1rem;
}
.section-title[data-v-8941d194] {
    font-size: 2rem;
}
.features-grid[data-v-8941d194] {
    grid-template-columns: 1fr;
}
}

.worker-page[data-v-caf98aa1] {
  min-height: 100vh;
}
.hero[data-v-caf98aa1] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}
.hero h1[data-v-caf98aa1] {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero .subtitle[data-v-caf98aa1] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions[data-v-caf98aa1] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-section[data-v-caf98aa1] {
  background: var(--bg-light);
  padding: 4rem 0;
}
.stats-grid[data-v-caf98aa1] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-item[data-v-caf98aa1] {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-number[data-v-caf98aa1] {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.stat-label[data-v-caf98aa1] {
  color: var(--text-light);
  font-size: 1rem;
}
.features-section[data-v-caf98aa1] {
  padding: 4rem 0;
}
.section-title[data-v-caf98aa1] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}
.features-grid[data-v-caf98aa1] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card[data-v-caf98aa1] {
  padding: 2rem;
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card[data-v-caf98aa1]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-icon[data-v-caf98aa1] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card h3[data-v-caf98aa1] {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.feature-card p[data-v-caf98aa1] {
  color: var(--text-light);
  line-height: 1.6;
}
.cta-section[data-v-caf98aa1] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 4rem 0;
}
.cta-content[data-v-caf98aa1] {
  text-align: center;
}
.cta-content h2[data-v-caf98aa1] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-caf98aa1] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
.hero h1[data-v-caf98aa1] {
    font-size: 2rem;
}
.hero .subtitle[data-v-caf98aa1] {
    font-size: 1rem;
}
.section-title[data-v-caf98aa1] {
    font-size: 2rem;
}
.features-grid[data-v-caf98aa1] {
    grid-template-columns: 1fr;
}
}

.ecs-page[data-v-d2bfa8c2] {
  min-height: 100vh;
}
.hero[data-v-d2bfa8c2] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}
.hero h1[data-v-d2bfa8c2] {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero .subtitle[data-v-d2bfa8c2] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions[data-v-d2bfa8c2] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-section[data-v-d2bfa8c2] {
  background: var(--bg-light);
  padding: 4rem 0;
}
.stats-grid[data-v-d2bfa8c2] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-item[data-v-d2bfa8c2] {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-number[data-v-d2bfa8c2] {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.stat-label[data-v-d2bfa8c2] {
  color: var(--text-secondary);
  font-size: 1rem;
}
.features-section[data-v-d2bfa8c2] {
  padding: 4rem 0;
}
.section-title[data-v-d2bfa8c2] {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}
.features-grid[data-v-d2bfa8c2] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card[data-v-d2bfa8c2] {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card[data-v-d2bfa8c2]:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon[data-v-d2bfa8c2] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card h3[data-v-d2bfa8c2] {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.feature-card p[data-v-d2bfa8c2] {
  color: var(--text-secondary);
  line-height: 1.6;
}
.cta-section[data-v-d2bfa8c2] {
  background: linear-gradient(135deg, #041227 0%, #0a4fb3 60%, #0a94e5 100%);
  color: white;
  padding: 4rem 0;
}
.cta-content[data-v-d2bfa8c2] {
  text-align: center;
}
.cta-content h2[data-v-d2bfa8c2] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-d2bfa8c2] {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
.hero h1[data-v-d2bfa8c2] {
    font-size: 2rem;
}
.hero .subtitle[data-v-d2bfa8c2] {
    font-size: 1rem;
}
.section-title[data-v-d2bfa8c2] {
    font-size: 2rem;
}
.features-grid[data-v-d2bfa8c2] {
    grid-template-columns: 1fr;
}
}

.hero[data-v-edf1aa75] {
  background: linear-gradient(135deg, #041935 0%, #0b3d91 55%, #0a69d8 100%);
  color: white;
  padding: 5.5rem 0;
  overflow: hidden;
  position: relative;
}
.hero[data-v-edf1aa75]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-grid[data-v-edf1aa75] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.eyebrow[data-v-edf1aa75] {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero h1[data-v-edf1aa75] {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin: 1rem 0;
}
.subtitle[data-v-edf1aa75] {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero-metrics[data-v-edf1aa75] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.hero-metrics li[data-v-edf1aa75] {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.metric-value[data-v-edf1aa75] {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}
.billing-section[data-v-edf1aa75] {
  background: var(--bg-light);
}
.section-heading[data-v-edf1aa75] {
  text-align: center;
  margin-bottom: 2.5rem;
}
.billing-grid[data-v-edf1aa75] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.billing-card[data-v-edf1aa75] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.billing-card .badge[data-v-edf1aa75] {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 92, 215, 0.12);
  color: var(--primary-color);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.billing-card ul[data-v-edf1aa75] {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.billing-card li[data-v-edf1aa75] {
  display: flex;
  gap: 0.5rem;
  color: var(--text-dark);
}
.location-section[data-v-edf1aa75] {
  background: var(--surface-gradient);
}
.location-grid[data-v-edf1aa75] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.location-column[data-v-edf1aa75] {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-card-border);
  background: var(--surface-card-bg);
  box-shadow: var(--shadow-sm);
}
.location-column h3[data-v-edf1aa75] {
  margin-bottom: 1rem;
}
.location-column ul[data-v-edf1aa75] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--text-light);
}
.feature-grid[data-v-edf1aa75] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card[data-v-edf1aa75] {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--glass-text);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
}
.feature-icon[data-v-edf1aa75] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section[data-v-edf1aa75] {
  background: linear-gradient(135deg, #05142c 0%, #0b3d91 60%, #0f8ddc 100%);
  color: white;
  border-radius: var(--radius-lg);
  margin: 4rem 0 2rem;
  box-shadow: var(--shadow-lg);
}
.cta-content[data-v-edf1aa75] {
  text-align: center;
  padding: 3rem 1.5rem;
}
.cta-content h2[data-v-edf1aa75] {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-edf1aa75] {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.cta-actions[data-v-edf1aa75] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
.hero-metrics[data-v-edf1aa75] {
    grid-template-columns: repeat(2, 1fr);
}
.billing-card ul li[data-v-edf1aa75] {
    align-items: flex-start;
}
.cta-content h2[data-v-edf1aa75] {
    font-size: 2rem;
}
}

.blog-page[data-v-3151e917] {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 2rem 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-hero[data-v-3151e917] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-content h1[data-v-3151e917] {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.hero-content .eyebrow[data-v-3151e917] {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-content .subtitle[data-v-3151e917] {
  font-size: 1.1rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}
.hero-meta[data-v-3151e917] {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero-visual img[data-v-3151e917] {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  max-height: 320px;
}
.blog-layout[data-v-3151e917] {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
}
.filters-panel[data-v-3151e917] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.filter-card[data-v-3151e917] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.filter-header[data-v-3151e917] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.filter-heading[data-v-3151e917] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-icon[data-v-3151e917] {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}
.filter-header h3[data-v-3151e917] {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.filter-body input[data-v-3151e917] {
  width: 100%;
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-md);
  padding: 0.65rem;
  margin-bottom: 0.75rem;
}
.chips[data-v-3151e917] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip[data-v-3151e917] {
  border: 1px solid var(--surface-card-border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-dark);
}
.chip.active[data-v-3151e917] {
  background: rgba(11, 92, 215, 0.12);
  border-color: rgba(11, 92, 215, 0.6);
  color: var(--primary-color);
}
.chip.ghost[data-v-3151e917] {
  border: none;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-dark);
}
.chip-dot[data-v-3151e917] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}
.highlight-list article[data-v-3151e917] {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--surface-card-border);
}
.highlight-title[data-v-3151e917] {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.highlight-meta[data-v-3151e917] {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.posts-panel[data-v-3151e917] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.posts-grid[data-v-3151e917] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.post-card[data-v-3151e917] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.card-thumb[data-v-3151e917] {
  position: relative;
}
.card-thumb img[data-v-3151e917] {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.badge-row[data-v-3151e917] {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}
.badge[data-v-3151e917] {
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge.featured[data-v-3151e917] {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
}
.badge.pinned[data-v-3151e917] {
  background: rgba(15, 23, 42, 0.9);
  color: white;
}
.card-body[data-v-3151e917] {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.card-body h3[data-v-3151e917] {
  margin: 0;
  font-size: 1.2rem;
}
.card-body p[data-v-3151e917] {
  margin: 0;
  color: var(--text-light);
}
.card-meta[data-v-3151e917] {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.card-link[data-v-3151e917] {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary-color);
}
.pagination[data-v-3151e917] {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.loading-state[data-v-3151e917] {
  padding: 2rem 0;
  text-align: center;
  color: var(--text-light);
}
.link-reset[data-v-3151e917] {
  border: none;
  background: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.85rem;
}
@media (max-width: 1024px) {
.blog-layout[data-v-3151e917] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.blog-hero[data-v-3151e917] {
    padding: 2rem;
}
.hero-actions[data-v-3151e917] {
    flex-direction: column;
    align-items: stretch;
}
.blog-page[data-v-3151e917] {
    padding: 0 1.25rem 3rem;
}
}

.blog-detail[data-v-fc264730] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.detail-hero[data-v-fc264730] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-text h1[data-v-fc264730] {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.hero-text .eyebrow[data-v-fc264730] {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-image img[data-v-fc264730] {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 320px;
  object-fit: cover;
}
.meta[data-v-fc264730] {
  display: flex;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.chip-row[data-v-fc264730] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.chip[data-v-fc264730] {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  cursor: pointer;
}
.chip.ghost[data-v-fc264730] {
  border-color: rgba(255, 255, 255, 0.3);
}
.detail-layout[data-v-fc264730] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
}
.article-body[data-v-fc264730] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.article-author[data-v-fc264730] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.article-author img[data-v-fc264730] {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
}
h2,h3 {
  margin: 2rem 0 1rem;
  color: var(--text-dark);
}
.article-tags[data-v-fc264730] {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.detail-sidebar[data-v-fc264730] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card[data-v-fc264730] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.share-row[data-v-fc264730] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.share-row button[data-v-fc264730] {
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  background: transparent;
}
.recommend-title[data-v-fc264730] {
  font-weight: 600;
}
.recommend-meta[data-v-fc264730] {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
.empty-state[data-v-fc264730] {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.loading-state[data-v-fc264730] {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.spinner[data-v-fc264730] {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid rgba(11, 92, 215, 0.2);
  border-top-color: var(--primary-color);
  animation: spin-fc264730 0.8s linear infinite;
}
@keyframes spin-fc264730 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
@media (max-width: 992px) {
.detail-layout[data-v-fc264730] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.blog-detail[data-v-fc264730] {
    padding: 0 1rem 3rem;
}
}

.lottie-wrapper[data-v-d29bb39f] {
  display: inline-flex;
}

.llm-page[data-v-fab92cfa] {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 4rem;
}
.hero[data-v-fab92cfa] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 5rem 0;
}
.hero-grid[data-v-fab92cfa] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow[data-v-fab92cfa] {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-copy h1[data-v-fab92cfa] {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin: 0.75rem 0 1.25rem;
  color: #f4f9ff;
  text-shadow: 0 8px 22px rgba(4, 18, 39, 0.4);
}
.subtitle[data-v-fab92cfa] {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions[data-v-fab92cfa] {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}
.hero-metrics[data-v-fab92cfa] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.hero-metrics li[data-v-fab92cfa] {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.metric-value[data-v-fab92cfa] {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}
.metric-label[data-v-fab92cfa] {
  color: rgba(255, 255, 255, 0.8);
}
.hero-visual[data-v-fab92cfa] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section[data-v-fab92cfa] {
  padding: 1rem 0;
}
.section-title[data-v-fab92cfa] {
  text-align: center;
  margin-bottom: 2rem;
}
.feature-grid[data-v-fab92cfa] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card[data-v-fab92cfa] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon[data-v-fab92cfa] {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.feature-card ul[data-v-fab92cfa] {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
.hero[data-v-fab92cfa] {
    padding: 3rem 0;
}
}

.email-page[data-v-a51fc555] {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 4rem;
}
.hero[data-v-a51fc555] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 5rem 0;
}
.hero-grid[data-v-a51fc555] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow[data-v-a51fc555] {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-copy h1[data-v-a51fc555] {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin: 0.75rem 0 1.25rem;
  color: #f4f9ff;
  text-shadow: 0 8px 22px rgba(4, 18, 39, 0.4);
}
.subtitle[data-v-a51fc555] {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions[data-v-a51fc555] {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}
.hero-metrics[data-v-a51fc555] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.hero-metrics li[data-v-a51fc555] {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.metric-value[data-v-a51fc555] {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}
.metric-label[data-v-a51fc555] {
  color: rgba(255, 255, 255, 0.8);
}
.hero-visual[data-v-a51fc555] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section[data-v-a51fc555] {
  padding: 1rem 0;
}
.section-title[data-v-a51fc555] {
  text-align: center;
  margin-bottom: 2rem;
}
.feature-grid[data-v-a51fc555] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card[data-v-a51fc555] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon[data-v-a51fc555] {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.feature-card ul[data-v-a51fc555] {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-light);
}
.cta-block[data-v-a51fc555] {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--surface-gradient);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-block h3[data-v-a51fc555] {
  margin-bottom: 0.75rem;
}
.cta-block p[data-v-a51fc555] {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
.hero[data-v-a51fc555] {
    padding: 3rem 0;
}
}

.ssl-page[data-v-d141a600] {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 4rem;
}
.hero[data-v-d141a600] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 5rem 0;
}
.hero-grid[data-v-d141a600] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow[data-v-d141a600] {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-copy h1[data-v-d141a600] {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin: 0.75rem 0 1.25rem;
  color: #f4f9ff;
  text-shadow: 0 8px 22px rgba(4, 18, 39, 0.4);
}
.subtitle[data-v-d141a600] {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions[data-v-d141a600] {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}
.hero-metrics[data-v-d141a600] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.hero-metrics li[data-v-d141a600] {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.metric-value[data-v-d141a600] {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}
.metric-label[data-v-d141a600] {
  color: rgba(255, 255, 255, 0.8);
}
.hero-visual[data-v-d141a600] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section[data-v-d141a600] {
  padding: 1rem 0;
}
.section-title[data-v-d141a600] {
  text-align: center;
  margin-bottom: 2rem;
}
.feature-grid[data-v-d141a600] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card[data-v-d141a600] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon[data-v-d141a600] {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.feature-card ul[data-v-d141a600] {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-light);
}
.cta-block[data-v-d141a600] {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--surface-gradient);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-block h3[data-v-d141a600] {
  margin-bottom: 0.75rem;
}
.cta-block p[data-v-d141a600] {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
.hero[data-v-d141a600] {
    padding: 3rem 0;
}
}

.codesign-page[data-v-02659ecb] {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 4rem;
}
.hero[data-v-02659ecb] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 5rem 0;
}
.hero-grid[data-v-02659ecb] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow[data-v-02659ecb] {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-copy h1[data-v-02659ecb] {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin: 0.75rem 0 1.25rem;
  color: #f4f9ff;
  text-shadow: 0 8px 22px rgba(4, 18, 39, 0.4);
}
.subtitle[data-v-02659ecb] {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions[data-v-02659ecb] {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}
.hero-metrics[data-v-02659ecb] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.hero-metrics li[data-v-02659ecb] {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.metric-value[data-v-02659ecb] {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}
.metric-label[data-v-02659ecb] {
  color: rgba(255, 255, 255, 0.8);
}
.hero-visual[data-v-02659ecb] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section[data-v-02659ecb] {
  padding: 1rem 0;
}
.section-title[data-v-02659ecb] {
  text-align: center;
  margin-bottom: 2rem;
}
.feature-grid[data-v-02659ecb] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card[data-v-02659ecb] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon[data-v-02659ecb] {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.feature-card ul[data-v-02659ecb] {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-light);
}
.cta-block[data-v-02659ecb] {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--surface-gradient);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-block h3[data-v-02659ecb] {
  margin-bottom: 0.75rem;
}
.cta-block p[data-v-02659ecb] {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
.hero[data-v-02659ecb] {
    padding: 3rem 0;
}
}

.security-page[data-v-09f55246] {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 4rem;
}
.hero[data-v-09f55246] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 5rem 0;
}
.hero-grid[data-v-09f55246] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow[data-v-09f55246] {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero-copy h1[data-v-09f55246] {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin: 0.75rem 0 1.25rem;
}
.hero-copy .subtitle[data-v-09f55246] {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 1.75rem;
}
.hero-actions[data-v-09f55246] {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-metrics[data-v-09f55246] {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.hero-metrics li[data-v-09f55246] {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-visual[data-v-09f55246] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-layout[data-v-09f55246] {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.detail-tabs[data-v-09f55246] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tab-item[data-v-09f55246] {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-card-border);
  background: var(--surface-card-bg);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  color: inherit;
}
.tab-item.active[data-v-09f55246] {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  background: rgba(11, 92, 215, 0.08);
}
.tab-icon[data-v-09f55246] {
  font-size: 1.6rem;
}
.tab-text p[data-v-09f55246] {
  margin: 0.2rem 0 0;
  color: var(--text-light);
}
.detail-content[data-v-09f55246] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.detail-header[data-v-09f55246] {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.detail-description[data-v-09f55246] {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.detail-features[data-v-09f55246] {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-dark);
}
.detail-features span[data-v-09f55246]:first-child {
  color: var(--primary-color);
  font-weight: 600;
}
.detail-metrics[data-v-09f55246] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.detail-metrics .metric-value[data-v-09f55246] {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.detail-metrics .metric-label[data-v-09f55246] {
  margin: 0.2rem 0 0;
  color: var(--text-light);
}
.api-grid[data-v-09f55246] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.api-card[data-v-09f55246] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.api-card code[data-v-09f55246] {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.edge-grid[data-v-09f55246] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.edge-card[data-v-09f55246] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.edge-card ul[data-v-09f55246] {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
.hero[data-v-09f55246] {
    padding: 3rem 0;
}
.detail-layout[data-v-09f55246] {
    grid-template-columns: 1fr;
}
.detail-tabs[data-v-09f55246] {
    flex-direction: row;
    overflow-x: auto;
}
.tab-item[data-v-09f55246] {
    min-width: 240px;
}
}

.ssl-tools-page[data-v-ad841f35] {
  display: flex;
  flex-direction: column;
}
.hero[data-v-ad841f35] {
  background: linear-gradient(135deg, #041227 0%, #0b3d91 55%, #0a8edc 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.hero .eyebrow[data-v-ad841f35] {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero h1[data-v-ad841f35] {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.75rem 0;
}
.hero .subtitle[data-v-ad841f35] {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.section[data-v-ad841f35] {
  padding: 3rem 0;
}
.tools-tabs[data-v-ad841f35] {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.tab-btn[data-v-ad841f35] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-md);
  background: var(--surface-card-bg);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  color: inherit;
}
.tab-btn[data-v-ad841f35]:hover {
  border-color: var(--primary-color);
}
.tab-btn.active[data-v-ad841f35] {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.tab-icon[data-v-ad841f35] {
  font-size: 1.2rem;
}
.tool-content[data-v-ad841f35] {
  background: var(--surface-card-bg);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.tool-header[data-v-ad841f35] {
  margin-bottom: 1.5rem;
}
.tool-header h2[data-v-ad841f35] {
  margin: 0 0 0.5rem;
}
.tool-header p[data-v-ad841f35] {
  color: var(--text-light);
  margin: 0;
}
.tool-grid[data-v-ad841f35] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.tool-grid.dual[data-v-ad841f35] {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
.tool-grid[data-v-ad841f35],
  .tool-grid.dual[data-v-ad841f35] {
    grid-template-columns: 1fr;
}
}
.tool-form[data-v-ad841f35] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group[data-v-ad841f35] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.flex-grow[data-v-ad841f35] {
  flex: 1;
}
.form-group label[data-v-ad841f35] {
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input[data-v-ad841f35],
.form-group select[data-v-ad841f35],
.form-group textarea[data-v-ad841f35] {
  padding: 0.75rem;
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.95rem;
  font-family: inherit;
  color: inherit;
}
.form-group textarea[data-v-ad841f35] {
  font-family: monospace;
  resize: vertical;
}
.form-group input[data-v-ad841f35]:focus,
.form-group select[data-v-ad841f35]:focus,
.form-group textarea[data-v-ad841f35]:focus {
  outline: none;
  border-color: var(--primary-color);
}
.form-row[data-v-ad841f35] {
  display: flex;
  gap: 1rem;
}
.form-row .form-group[data-v-ad841f35] {
  flex: 1;
}
.tool-result[data-v-ad841f35] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.result-card[data-v-ad841f35] {
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.result-card.warning[data-v-ad841f35] {
  border-color: #f59e0b;
}
.result-card.success[data-v-ad841f35] {
  border-color: #10b981;
}
.result-header[data-v-ad841f35] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--surface-card-border);
}
.result-header h4[data-v-ad841f35] {
  margin: 0;
  flex: 1;
}
.result-actions[data-v-ad841f35] {
  display: flex;
  gap: 0.5rem;
}
.btn-icon[data-v-ad841f35] {
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition);
}
.btn-icon[data-v-ad841f35]:hover {
  background: var(--surface-card-border);
  color: var(--primary-color);
}
.result-card textarea[data-v-ad841f35] {
  width: 100%;
  border: none;
  padding: 1rem;
  font-family: monospace;
  font-size: 0.85rem;
  resize: none;
  min-height: 200px;
  background: var(--bg-light);
  color: inherit;
}
.badge[data-v-ad841f35] {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--surface-card-border);
}
.badge-danger[data-v-ad841f35] {
  background: #fee2e2;
  color: #dc2626;
}
.badge-warning[data-v-ad841f35] {
  background: #fef3c7;
  color: #d97706;
}
.badge-success[data-v-ad841f35] {
  background: #d1fae5;
  color: #059669;
}
.chain-info[data-v-ad841f35] {
  margin-top: 1rem;
}
.chain-info h4[data-v-ad841f35] {
  margin: 0 0 1rem;
}
.chain-item[data-v-ad841f35] {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}
.chain-number[data-v-ad841f35] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.chain-details p[data-v-ad841f35] {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.cert-info-card[data-v-ad841f35] {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.cert-info-card h4[data-v-ad841f35] {
  margin: 0 0 1rem;
}
.info-grid[data-v-ad841f35] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-item[data-v-ad841f35] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.info-item label[data-v-ad841f35] {
  font-size: 0.85rem;
  color: var(--text-light);
}
.info-item .value[data-v-ad841f35] {
  font-weight: 500;
}
.info-item .value.primary[data-v-ad841f35] {
  color: var(--primary-color);
  font-size: 1.1rem;
}
.info-item code[data-v-ad841f35] {
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
}
.san-list[data-v-ad841f35] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.match-result[data-v-ad841f35] {
  margin-top: 1.5rem;
}
.result-banner[data-v-ad841f35] {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}
.result-banner.success[data-v-ad841f35] {
  background: #d1fae5;
  border: 1px solid #10b981;
}
.result-banner.error[data-v-ad841f35] {
  background: #fee2e2;
  border: 1px solid #dc2626;
}
.result-icon[data-v-ad841f35] {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-banner.success .result-icon[data-v-ad841f35] {
  background: #10b981;
  color: white;
}
.result-banner.error .result-icon[data-v-ad841f35] {
  background: #dc2626;
  color: white;
}
.result-banner h4[data-v-ad841f35] {
  margin: 0;
}
.result-banner p[data-v-ad841f35] {
  margin: 0.25rem 0 0;
  color: var(--text-secondary);
}
.loading-spinner[data-v-ad841f35] {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin-ad841f35 0.8s linear infinite;
  margin-right: 0.5rem;
}
@keyframes spin-ad841f35 {
to {
    transform: rotate(360deg);
}
}
.btn[data-v-ad841f35] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary[data-v-ad841f35] {
  background: var(--primary-color);
  color: white;
}
.btn-primary[data-v-ad841f35]:hover:not(:disabled) {
  background: var(--primary-hover);
}
.btn[data-v-ad841f35]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== Base Layout ===== */
.docs-page[data-v-2e966395] {
  padding: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
.docs-page[data-v-2e966395] .container-wide {
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
.docs-page[data-v-2e966395] .container-wide {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
}

/* ===== Top Navigation Bar ===== */
.docs-topbar[data-v-2e966395] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 0.875rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  z-index: 100;
}
.topbar-left[data-v-2e966395] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar-left .brand[data-v-2e966395] {
  font-weight: 700;
  font-size: 1.25rem;
  color: #0b5dd7;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.topbar-left .nav-link-small[data-v-2e966395] {
  font-size: 0.9rem;
  color: #64748b;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.topbar-left .nav-link-small[data-v-2e966395]:hover,
.topbar-left .nav-link-small.active[data-v-2e966395] {
  color: #0b5dd7;
  background: rgba(11, 93, 215, 0.08);
}
.nav-mobile-hide[data-v-2e966395] {
  display: inline-flex;
}

/* ===== Search ===== */
.topbar-search[data-v-2e966395] {
  position: relative;
  max-width: 500px;
  width: 100%;
}
.search-box[data-v-2e966395] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.search-box[data-v-2e966395]:focus-within {
  border-color: #0b5dd7;
  box-shadow: 0 0 0 3px rgba(11, 93, 215, 0.1);
}
.search-icon[data-v-2e966395] {
  font-size: 1rem;
  opacity: 0.5;
}
.search-box input[data-v-2e966395] {
  flex: 1;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: #1e293b;
}
.search-box input[data-v-2e966395]::placeholder {
  color: #94a3b8;
}

/* ===== Language Selector ===== */
.topbar-actions[data-v-2e966395] {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.language-selector[data-v-2e966395] {
  position: relative;
}
.lang-btn[data-v-2e966395] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #475569;
  transition: all 0.2s ease;
}
.lang-btn[data-v-2e966395]:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}
.lang-icon[data-v-2e966395] {
  font-size: 1rem;
}
.lang-dropdown[data-v-2e966395] {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  min-width: 160px;
  padding: 0.5rem;
  z-index: 200;
}
.lang-dropdown button[data-v-2e966395] {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #475569;
  transition: all 0.15s ease;
}
.lang-dropdown button[data-v-2e966395]:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.lang-dropdown button.active[data-v-2e966395] {
  background: #0b5dd7;
  color: #fff;
}

/* ===== Search Results ===== */
.search-results[data-v-2e966395] {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.result-title[data-v-2e966395] {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}
.search-grid[data-v-2e966395] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.result-card[data-v-2e966395] {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
  transition: all 0.2s ease;
}
.result-card[data-v-2e966395]:hover {
  border-color: #0b5dd7;
  box-shadow: 0 4px 12px rgba(11, 93, 215, 0.1);
}
.result-card h4[data-v-2e966395] {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #1e293b;
}
.result-card p[data-v-2e966395] {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.result-meta[data-v-2e966395] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.25rem;
}
.pill[data-v-2e966395] {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 500;
}
.pill.ghost[data-v-2e966395] {
  background: transparent;
  border: 1px dashed #cbd5e1;
  color: #94a3b8;
}
.ghost-link[data-v-2e966395] {
  border: none;
  background: none;
  color: #0b5dd7;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.75rem;
  display: inline-block;
}
.ghost-link[data-v-2e966395]:hover {
  text-decoration: underline;
}
.top-results[data-v-2e966395] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  margin-top: 0.75rem;
  padding: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

/* ===== Main Layout ===== */
.docs-shell[data-v-2e966395] {
  display: block;
  position: relative;
  padding-left: 300px;
  padding-right: 240px;
}

/* ===== Sidebar ===== */
.docs-sidebar[data-v-2e966395] {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 280px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  max-height: calc(100vh - 20px);
  overflow-y: auto;
  z-index: 50;
}
.docs-sidebar[data-v-2e966395]::-webkit-scrollbar {
  width: 4px;
}
.docs-sidebar[data-v-2e966395]::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.sidebar-header[data-v-2e966395] {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.sidebar-header .eyebrow[data-v-2e966395] {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0b5dd7;
  margin: 0 0 0.25rem;
}
.sidebar-header .subtitle[data-v-2e966395] {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}
.nav-tree[data-v-2e966395] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-item[data-v-2e966395] {
  margin: 0;
}
.nav-item.active > .nav-link[data-v-2e966395] {
  background: linear-gradient(135deg, rgba(11, 93, 215, 0.1) 0%, rgba(11, 93, 215, 0.05) 100%);
  color: #0b5dd7;
  font-weight: 600;
}
.nav-item.active > .nav-link[data-v-2e966395]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #0b5dd7;
  border-radius: 0 2px 2px 0;
}
.nav-link[data-v-2e966395] {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #475569;
  font-size: 0.9rem;
  text-align: left;
  transition: all 0.15s ease;
}
.nav-link[data-v-2e966395]:hover {
  background: #f8fafc;
  color: #1e293b;
}
.nav-arrow[data-v-2e966395] {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.nav-title[data-v-2e966395] {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== Main Content ===== */
.docs-main[data-v-2e966395] {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  min-height: 70vh;
}
.doc-breadcrumbs[data-v-2e966395] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.doc-breadcrumbs a[data-v-2e966395] {
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s ease;
}
.doc-breadcrumbs a[data-v-2e966395]:hover {
  color: #0b5dd7;
}
.crumb-sep[data-v-2e966395] {
  color: #cbd5e1;
  margin-right: 0.5rem;
}
.doc-loading[data-v-2e966395],
.doc-empty[data-v-2e966395] {
  padding: 4rem 2rem;
  text-align: center;
  color: #64748b;
}
.spinner[data-v-2e966395] {
  width: 32px;
  height: 32px;
  border: 3px solid #e2e8f0;
  border-top-color: #0b5dd7;
  border-radius: 50%;
  animation: spin-2e966395 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin-2e966395 {
to { transform: rotate(360deg);
}
}

/* ===== Document Body ===== */
.doc-body[data-v-2e966395] {
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
}
.doc-body h1[data-v-2e966395] {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}
.doc-body h2[data-v-2e966395] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 2rem 0 1rem;
}
.doc-body h3[data-v-2e966395] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin: 1.75rem 0 0.75rem;
}
.doc-body p[data-v-2e966395] {
  margin: 1rem 0;
}
.doc-body a[data-v-2e966395] {
  color: #0b5dd7;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.doc-body a[data-v-2e966395]:hover {
  border-bottom-color: #0b5dd7;
}

/* ===== Code Blocks ===== */
.doc-body pre[data-v-2e966395] {
  position: relative;
  background: #1a1a2e;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 1.25rem 0;
  border: 1px solid #2d2d44;
}
.doc-body pre code[data-v-2e966395] {
  display: block;
  color: #e4e4e7;
  font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.7;
  background: transparent;
}
.doc-body code[data-v-2e966395] {
  background: rgba(11, 93, 215, 0.08);
  color: #0b5dd7;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', Consolas, monospace;
  font-size: 0.85em;
  font-weight: 500;
}
.doc-body pre code[data-v-2e966395] {
  color: #e4e4e7;
  background: transparent;
  padding: 0;
  border: none;
  font-weight: normal;
  font-size: 0.85rem;
}
.doc-body strong[data-v-2e966395] {
  font-weight: 600;
  color: #1e293b;
}
.doc-body em[data-v-2e966395] {
  font-style: italic;
  color: #475569;
}

/* ===== Blockquotes ===== */
.doc-body blockquote[data-v-2e966395] {
  position: relative;
  border: none;
  border-left: 4px solid #0b5dd7;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, rgba(11, 93, 215, 0.05) 0%, rgba(11, 93, 215, 0.02) 100%);
  border-radius: 0 12px 12px 0;
  color: #475569;
}
.doc-body blockquote p[data-v-2e966395] {
  margin: 0;
}

/* ===== Lists ===== */
.doc-body ul[data-v-2e966395],
.doc-body ol[data-v-2e966395] {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.doc-body li[data-v-2e966395] {
  margin-bottom: 0.5rem;
  color: #475569;
}
.doc-body li[data-v-2e966395]::marker {
  color: #0b5dd7;
}

/* ===== Tables ===== */
.doc-body table[data-v-2e966395] {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.doc-body th[data-v-2e966395],
.doc-body td[data-v-2e966395] {
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.doc-body th[data-v-2e966395] {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-weight: 600;
  color: #1e293b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.doc-body tr:last-child td[data-v-2e966395] {
  border-bottom: none;
}
.doc-body tr:hover td[data-v-2e966395] {
  background: rgba(11, 93, 215, 0.03);
}
.doc-body td code[data-v-2e966395] {
  font-size: 0.8rem;
  padding: 0.15rem 0.4rem;
}

/* ===== Back to Top Button ===== */
.back-to-top[data-v-2e966395] {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  color: #64748b;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  z-index: 50;
}
.back-to-top[data-v-2e966395]:hover {
  background: #0b5dd7;
  border-color: #0b5dd7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 93, 215, 0.25);
}
@media (max-width: 1024px) {
.back-to-top[data-v-2e966395] {
    bottom: 5rem;
    right: 1rem;
    width: 38px;
    height: 38px;
}
}

/* ===== Section Cards ===== */
.section-cards[data-v-2e966395] {
  margin: 2rem 0;
}
.section-cards h3[data-v-2e966395] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}
.cards-grid[data-v-2e966395] {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.section-card[data-v-2e966395] {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
  transition: all 0.2s ease;
}
.section-card[data-v-2e966395]:hover {
  border-color: #0b5dd7;
  box-shadow: 0 8px 25px rgba(11, 93, 215, 0.1);
  transform: translateY(-2px);
}
.card-eyebrow[data-v-2e966395] {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0b5dd7;
  margin: 0 0 0.5rem;
}
.section-card h4[data-v-2e966395] {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #1e293b;
}
.section-card p[data-v-2e966395] {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.card-link[data-v-2e966395] {
  margin-top: 1rem;
  color: #0b5dd7;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
}
.card-link[data-v-2e966395]:hover {
  text-decoration: underline;
}

/* ===== Table of Contents ===== */
.docs-toc[data-v-2e966395] {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  max-height: calc(100vh - 20px);
  overflow-y: auto;
  z-index: 50;
}
.toc-title[data-v-2e966395] {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 0 0 1rem;
}
.docs-toc nav[data-v-2e966395] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-link[data-v-2e966395] {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  text-align: left;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #64748b;
  font-size: 0.85rem;
  transition: all 0.15s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.toc-link[data-v-2e966395]:hover {
  background: #f8fafc;
  color: #0b5dd7;
}
.toc-link.depth-1[data-v-2e966395] {
  font-weight: 600;
  color: #1e293b;
}
.toc-link.depth-3[data-v-2e966395] {
  padding-left: 1.25rem;
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
.docs-shell[data-v-2e966395] {
    padding-right: 20px;
}
.docs-toc[data-v-2e966395] {
    display: none;
}
}

/* Tablet / Small Laptop */
@media (max-width: 1024px) {
.docs-topbar[data-v-2e966395] {
    gap: 1rem;
    padding: 0.75rem 1rem;
}
.topbar-left[data-v-2e966395] {
    gap: 0.5rem;
}
.topbar-left .nav-link-small[data-v-2e966395] {
    padding: 0.35rem 0.5rem;
    font-size: 0.8rem;
}
.topbar-search[data-v-2e966395] {
    max-width: 300px;
}
.search-box[data-v-2e966395] {
    padding: 0.4rem 0.6rem;
    gap: 0.5rem;
}
.search-box input[data-v-2e966395] {
    font-size: 0.85rem;
}
.lang-btn[data-v-2e966395] {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
}
.lang-btn span[data-v-2e966395]:last-child {
    display: none;
}
}

/* iPad / Small Tablet */
@media (max-width: 900px) {
.docs-topbar[data-v-2e966395] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem;
}
.topbar-left[data-v-2e966395] {
    flex: 1;
    min-width: 0;
}
.topbar-left .brand[data-v-2e966395] {
    font-size: 1.1rem;
}
.nav-mobile-hide[data-v-2e966395] {
    display: none;
}
.topbar-search[data-v-2e966395] {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
}
.topbar-actions[data-v-2e966395] {
    order: 2;
}
.menu-toggle[data-v-2e966395] {
    display: flex;
}
.docs-shell[data-v-2e966395] {
    padding-left: 20px;
    padding-right: 20px;
}
.docs-sidebar[data-v-2e966395] {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    max-height: none;
    margin-bottom: 0;
    padding: 1rem;
    display: none;
}
.docs-main[data-v-2e966395] {
    padding: 1.25rem;
}
}

/* ===== Menu Toggle Button ===== */
.menu-toggle[data-v-2e966395] {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  padding: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
}
.menu-toggle span[data-v-2e966395] {
  display: block;
  width: 100%;
  height: 2px;
  background: #475569;
  border-radius: 1px;
}

/* ===== Drawer Overlay ===== */
.drawer-overlay[data-v-2e966395] {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer-overlay.active[data-v-2e966395] {
  opacity: 1;
}

/* ===== Drawer Header ===== */
.drawer-header[data-v-2e966395] {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  margin: -1.25rem -1.25rem 1rem;
}
.drawer-title[data-v-2e966395] {
  font-weight: 600;
  color: #1e293b;
}
.drawer-close[data-v-2e966395] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  color: #64748b;
}
.drawer-close[data-v-2e966395]:hover {
  background: #e2e8f0;
  color: #1e293b;
}

/* ===== Mobile FAB ===== */
.mobile-fab-group[data-v-2e966395] {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 100;
}
.fab-btn[data-v-2e966395] {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b5dd7;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(11, 93, 215, 0.4);
  cursor: pointer;
  font-size: 1.25rem;
}
.fab-btn[data-v-2e966395]:active {
  transform: scale(0.95);
}
@media (max-width: 640px) {
.docs-topbar[data-v-2e966395] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
}
.topbar-left[data-v-2e966395] {
    flex: 1;
    min-width: 0;
    gap: 0.5rem;
}
.topbar-left .brand[data-v-2e966395] {
    font-size: 1rem;
}
.menu-toggle[data-v-2e966395] {
    display: flex;
    order: -1;
}
.nav-mobile-hide[data-v-2e966395] {
    display: none;
}
.topbar-actions[data-v-2e966395] {
    order: 1;
    flex-shrink: 0;
}
.lang-btn[data-v-2e966395] {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
}
.lang-btn .lang-icon[data-v-2e966395] {
    font-size: 0.9rem;
}
.lang-btn span[data-v-2e966395]:last-child {
    display: none;
}
.topbar-search[data-v-2e966395] {
    order: 2;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.search-box[data-v-2e966395] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.35rem 0.5rem;
}
.search-box input[data-v-2e966395] {
    min-width: 0;
    width: 100%;
    padding: 0.35rem 0;
    font-size: 0.9rem;
}
.docs-shell[data-v-2e966395] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

  /* Sidebar as Drawer */
.drawer-overlay[data-v-2e966395] {
    display: block;
    pointer-events: none;
}
.drawer-overlay.active[data-v-2e966395] {
    pointer-events: auto;
}
.docs-sidebar[data-v-2e966395] {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    max-height: 100vh;
    z-index: 200;
    border-radius: 0 14px 14px 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 1.25rem;
}
.docs-sidebar.drawer-open[data-v-2e966395] {
    transform: translateX(0);
}
.docs-sidebar .drawer-header[data-v-2e966395] {
    display: flex;
}
.docs-sidebar .sidebar-header[data-v-2e966395] {
    display: none;
}

  /* TOC as Drawer */
.docs-toc[data-v-2e966395] {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 260px;
    max-width: 85vw;
    max-height: 100vh;
    z-index: 200;
    border-radius: 14px 0 0 14px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 1.25rem;
}
.docs-toc.drawer-open[data-v-2e966395] {
    transform: translateX(0);
}
.docs-toc .drawer-header[data-v-2e966395] {
    display: flex;
}
.docs-toc .toc-title[data-v-2e966395] {
    display: none;
}
.mobile-fab-group[data-v-2e966395] {
    display: flex;
}
.docs-main[data-v-2e966395] {
    padding: 1.25rem 1rem;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.doc-body[data-v-2e966395] {
    font-size: 0.95rem;
    line-height: 1.7;
}
.doc-body p[data-v-2e966395] {
    margin-bottom: 1rem;
}
.doc-body h3[data-v-2e966395] {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.doc-body h4[data-v-2e966395] {
    font-size: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.doc-body ul[data-v-2e966395], .doc-body ol[data-v-2e966395] {
    padding-left: 1.25rem;
}
.doc-body pre[data-v-2e966395] {
    padding: 0.875rem;
    margin: 1rem -1rem;
    border-radius: 0;
    font-size: 0.8rem;
    overflow-x: auto;
}
.doc-body pre[data-v-2e966395]::before {
    display: none;
}
.doc-body code[data-v-2e966395] {
    font-size: 0.85rem;
    padding: 0.15rem 0.35rem;
}
.doc-body table[data-v-2e966395] {
    display: block;
    overflow-x: auto;
    font-size: 0.85rem;
}
.doc-body blockquote[data-v-2e966395] {
    margin-left: 0;
    margin-right: 0;
    padding: 0.75rem 1rem;
}
}

/* ===== Simple Docs Footer ===== */
.docs-footer[data-v-2e966395] {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  color: #94a3b8;
  font-size: 0.875rem;
  border-top: 1px solid #e2e8f0;
}
.docs-footer p[data-v-2e966395] {
  margin: 0;
  color: inherit;
}

.not-found-page[data-v-57893508] {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.container[data-v-57893508] {
  text-align: center;
}
.error-code[data-v-57893508] {
  font-size: 10rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 8px rgba(0, 102, 204, 0.2);
}
.error-title[data-v-57893508] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.error-message[data-v-57893508] {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.error-actions[data-v-57893508] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.error-illustration[data-v-57893508] {
  margin-top: 3rem;
}
.cloud-404[data-v-57893508] {
  font-size: 8rem;
  animation: float-57893508 3s ease-in-out infinite;
}
@keyframes float-57893508 {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-20px);
}
}
@media (max-width: 768px) {
.error-code[data-v-57893508] {
    font-size: 6rem;
}
.error-title[data-v-57893508] {
    font-size: 2rem;
}
.error-message[data-v-57893508] {
    font-size: 1rem;
}
.error-actions[data-v-57893508] {
    flex-direction: column;
    align-items: stretch;
}
}
