:root {
  color-scheme: dark;
  --bg: #071013;
  --surface: #0d1a1f;
  --surface-2: #12252b;
  --text: #f5fbfc;
  --muted: #a9bec4;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #16d9b3;
  --primary-2: #43a8ff;
  --warning: #f6c76f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(22, 217, 179, 0.14), transparent 32rem),
    linear-gradient(180deg, #071013 0%, #0a1519 42%, #081115 100%);
  color: var(--text);
  line-height: 1.8;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(7, 16, 19, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.trust-strip,
.billing-toggle,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #061114;
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 600;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-logo {
  width: auto;
  max-height: 46px;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.header-action,
.account-link,
.button {
  min-height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-weight: 800;
  border: 1px solid transparent;
}

.header-action,
.button.primary {
  background: var(--primary);
  color: #041113;
}

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

.account-link {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.customer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(22, 217, 179, 0.08);
  color: var(--muted);
  font-weight: 800;
}

.customer-strip span {
  color: var(--text);
}

.customer-strip a {
  color: var(--primary);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px) 42px;
}

.hero-content {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.22;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div,
.feature-card,
.price-card,
.faq details,
.server-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-stats div {
  padding: 14px;
}

.hero-stats dt {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.status-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  min-width: min(320px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 16, 19, 0.78);
  backdrop-filter: blur(14px);
}

.status-card small {
  grid-column: 2;
  color: var(--muted);
}

.pulse {
  width: 12px;
  height: 12px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(22, 217, 179, 0.12);
}

.trust-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 700;
}

.trust-strip span {
  padding-inline: 14px;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.feature-grid,
.pricing-grid,
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.app-card {
  padding: 24px;
}

.feature-card p,
.price-card p,
.app-card p,
.network p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(22, 217, 179, 0.12);
}

.network {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 32px;
  align-items: center;
  background: linear-gradient(90deg, rgba(18, 37, 43, 0.88), rgba(13, 26, 31, 0.56));
}

.apps {
  background: rgba(255, 255, 255, 0.025);
}

.app-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.app-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 217, 179, 0.18), rgba(67, 168, 255, 0.16));
  color: var(--primary);
  font-weight: 900;
}

.app-card .button {
  margin-top: auto;
}

.server-list {
  padding: 12px;
}

.server-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.server-row span {
  display: grid;
  gap: 2px;
}

.server-row small {
  color: var(--muted);
  font-size: 0.82rem;
}

.server-row:last-child {
  border-bottom: 0;
}

.server-connect {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(22, 217, 179, 0.46);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 800;
}

.server-connect:hover {
  background: rgba(22, 217, 179, 0.12);
}

meter {
  width: 100%;
  height: 12px;
}

meter::-webkit-meter-bar {
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 999px;
}

meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.billing-toggle {
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.billing-toggle button {
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button.active {
  background: var(--text);
  color: #061114;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(22, 217, 179, 0.72);
  background: linear-gradient(180deg, rgba(22, 217, 179, 0.12), rgba(255, 255, 255, 0.045));
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  border-radius: 999px;
  background: rgba(246, 199, 111, 0.16);
  color: var(--warning);
  padding: 4px 10px;
  font-size: 0.84rem;
  font-weight: 800;
}

.price {
  margin-top: 10px;
  font-size: 3.4rem;
  line-height: 1;
}

.currency {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.price-card li {
  display: flex;
  align-items: baseline;
}

.price-card .button {
  margin-top: auto;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 10, 12, 0.76);
  backdrop-filter: blur(12px);
}

.checkout-modal.open {
  display: grid;
}

.checkout-dialog {
  width: min(620px, 100%);
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b171b;
  box-shadow: var(--shadow);
}

.checkout-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
}

.checkout-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.checkout-summary div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.checkout-summary span,
.checkout-note {
  color: var(--muted);
}

.checkout-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
}

.checkout-cycle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.checkout-cycle-option {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.checkout-cycle-option span {
  color: var(--muted);
  font-weight: 800;
}

.checkout-cycle-option strong {
  font-size: 1.5rem;
}

.checkout-cycle-option small {
  color: var(--muted);
}

.checkout-cycle-option.active {
  border-color: rgba(22, 217, 179, 0.76);
  background: rgba(22, 217, 179, 0.12);
}

.checkout-features {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.checkout-features li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.checkout-pay {
  width: 100%;
}

.checkout-account {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
}

.checkout-account a {
  color: var(--primary);
  font-weight: 800;
}

.account-page {
  min-height: calc(100vh - 76px);
}

.panel-dashboard {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  background: #101b3f;
  color: #d6e0ff;
}

.customer-panel-body {
  background: #101b3f;
}

.customer-panel-body .panel-dashboard {
  min-height: 100vh;
}

.panel-sidebar {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(180, 195, 245, 0.28);
  background: #2d3a62;
}

.customer-panel-body .panel-sidebar {
  top: 0;
  height: 100vh;
}

.panel-logo {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 34px;
  border-bottom: 1px solid rgba(180, 195, 245, 0.28);
  color: #ff5a24;
  font-size: 1.8rem;
  font-weight: 900;
}

.panel-collapse {
  position: absolute;
  top: 34px;
  right: 16px;
  min-height: 42px;
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  background: #7784b4;
  color: #10204a;
  font-weight: 900;
}

.panel-nav {
  display: grid;
  padding-top: 16px;
}

.panel-nav a {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 34px;
  border-left: 6px solid transparent;
  color: #c0cdf7;
  font-weight: 700;
}

.panel-nav a.active,
.panel-nav a:hover {
  border-left-color: #ff5a24;
  background: #101b3f;
  color: #ff7446;
}

.panel-nav span {
  width: 22px;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
}

.panel-more {
  margin: auto 40px 28px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #48567e;
  color: #cfd8fb;
  font-weight: 800;
}

.panel-main {
  display: grid;
  align-content: start;
  gap: 24px;
}

.panel-topbar {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(180, 195, 245, 0.28);
  background: #2d3a62;
}

.panel-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.panel-stats span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: #7a86b7;
  color: #14214a;
  font-weight: 700;
}

.panel-search {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 32px;
  background: #7784b4;
}

.panel-search input,
.order-summary-card input,
.form-like-fields input {
  border: 0;
  background: #f6f7fb;
  color: #101b3f;
  font: inherit;
}

.panel-search input {
  min-width: min(230px, 36vw);
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 24px;
}

.panel-search a {
  color: #15234e;
  font-weight: 900;
}

.network-selector,
.order-form-card,
.order-summary-card,
.panel-table-card,
.support-note-card,
.usage-strip article {
  border: 1px solid rgba(139, 154, 205, 0.28);
  border-radius: 5px;
  background: #2d3a62;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.network-selector,
.order-layout,
.usage-strip,
.panel-table-card,
.support-note-card {
  margin-inline: 32px;
}

.network-selector {
  margin-top: 8px;
  overflow: hidden;
}

.panel-section-head {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(139, 154, 205, 0.32);
}

.panel-section-head h2 {
  margin: 0;
  color: #bfcaf1;
  font-size: 1rem;
  text-transform: uppercase;
}

.panel-section-head button,
.panel-section-head a {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(190, 202, 245, 0.35);
  border-radius: 6px;
  background: #34436e;
  color: #d6e0ff;
  font: inherit;
  font-weight: 800;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 18px 16px 24px;
}

.network-grid a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  background: #202b55;
  color: #bdcaff;
  text-align: center;
  font-weight: 900;
}

.network-grid a:hover {
  background: #263461;
  color: #ff7446;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: 24px;
}

.order-form-card {
  padding: 24px 18px;
}

.order-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.order-tabs a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(190, 202, 245, 0.26);
  border-radius: 6px;
  background: #465275;
  color: #cbd6ff;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.order-tabs a.active {
  border-color: #ff5a24;
  background: #ff5a24;
  color: #fff;
}

.form-like-fields {
  display: grid;
  gap: 16px;
}

.form-like-fields label {
  display: grid;
  gap: 6px;
  color: #c4cff6;
  font-weight: 800;
}

.form-like-fields input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 6px;
}

.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.detail-stat-grid div,
.usage-strip article {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.detail-stat-grid div {
  border-radius: 6px;
  background: #202b55;
}

.detail-stat-grid span,
.usage-strip span,
.summary-info span,
.summary-title,
.support-note-card p {
  color: #b8c4f0;
}

.detail-stat-grid strong,
.usage-strip strong,
.summary-info strong {
  color: #ff7446;
}

.order-summary-card {
  align-self: start;
  overflow: hidden;
}

.summary-head {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(139, 154, 205, 0.32);
}

.summary-head h2 {
  margin: 0;
  color: #bdc9f6;
  font-size: 1rem;
  text-transform: uppercase;
}

.summary-head input {
  width: 200px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 5px;
}

.summary-title {
  margin: 0;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(139, 154, 205, 0.32);
  font-weight: 700;
}

.summary-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-info div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(139, 154, 205, 0.32);
}

.summary-info div:nth-child(odd) {
  border-right: 1px solid rgba(139, 154, 205, 0.32);
}

.usage-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.panel-table-card {
  overflow: hidden;
}

.support-note-card {
  padding: 18px;
  margin-bottom: 32px;
}

.support-note-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ff7446;
}

.support-note-card p {
  margin: 0;
}

.customer-panel-body,
.customer-panel-body .panel-dashboard {
  background: #071013;
  color: #f5fbfc;
}

.customer-panel-body .panel-sidebar,
.customer-panel-body .panel-topbar,
.customer-panel-body .network-selector,
.customer-panel-body .order-form-card,
.customer-panel-body .order-summary-card,
.customer-panel-body .panel-table-card,
.customer-panel-body .support-note-card,
.customer-panel-body .usage-strip article {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0d1a1f;
}

.customer-panel-body .panel-logo {
  color: #f5fbfc;
}

.customer-panel-body .panel-logo .brand-mark {
  background: linear-gradient(135deg, #16d9b3, #43a8ff);
  color: #061114;
}

.customer-panel-body .panel-collapse,
.customer-panel-body .panel-stats span,
.customer-panel-body .panel-search,
.customer-panel-body .network-grid a,
.customer-panel-body .detail-stat-grid div,
.customer-panel-body .order-tabs a {
  background: #12252b;
  color: #f5fbfc;
}

.customer-panel-body .panel-search input,
.customer-panel-body .order-summary-card input,
.customer-panel-body .form-like-fields input {
  background: #f5fbfc;
  color: #071013;
}

.customer-panel-body .panel-search a,
.customer-panel-body .panel-pay-link,
.customer-panel-body .panel-section-head a {
  border-color: #16d9b3;
  background: #16d9b3;
  color: #041113;
}

.customer-panel-body .panel-nav a {
  color: #a9bec4;
}

.customer-panel-body .panel-nav a.active,
.customer-panel-body .panel-nav a:hover,
.customer-panel-body .network-grid a:hover {
  background: rgba(22, 217, 179, 0.12);
  color: #16d9b3;
}

.customer-panel-body .panel-nav a.active,
.customer-panel-body .panel-nav a:hover {
  border-left-color: #16d9b3;
}

.customer-panel-body .order-tabs a.active {
  border-color: #16d9b3;
  background: #16d9b3;
  color: #041113;
}

.customer-panel-body .detail-stat-grid strong,
.customer-panel-body .usage-strip strong,
.customer-panel-body .summary-info strong,
.customer-panel-body .support-note-card strong {
  color: #16d9b3;
}

.customer-panel-body .network-selector.is-hidden .network-grid {
  display: none;
}

.customer-panel-body .panel-dashboard.sidebar-collapsed {
  grid-template-columns: 92px minmax(0, 1fr);
}

.customer-panel-body .panel-dashboard.sidebar-collapsed .panel-logo strong,
.customer-panel-body .panel-dashboard.sidebar-collapsed .panel-nav a {
  font-size: 0;
}

.customer-panel-body .panel-dashboard.sidebar-collapsed .panel-nav span {
  font-size: 1rem;
}

.customer-panel-body .panel-dashboard.sidebar-collapsed .panel-more {
  display: none;
}

.customer-dashboard {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: #071013;
}

.dashboard-sidebar {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: #081216;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.customer-mini {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.customer-mini span,
.dashboard-topbar p,
.summary-card span,
.summary-card small,
.package-card span,
.timeline small,
.shop-details dt,
.usage-row span,
.note-panel p {
  color: var(--muted);
}

.customer-mini span {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.dashboard-menu {
  display: grid;
  gap: 8px;
}

.dashboard-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-menu a.active,
.dashboard-menu a:hover {
  background: rgba(22, 217, 179, 0.12);
  color: var(--primary);
}

.sidebar-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.sidebar-actions .button {
  width: 100%;
}

.dashboard-workspace {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
}

.dashboard-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 6px;
}

.dashboard-topbar h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.dashboard-topbar p {
  max-width: 720px;
  margin-bottom: 0;
}

.topbar-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 210px;
}

.summary-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.summary-card,
.shop-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.summary-card {
  display: grid;
  gap: 5px;
  min-height: 132px;
  padding: 18px;
}

.summary-card.highlight {
  border-color: rgba(22, 217, 179, 0.42);
  background: linear-gradient(180deg, rgba(22, 217, 179, 0.13), rgba(255, 255, 255, 0.045));
}

.summary-card strong {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 18px;
}

.dashboard-columns.compact {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.shop-panel {
  padding: 22px;
}

.shop-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.shop-panel-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.package-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 12px;
  margin-bottom: 18px;
}

.package-card div,
.usage-row div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.package-card strong,
.usage-row strong {
  overflow-wrap: anywhere;
  font-size: 1.25rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 19, 0.5);
}

.timeline div {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 24px;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  right: 0;
  height: 1px;
  background: var(--line);
}

.timeline div:last-child::before {
  right: auto;
  width: 0;
}

.timeline span {
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(22, 217, 179, 0.11);
}

.shop-details {
  display: grid;
  margin: 0;
}

.shop-details div {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.shop-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.shop-details dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.usage-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.note-panel p {
  margin-bottom: 0;
}

.payments-panel {
  overflow: hidden;
}

.table-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(22, 217, 179, 0.13);
  color: var(--primary);
  font-weight: 900;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
}

.dashboard-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.dashboard-status,
.dashboard-metrics article,
.dashboard-panel,
.account-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-status {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.dashboard-status strong {
  font-size: 1.35rem;
}

.dashboard-status small,
.dashboard-metrics small,
.dashboard-metrics span,
.usage-cards span,
.service-note,
.detail-list dt {
  color: var(--muted);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.dashboard-metrics article {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.dashboard-metrics strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.dashboard-panel {
  padding: 24px;
}

.panel-heading {
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list dt {
  font-weight: 700;
}

.detail-list dd {
  margin: 0;
  font-weight: 800;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
}

.status-pill.active,
.status-pill.paid {
  border-color: rgba(22, 217, 179, 0.44);
  background: rgba(22, 217, 179, 0.14);
  color: var(--primary);
}

.status-pill.pending-activation,
.status-pill.pending-verification,
.status-pill.unpaid {
  border-color: rgba(246, 199, 111, 0.44);
  background: rgba(246, 199, 111, 0.14);
  color: var(--warning);
}

.status-pill.expired,
.status-pill.suspended,
.status-pill.cancelled,
.status-pill.overdue {
  border-color: rgba(255, 113, 113, 0.44);
  background: rgba(255, 113, 113, 0.12);
  color: #ffd4d4;
}

.usage-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.usage-cards div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.usage-cards strong {
  font-size: 1.45rem;
}

.service-note {
  margin-bottom: 0;
}

.payment-table-wrap {
  overflow-x: auto;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

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

.payment-table th {
  color: var(--muted);
  font-size: 0.88rem;
}

.payment-table tr:last-child td {
  border-bottom: 0;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.account-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.account-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.account-panel dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.account-panel dl div:last-child {
  border-bottom: 0;
}

.account-panel dt {
  color: var(--muted);
  font-weight: 700;
}

.account-panel dd {
  margin: 4px 0 0;
}

.account-panel ul {
  margin: 0;
  padding-left: 20px;
}

.account-actions-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.auth-page {
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}

.auth-copy {
  max-width: 680px;
}

.auth-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.auth-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(22, 217, 179, 0.1), rgba(255, 255, 255, 0.045)),
    var(--surface);
  box-shadow: var(--shadow);
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  color: var(--text);
  font-weight: 800;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 19, 0.72);
  color: var(--text);
  font: inherit;
}

.auth-form input:focus {
  outline: 2px solid rgba(22, 217, 179, 0.7);
  outline-offset: 2px;
}

.auth-form .button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  font: inherit;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.auth-check input {
  width: 18px;
  height: 18px;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
}

.auth-links a {
  color: var(--primary);
  font-weight: 800;
}

.auth-error,
.auth-success {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.auth-error {
  border: 1px solid rgba(255, 113, 113, 0.4);
  background: rgba(255, 113, 113, 0.12);
  color: #ffd4d4;
}

.auth-success {
  border: 1px solid rgba(22, 217, 179, 0.4);
  background: rgba(22, 217, 179, 0.12);
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq details {
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #061013;
}

.site-footer p {
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .account-actions {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    inset: 74px 18px auto;
    display: grid;
    justify-content: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #071013;
  }

  .main-nav.open .main-nav-list {
    display: grid;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
  }

  .hero,
  .network {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .panel-dashboard {
    grid-template-columns: 1fr;
  }

  .panel-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(180, 195, 245, 0.28);
  }

  .panel-logo {
    min-height: 80px;
  }

  .panel-collapse {
    top: 20px;
  }

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

  .panel-nav a {
    min-height: 48px;
    justify-content: center;
    padding: 10px;
    border-left: 0;
    border-bottom: 4px solid transparent;
    text-align: center;
  }

  .panel-nav a.active,
  .panel-nav a:hover {
    border-left-color: transparent;
    border-bottom-color: #ff5a24;
  }

  .panel-more {
    margin: 14px 20px 20px;
  }

  .panel-topbar,
  .panel-stats,
  .panel-search {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-stats {
    gap: 10px;
  }

  .panel-search {
    border-radius: 12px;
  }

  .panel-search input {
    width: 100%;
    min-width: 0;
  }

  .network-grid,
  .detail-stat-grid,
  .usage-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .customer-dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .dashboard-menu a {
    justify-content: center;
    text-align: center;
  }

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

  .dashboard-topbar,
  .shop-panel-head {
    flex-direction: column;
  }

  .topbar-badges {
    justify-content: flex-start;
  }

  .feature-grid,
  .pricing-grid,
  .app-grid,
  .summary-row,
  .dashboard-columns,
  .dashboard-columns.compact,
  .dashboard-hero,
  .dashboard-metrics,
  .auth-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-stats,
  .feature-grid,
  .pricing-grid,
  .app-grid,
  .server-row,
  .panel-nav,
  .network-grid,
  .order-tabs,
  .detail-stat-grid,
  .usage-strip,
  .summary-info,
  .summary-row,
  .dashboard-columns,
  .dashboard-columns.compact,
  .package-card,
  .timeline,
  .usage-row,
  .dashboard-hero,
  .dashboard-metrics,
  .dashboard-grid,
  .usage-cards {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button,
  .billing-toggle {
    width: 100%;
  }

  .billing-toggle {
    display: grid;
  }

  .status-card {
    position: static;
    min-width: 0;
    margin: 12px;
  }

  .panel-topbar,
  .network-selector,
  .order-layout,
  .usage-strip,
  .panel-table-card,
  .support-note-card {
    margin-inline: 16px;
  }

  .panel-topbar {
    padding: 18px;
  }

  .panel-section-head,
  .summary-head {
    align-items: stretch;
    flex-direction: column;
  }

  .summary-head input {
    width: 100%;
  }

  .summary-info div:nth-child(odd) {
    border-right: 0;
  }

  .customer-dashboard {
    display: block;
  }

  .dashboard-sidebar,
  .dashboard-workspace {
    padding: 20px;
  }

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

  .sidebar-actions {
    grid-template-columns: 1fr;
  }

  .summary-card {
    min-height: auto;
  }

  .shop-details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .shop-details dd {
    text-align: left;
  }

  .timeline div::before {
    display: none;
  }

  .price-card {
    min-height: auto;
  }

  .checkout-summary {
    grid-template-columns: 1fr;
  }

  .checkout-cycle {
    grid-template-columns: 1fr;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
