:root {
  --vv-bg: #f4f8fc;
  --vv-bg-soft: #edf4fb;
  --vv-surface: rgba(255, 255, 255, 0.88);
  --vv-surface-strong: #ffffff;
  --vv-border: rgba(27, 77, 145, 0.12);
  --vv-border-strong: rgba(27, 77, 145, 0.2);
  --vv-text: #1f3556;
  --vv-text-soft: #69809d;
  --vv-text-muted: #8ba0bc;
  --vv-primary: #2a74e8;
  --vv-primary-deep: #1b57c4;
  --vv-primary-soft: #eff5ff;
  --vv-accent: #86b9ff;
  --vv-success: #28a06a;
  --vv-warning: #d9912c;
  --vv-danger: #d65454;
  --vv-shadow: 0 24px 60px rgba(43, 84, 145, 0.12);
  --vv-shadow-soft: 0 14px 36px rgba(43, 84, 145, 0.08);
  --vv-radius-xl: 28px;
  --vv-radius-lg: 22px;
  --vv-radius-md: 18px;
  --vv-max-width: 1180px;
  --vv-fs-xs: 12px;
  --vv-fs-sm: 13px;
  --vv-fs-base: 14px;
  --vv-fs-md: 15px;
  --vv-fs-lg: 16px;
  --vv-fs-xl: 18px;
  --vv-fs-title: 20px;
  --vv-fs-display: 28px;
  --vv-lh-tight: 1.2;
  --vv-lh-base: 1.72;
  --vv-lh-loose: 1.82;
}

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

html {
  scroll-behavior: smooth;
}

body.vvcloud-spa-body {
  margin: 0;
  min-height: 100vh;
  color: var(--vv-text);
  background:
    radial-gradient(circle at top left, rgba(139, 196, 255, 0.34), transparent 28%),
    radial-gradient(circle at right 14%, rgba(255, 234, 192, 0.32), transparent 22%),
    linear-gradient(180deg, #f8fbfe 0%, #f1f6fc 50%, #ecf2f9 100%);
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: var(--vv-fs-base);
}

body.vvcloud-spa-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(104, 140, 194, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 140, 194, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 82%);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.vv-app {
  position: relative;
  min-height: 100vh;
}

.vv-shell {
  width: min(calc(100% - 32px), var(--vv-max-width));
  margin: 0 auto;
}

.vv-topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
}

.vv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--vv-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--vv-shadow-soft);
  backdrop-filter: blur(16px);
}

.vv-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.vv-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: var(--vv-primary-deep);
  background: linear-gradient(135deg, rgba(42, 116, 232, 0.14), rgba(134, 185, 255, 0.28));
  font-size: var(--vv-fs-xl);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vv-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.vv-brand-name {
  font-size: var(--vv-fs-xl);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vv-brand-desc {
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vv-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.vv-nav-link {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-base);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.vv-nav-link:hover,
.vv-nav-link.is-active {
  color: var(--vv-text);
  background: rgba(42, 116, 232, 0.08);
}

.vv-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vv-mobile-menu-toggle,
.vv-mobile-menu-panel,
.vv-mobile-quick-nav {
  display: none;
}

.vv-mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--vv-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.vv-mobile-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--vv-text);
}

.vv-mobile-menu-toggle span + span {
  margin-top: 4px;
}

.vv-mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-base);
  font-weight: 750;
  background: rgba(255, 255, 255, 0.62);
}

.vv-mobile-menu-link.is-active {
  color: var(--vv-primary-deep);
  background: rgba(42, 116, 232, 0.1);
}

.vv-mobile-menu-button {
  width: 100%;
  border: 0;
  color: var(--vv-danger);
  text-align: left;
}

.vv-mobile-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-sm);
  font-weight: 760;
  background: rgba(255, 255, 255, 0.58);
}

.vv-mobile-quick-link.is-active {
  color: var(--vv-primary-deep);
  background: rgba(42, 116, 232, 0.1);
}

.vv-mobile-quick-link.is-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--vv-primary), #5aa1ff);
  box-shadow: 0 8px 18px rgba(42, 116, 232, 0.18);
}

.vv-button,
.vv-button-secondary,
.vv-button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: var(--vv-fs-base);
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.vv-button {
  color: #fff;
  background: linear-gradient(135deg, var(--vv-primary), #5aa1ff);
  box-shadow: 0 14px 30px rgba(42, 116, 232, 0.24);
}

.vv-button:hover,
.vv-button-secondary:hover,
.vv-button-ghost:hover {
  transform: translateY(-1px);
}

.vv-button-secondary {
  color: var(--vv-primary-deep);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(42, 116, 232, 0.12);
}

.vv-button-hot {
  color: #8a5710;
  background: linear-gradient(135deg, #fff3d6, #ffd88d);
  border-color: rgba(217, 145, 44, 0.24);
  box-shadow: 0 12px 24px rgba(217, 145, 44, 0.16);
}

.vv-button-hot:hover {
  background: linear-gradient(135deg, #fff0c8, #ffd271);
  box-shadow: 0 14px 28px rgba(217, 145, 44, 0.2);
}

.vv-button-ghost {
  color: var(--vv-text);
  background: transparent;
  border-color: var(--vv-border);
}

.vv-page {
  padding: 26px 0 40px;
}

.vv-contact-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 34;
  width: min(calc(100vw - 28px), 318px);
}

.vv-contact-float-card {
  display: grid;
  gap: 14px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(42, 116, 232, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.92)),
    radial-gradient(circle at top right, rgba(134, 185, 255, 0.18), transparent 42%);
  box-shadow: 0 22px 44px rgba(39, 82, 150, 0.16);
  backdrop-filter: blur(18px);
}

.vv-contact-float-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vv-contact-float-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--vv-primary-deep);
  font-size: var(--vv-fs-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(42, 116, 232, 0.1);
}

.vv-contact-float-title {
  margin: 10px 0 0;
  font-size: var(--vv-fs-xl);
  line-height: 1.3;
}

.vv-contact-float-copy {
  margin: 0;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-sm);
  line-height: 1.72;
}

.vv-contact-float-close,
.vv-contact-float-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(42, 116, 232, 0.12);
  color: var(--vv-text);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(39, 82, 150, 0.14);
  backdrop-filter: blur(14px);
}

.vv-contact-float-close {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 12px;
  font-size: 22px;
  line-height: 1;
}

.vv-contact-float-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vv-contact-float-actions .vv-button,
.vv-contact-float-actions .vv-button-secondary,
.vv-contact-float-actions .vv-button-ghost {
  flex: 1 1 0;
  min-width: 0;
  min-height: 36px;
  padding: 0 12px;
  font-size: var(--vv-fs-sm);
}

.vv-contact-float-collapsed {
  width: auto;
}

.vv-contact-float-toggle {
  min-height: 62px;
  padding: 0 18px 0 16px;
  border-radius: 20px;
  font-size: var(--vv-fs-base);
  font-weight: 800;
  text-align: left;
}

.vv-contact-float-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  position: relative;
  background: rgba(42, 116, 232, 0.12);
}

.vv-contact-float-toggle-icon::before,
.vv-contact-float-toggle-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.vv-contact-float-toggle-icon::before {
  width: 10px;
  height: 10px;
  background: var(--vv-success);
  box-shadow: 0 0 0 5px rgba(40, 160, 106, 0.12);
}

.vv-contact-float-toggle-icon::after {
  inset: 5px;
  border: 1px solid rgba(40, 160, 106, 0.38);
  animation: vv-contact-pulse 1.8s ease-out infinite;
}

.vv-contact-float-toggle-copy {
  display: grid;
  gap: 2px;
}

.vv-contact-float-toggle-copy strong {
  line-height: 1.2;
}

.vv-contact-float-toggle-copy small {
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-xs);
  font-weight: 650;
  line-height: 1.35;
}

.vv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.vv-card {
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius-xl);
  background: var(--vv-surface);
  box-shadow: var(--vv-shadow);
  backdrop-filter: blur(18px);
}

.vv-hero-copy,
.vv-hero-side {
  padding: 34px;
}

.vv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--vv-primary-soft);
  color: var(--vv-primary-deep);
  font-size: var(--vv-fs-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.vv-heading {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.vv-home-hero-title {
  font-size: var(--vv-fs-display);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.vv-subheading {
  margin: 18px 0 0;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-lg);
  line-height: var(--vv-lh-loose);
}

.vv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.vv-hero-route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.vv-hero-route-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: 999px;
  color: var(--vv-text);
  background: rgba(255, 255, 255, 0.64);
  font-size: var(--vv-fs-xs);
  font-weight: 820;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(43, 84, 145, 0.06);
}

.vv-hero-route-tags img {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  object-fit: contain;
}

.vv-route-tag-google {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.14), rgba(52, 168, 83, 0.1), rgba(251, 188, 5, 0.12));
}

.vv-route-tag-youtube {
  color: #c00;
  background: rgba(255, 0, 0, 0.08);
}

.vv-route-tag-netflix {
  color: #b20710;
  background: rgba(229, 9, 20, 0.08);
}

.vv-route-tag-chatgpt {
  color: #087563;
  background: rgba(16, 163, 127, 0.1);
}

.vv-route-tag-claude {
  color: #9b5f2e;
  background: rgba(217, 145, 44, 0.12);
}

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

.vv-metric {
  padding: 16px 18px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: var(--vv-radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.92));
}

.vv-metric-label {
  display: block;
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-xs);
  font-weight: 700;
}

.vv-metric-value {
  display: block;
  margin-top: 7px;
  font-size: var(--vv-fs-lg);
  line-height: var(--vv-lh-tight);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.vv-side-panel {
  display: grid;
  gap: 14px;
  height: 100%;
}

.vv-side-block {
  padding: 22px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: var(--vv-radius-lg);
  background: rgba(255, 255, 255, 0.76);
}

.vv-side-title {
  margin: 0;
  font-size: var(--vv-fs-xl);
}

.vv-side-copy {
  margin: 10px 0 0;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-base);
  line-height: var(--vv-lh-base);
}

.vv-side-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.vv-side-list li {
  position: relative;
  padding: 11px 14px 11px 22px;
  color: var(--vv-text);
  font-size: var(--vv-fs-base);
  line-height: var(--vv-lh-base);
  border-radius: 16px;
  background: rgba(42, 116, 232, 0.05);
}

.vv-side-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--vv-primary);
  box-shadow: 0 0 0 4px rgba(42, 116, 232, 0.1);
}

.vv-section {
  margin-top: 22px;
  padding: 30px;
}

.vv-page > .vv-card.vv-section:first-of-type,
.vv-user-center-shell > .vv-card.vv-section:first-of-type {
  margin-top: 0;
}

.vv-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.vv-section-title {
  margin: 0;
  font-size: var(--vv-fs-display);
  letter-spacing: -0.03em;
}

.vv-section-head > div > .vv-eyebrow + .vv-section-title {
  margin-top: 18px;
}

.vv-section-desc {
  margin: 8px 0 0;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-md);
  line-height: var(--vv-lh-base);
}

.vv-feature-grid,
.vv-plan-grid,
.vv-dashboard-grid,
.vv-summary-grid,
.vv-support-grid {
  display: grid;
  gap: 16px;
}

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

.vv-feature-card,
.vv-plan-card,
.vv-dashboard-panel,
.vv-summary-card,
.vv-support-card {
  padding: 22px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: var(--vv-radius-lg);
  background: rgba(255, 255, 255, 0.78);
}

.vv-feature-card h3,
.vv-plan-name,
.vv-panel-title,
.vv-summary-label,
.vv-support-card h3 {
  margin: 0;
  font-size: var(--vv-fs-xl);
  line-height: 1.28;
}

.vv-feature-card p,
.vv-plan-copy,
.vv-panel-copy,
.vv-summary-copy,
.vv-support-card p {
  margin: 12px 0 0;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-base);
  line-height: var(--vv-lh-base);
}

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

.vv-plan-card {
  display: flex;
  flex-direction: column;
}

.vv-plan-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vv-plan-price-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 28px;
  padding: 2px 10px;
  border-radius: 999px;
  color: #8a5710;
  background: linear-gradient(135deg, #fff3d6, #ffd88d);
  box-shadow: 0 10px 20px rgba(217, 145, 44, 0.14);
  font-size: var(--vv-fs-xs);
  font-weight: 800;
  white-space: nowrap;
}

.vv-plan-price-badge strong {
  color: #6f3c00;
  font-size: var(--vv-fs-lg);
  line-height: 1;
  letter-spacing: -0.03em;
}

.vv-plan-facts {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.vv-plan-fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--vv-text-soft);
  background: rgba(42, 116, 232, 0.045);
  font-size: var(--vv-fs-sm);
}

.vv-plan-fact strong {
  color: var(--vv-text);
  font-size: var(--vv-fs-base);
}

.vv-plan-price-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.vv-plan-price-option {
  display: grid;
  gap: 5px;
  padding: 11px 10px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.vv-plan-price-option span {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-xs);
  font-weight: 700;
}

.vv-plan-price-option strong {
  color: var(--vv-text);
  font-size: var(--vv-fs-base);
  line-height: var(--vv-lh-tight);
  white-space: nowrap;
}

.vv-plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vv-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(42, 116, 232, 0.08);
  color: var(--vv-primary-deep);
  font-size: var(--vv-fs-xs);
  font-weight: 700;
}

.vv-plan-price {
  margin-top: 18px;
  font-size: var(--vv-fs-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.vv-plan-price span {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-sm);
  font-weight: 600;
  letter-spacing: normal;
}

.vv-plan-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.vv-purchase-grid-single .vv-plan-footer {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.vv-purchase-grid-single .vv-plan-footnote {
  margin-right: auto;
}

.vv-plan-footnote {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-xs);
}

.vv-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 22px;
  align-items: start;
}

.vv-auth-brand,
.vv-auth-card {
  padding: 30px;
}

.vv-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vv-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-sm);
  font-weight: 700;
  background: rgba(42, 116, 232, 0.06);
  transition: color 0.18s ease, background 0.18s ease;
}

.vv-auth-link:hover {
  color: var(--vv-text);
  background: rgba(42, 116, 232, 0.12);
}

.vv-form {
  display: grid;
  gap: 14px;
}

.vv-field {
  display: grid;
  gap: 8px;
}

.vv-field-label {
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-sm);
  font-weight: 700;
}

.vv-input,
.vv-textarea,
.vv-select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(42, 116, 232, 0.12);
  border-radius: 16px;
  color: var(--vv-text);
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.vv-textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.vv-select {
  appearance: none;
  padding-right: 38px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--vv-text-soft) 50%), linear-gradient(135deg, var(--vv-text-soft) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.vv-input:focus,
.vv-textarea:focus,
.vv-select:focus {
  outline: none;
  border-color: rgba(42, 116, 232, 0.42);
  box-shadow: 0 0 0 4px rgba(42, 116, 232, 0.12);
}

.vv-inline-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.vv-email-suffix-field {
  grid-template-columns: minmax(0, 1fr) minmax(151px, 0.53fr);
}

.vv-help {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-xs);
  line-height: var(--vv-lh-base);
}

.vv-error {
  color: var(--vv-danger);
  font-size: var(--vv-fs-xs);
  line-height: 1.6;
}

.vv-notice {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: var(--vv-fs-sm);
  line-height: var(--vv-lh-base);
}

.vv-notice-wrap {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.vv-notice-floating {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: min(430px, calc(100vw - 36px));
  max-width: min(500px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(42, 116, 232, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(31, 59, 96, 0.18);
  backdrop-filter: blur(14px);
  animation: vv-notice-in 0.2s ease, vv-notice-out 0.42s ease calc(var(--vv-notice-duration, 3200ms) - 420ms) forwards;
}

.vv-notice-floating .vv-notice-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(42, 116, 232, 0.12);
  box-shadow: inset 0 0 0 1px rgba(42, 116, 232, 0.16);
}

.vv-notice-floating .vv-notice-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: var(--vv-primary);
}

.vv-notice-floating .vv-notice-message {
  color: var(--vv-text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.vv-notice.info {
  color: var(--vv-primary-deep);
  background: rgba(42, 116, 232, 0.18);
}

.vv-notice.success {
  color: #126747;
  background: rgba(40, 160, 106, 0.22);
}

.vv-notice.error {
  color: #933939;
  background: rgba(214, 84, 84, 0.22);
}

.vv-notice-floating.info,
.vv-notice-floating.success,
.vv-notice-floating.error {
  color: var(--vv-text);
  background: rgba(255, 255, 255, 0.96);
}

.vv-notice-floating.info .vv-notice-icon {
  background: rgba(42, 116, 232, 0.12);
  box-shadow: inset 0 0 0 1px rgba(42, 116, 232, 0.16);
}

.vv-notice-floating.success .vv-notice-icon {
  background: rgba(40, 160, 106, 0.13);
  box-shadow: inset 0 0 0 1px rgba(40, 160, 106, 0.18);
}

.vv-notice-floating.success .vv-notice-icon::after {
  background: #28a06a;
}

.vv-notice-floating.error .vv-notice-icon {
  background: rgba(214, 84, 84, 0.13);
  box-shadow: inset 0 0 0 1px rgba(214, 84, 84, 0.18);
}

.vv-notice-floating.error .vv-notice-icon::after {
  background: var(--vv-danger);
}

.vv-auth-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.vv-auth-meta {
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-sm);
}

.vv-auth-note {
  margin-top: 16px;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-sm);
  line-height: var(--vv-lh-base);
}

.vv-auth-hero-title {
  font-size: var(--vv-fs-display);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.vv-dashboard-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.vv-dashboard-status-card,
.vv-dashboard-hero-card {
  padding: 32px;
}

.vv-dashboard-status-card {
  padding: 28px;
}

.vv-dashboard-hero-card {
  padding: 28px 30px 24px;
}

.vv-dashboard-hero-card,
.vv-dashboard-status-card {
  box-shadow: var(--vv-shadow);
  align-self: stretch;
}

.vv-dashboard-hero-title {
  margin-top: 16px;
  font-size: var(--vv-fs-display);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.vv-dashboard-hero-copy {
  max-width: 820px;
  margin-top: 14px;
  font-size: var(--vv-fs-lg);
  line-height: var(--vv-lh-loose);
}

.vv-dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.vv-dashboard-tag {
  min-height: 46px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: var(--vv-fs-base);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(42, 116, 232, 0.1);
}

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

.vv-dashboard-feature-grid .vv-feature-card {
  min-height: 0;
  padding: 18px 18px 16px;
}

.vv-dashboard-feature-grid .vv-feature-card p {
  margin-top: 10px;
  font-size: var(--vv-fs-sm);
  line-height: var(--vv-lh-base);
}

.vv-dashboard-status-label {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-sm);
  font-weight: 800;
}

.vv-dashboard-status-title {
  margin: 10px 0 0;
  font-size: var(--vv-fs-title);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.vv-dashboard-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.vv-dashboard-state-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 0;
  padding: 12px 14px;
  border: 1px solid rgba(42, 116, 232, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.vv-dashboard-state-label {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-xs);
  font-weight: 800;
}

.vv-dashboard-state-value {
  margin-top: 0;
  font-size: var(--vv-fs-base);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: right;
}

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

.vv-dashboard-action-grid .vv-button,
.vv-dashboard-action-grid .vv-button-secondary,
.vv-dashboard-action-grid .vv-button-ghost {
  width: 100%;
  min-height: 48px;
  font-size: var(--vv-fs-base);
}

.vv-button-span-2 {
  grid-column: span 2;
}

.vv-dashboard-status-note {
  margin: 16px 0 0;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-base);
  line-height: var(--vv-lh-base);
}

.vv-dashboard-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  margin-top: 22px;
}

.vv-traffic-log-card {
  grid-column: 1 / -1;
}

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

.vv-panel-title {
  font-size: 20px;
}

.vv-panel-copy {
  margin-top: 6px;
}

.vv-subscribe-box {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.vv-code {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px dashed rgba(42, 116, 232, 0.2);
  border-radius: 16px;
  color: var(--vv-text);
  background: rgba(42, 116, 232, 0.04);
  word-break: break-all;
  font-size: 13px;
  line-height: 1.8;
}

.vv-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.vv-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vv-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(42, 116, 232, 0.04);
}

.vv-list-key {
  color: var(--vv-text-soft);
  font-size: 13px;
}

.vv-list-value {
  color: var(--vv-text);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.vv-traffic-log-list {
  display: grid;
  gap: 8px;
}

.vv-traffic-log-list.full {
  margin-top: 18px;
}

.vv-traffic-log-pager {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
}

.vv-traffic-log-pager .vv-button-ghost {
  min-height: 36px;
  padding: 0 14px;
  font-size: var(--vv-fs-sm);
}

.vv-traffic-log-pager .vv-button-ghost:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.vv-traffic-log-month {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(42, 116, 232, 0.06);
}

.vv-traffic-log-month strong {
  font-size: var(--vv-fs-md);
}

.vv-traffic-log-month span {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-xs);
  font-weight: 700;
}

.vv-traffic-log-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1.4fr);
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: 16px;
  background: rgba(42, 116, 232, 0.035);
}

.vv-traffic-log-row strong {
  display: block;
  color: var(--vv-text);
  font-size: var(--vv-fs-sm);
}

.vv-traffic-log-row span {
  display: inline-flex;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-xs);
  line-height: 1.5;
}

.vv-traffic-log-values {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.vv-traffic-log-values strong {
  font-size: var(--vv-fs-xs);
}

.vv-traffic-log-dialog {
  width: min(900px, calc(100vw - 28px));
}

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

.vv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0 40px;
  color: var(--vv-text-soft);
  font-size: 13px;
}

.vv-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vv-footer-links a:hover {
  color: var(--vv-text);
}

.vv-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.vv-status-pill.success {
  color: #126747;
  background: rgba(40, 160, 106, 0.12);
}

.vv-status-pill.warning {
  color: #865511;
  background: rgba(217, 145, 44, 0.15);
}

.vv-status-pill.error {
  color: #933939;
  background: rgba(214, 84, 84, 0.14);
}

.vv-status-pill.info {
  color: #2357a6;
  background: rgba(42, 116, 232, 0.12);
}

.vv-status-pill.muted {
  color: #667a95;
  background: rgba(105, 128, 157, 0.14);
}

.vv-status-pill.promo {
  position: relative;
  overflow: hidden;
  color: #8a3d00;
  border: 1px solid rgba(244, 145, 50, 0.28);
  background: linear-gradient(135deg, rgba(255, 238, 196, 0.96), rgba(255, 190, 88, 0.88));
  box-shadow: 0 10px 22px rgba(221, 133, 36, 0.18);
}

.vv-status-pill.promo::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -35%;
  width: 34px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(18deg);
  animation: vv-promo-shine 2.8s ease-in-out infinite;
}

.vv-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--vv-border);
  border-radius: 999px;
  color: var(--vv-text-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.vv-pill:hover,
.vv-pill.is-active {
  color: var(--vv-primary-deep);
  border-color: rgba(42, 116, 232, 0.2);
  background: rgba(42, 116, 232, 0.08);
}

.vv-user-center-shell {
  display: grid;
  gap: 22px;
}

.vv-user-center-head {
  padding: 26px 28px;
}

.vv-user-center-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vv-purchase-layout,
.vv-order-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  gap: 22px;
  align-items: start;
}

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

.vv-purchase-main,
.vv-purchase-side,
.vv-order-detail-main,
.vv-order-detail-side {
  padding: 28px;
}

.vv-purchase-side {
  position: sticky;
  top: 112px;
  align-self: start;
}

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

.vv-plan-selection-stage .vv-purchase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.vv-order-detail-grid-single {
  grid-template-columns: 1fr;
}

.vv-purchase-grid-single {
  grid-template-columns: 1fr;
}

.vv-checkout-back-button {
  min-width: 132px;
  white-space: nowrap;
}

.vv-checkout-top-actions {
  justify-content: flex-end;
}

.vv-purchase-plan-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--vv-radius-lg);
  background:
    radial-gradient(circle at 18% 0%, rgba(42, 116, 232, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(31, 56, 90, 0.08);
  animation: vv-card-rise 0.42s ease both;
  animation-delay: var(--vv-card-delay, 0ms);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.vv-purchase-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 4px;
  background: linear-gradient(90deg, rgba(42, 116, 232, 0.72), rgba(75, 180, 151, 0.56));
  opacity: 0.42;
}

.vv-purchase-plan-card:hover {
  border-color: rgba(42, 116, 232, 0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(42, 116, 232, 0.11), transparent 32%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(31, 56, 90, 0.13);
  transform: translateY(-6px);
}

.vv-purchase-plan-card.is-selected {
  border-color: rgba(42, 116, 232, 0.28);
  box-shadow: 0 20px 42px rgba(42, 116, 232, 0.14);
  transform: translateY(-1px);
}

.vv-purchase-plan-head,
.vv-order-card-head,
.vv-payment-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.vv-plan-selection-stage .vv-purchase-plan-card {
  padding: 18px;
}

.vv-plan-selection-stage .vv-purchase-plan-head {
  gap: 10px;
}

.vv-plan-selection-stage .vv-plan-name {
  font-size: var(--vv-fs-lg);
}

.vv-plan-selection-stage .vv-status-pill {
  padding: 6px 9px;
  font-size: 11px;
}

.vv-purchase-facts,
.vv-order-meta,
.vv-filter-row,
.vv-purchase-periods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vv-purchase-facts,
.vv-purchase-periods,
.vv-order-meta {
  margin-top: 16px;
}

.vv-plan-selection-stage .vv-plan-meta {
  gap: 6px;
  margin-top: 10px;
}

.vv-plan-selection-stage .vv-tag {
  padding: 5px 9px;
}

.vv-plan-content-block {
  margin-top: 16px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(42, 116, 232, 0.04);
}

.vv-plan-rich-content {
  color: var(--vv-text);
  font-size: 13px;
  line-height: 1.8;
}

.vv-plan-rich-content > :first-child {
  margin-top: 0;
}

.vv-plan-rich-content > :last-child {
  margin-bottom: 0;
}

.vv-plan-rich-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 14px auto;
  border-radius: 14px;
}

.vv-plan-rich-content a {
  color: var(--vv-primary-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vv-plan-selection-stage .vv-plan-content-block {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
}

.vv-plan-selection-stage .vv-plan-rich-content {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vv-text-soft);
  font-size: 12.5px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.vv-plan-selection-stage .vv-purchase-periods {
  gap: 7px;
  margin-top: 12px;
}

.vv-plan-selection-stage .vv-pill {
  min-height: 34px;
  padding: 0 11px;
  font-size: 12px;
}

.vv-plan-selection-stage .vv-plan-footer {
  gap: 10px;
  padding-top: 14px;
}

.vv-plan-selection-stage .vv-plan-footnote {
  max-width: 112px;
}

.vv-inline-fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--vv-text-soft);
  background: rgba(42, 116, 232, 0.04);
  font-size: 13px;
}

.vv-inline-fact strong {
  color: var(--vv-text);
}

.vv-empty-inline {
  color: var(--vv-text-muted);
  font-size: 13px;
}

.vv-purchase-summary {
  display: grid;
  gap: 10px;
}

.vv-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(42, 116, 232, 0.04);
  color: var(--vv-text-soft);
  font-size: 13px;
}

.vv-summary-line strong {
  color: var(--vv-text);
  font-size: 14px;
}

.vv-purchase-form,
.vv-purchase-tips,
.vv-order-payment-section {
  margin-top: 20px;
}

.vv-purchase-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.vv-inline-notice {
  margin-top: 12px;
}

.vv-purchase-side-note {
  margin: 16px 0 0;
  color: var(--vv-text-soft);
  font-size: 13px;
  line-height: 1.75;
}

.vv-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(18, 37, 66, 0.34);
  backdrop-filter: blur(8px);
}

.vv-dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(42, 116, 232, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(17, 38, 69, 0.2);
}

.vv-dialog-close {
  flex: 0 0 auto;
}

.vv-email-confirm-dialog {
  width: min(560px, calc(100vw - 28px));
}

.vv-email-confirm-body {
  display: grid;
  gap: 12px;
}

.vv-email-confirm-label {
  color: var(--vv-text-muted);
  font-size: var(--vv-fs-xs);
  font-weight: 800;
}

.vv-email-confirm-address {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(42, 116, 232, 0.1);
  border-radius: 16px;
  color: var(--vv-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: var(--vv-fs-base);
  line-height: 1.5;
  word-break: break-all;
  background: rgba(42, 116, 232, 0.045);
}

.vv-email-confirm-suggestion {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px dashed rgba(40, 160, 106, 0.3);
  border-radius: 18px;
  background: rgba(40, 160, 106, 0.05);
}

.vv-email-confirm-suggestion .vv-email-confirm-address {
  padding: 0;
  border: 0;
  background: transparent;
}

.vv-email-confirm-suggestion p,
.vv-email-confirm-tip {
  margin: 0;
  color: var(--vv-text-soft);
  font-size: var(--vv-fs-sm);
  line-height: 1.65;
}

.vv-email-confirm-actions {
  margin-top: 18px;
}

.vv-quick-subscribe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.vv-quick-subscribe-link {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(42, 116, 232, 0.1);
  border-radius: 18px;
  color: var(--vv-text);
  background: rgba(247, 250, 255, 0.9);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.vv-quick-subscribe-link:hover {
  transform: translateY(-1px);
  border-color: rgba(42, 116, 232, 0.24);
  box-shadow: 0 14px 30px rgba(42, 116, 232, 0.1);
}

.vv-quick-subscribe-link strong {
  font-size: 15px;
}

.vv-quick-subscribe-link span {
  color: var(--vv-text-soft);
  font-size: 13px;
}

.vv-coupon-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.vv-coupon-meta-copy {
  color: var(--vv-text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.vv-order-list {
  display: grid;
  gap: 12px;
}

.vv-filter-row + .vv-order-list,
.vv-filter-row + .vv-empty {
  margin-top: 22px;
}

.vv-order-card {
  padding: 16px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: var(--vv-radius-lg);
  background: rgba(255, 255, 255, 0.68);
}

.vv-order-detail-card {
  padding: 22px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: var(--vv-radius-lg);
  background: rgba(255, 255, 255, 0.68);
}

.vv-order-title {
  margin: 0;
  font-size: var(--vv-fs-lg);
  font-weight: 800;
}

.vv-order-copy,
.vv-payment-copy {
  margin: 5px 0 0;
  color: var(--vv-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.vv-order-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.vv-order-card .vv-order-meta {
  flex: 1 1 auto;
  gap: 8px;
  margin-top: 0;
}

.vv-order-card .vv-inline-fact {
  padding: 8px 10px;
}

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

.vv-order-card .vv-order-actions {
  flex: 0 0 auto;
  gap: 8px;
  margin-top: 0;
}

.vv-order-card .vv-order-actions .vv-button-secondary,
.vv-order-card .vv-order-actions .vv-button-ghost {
  min-height: 34px;
  padding: 0 12px;
  font-size: var(--vv-fs-sm);
}

.vv-order-banner {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--vv-radius-lg);
  border: 1px solid transparent;
}

.vv-order-banner strong {
  display: block;
  font-size: 18px;
}

.vv-order-banner p {
  margin: 0;
  color: inherit;
  line-height: 1.8;
  font-size: 14px;
}

.vv-order-banner-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.vv-order-banner.warning {
  color: #865511;
  border-color: rgba(217, 145, 44, 0.16);
  background: rgba(217, 145, 44, 0.1);
}

.vv-order-banner.info {
  color: #2357a6;
  border-color: rgba(42, 116, 232, 0.16);
  background: rgba(42, 116, 232, 0.08);
}

.vv-order-banner.success {
  color: #126747;
  border-color: rgba(40, 160, 106, 0.16);
  background: rgba(40, 160, 106, 0.1);
}

.vv-order-banner.muted {
  color: #667a95;
  border-color: rgba(105, 128, 157, 0.14);
  background: rgba(105, 128, 157, 0.08);
}

.vv-payment-grid {
  display: grid;
  gap: 14px;
}

.vv-payment-card {
  display: block;
  border: 1px solid rgba(42, 116, 232, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.vv-payment-card:hover {
  transform: translateY(-1px);
  border-color: rgba(42, 116, 232, 0.24);
  box-shadow: 0 16px 34px rgba(42, 116, 232, 0.1);
}

.vv-payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vv-payment-radio:checked + .vv-payment-card-body {
  border-color: rgba(42, 116, 232, 0.28);
  background: rgba(42, 116, 232, 0.06);
}

.vv-payment-card-body {
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 18px;
}

.vv-reset-subscribe-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 18px;
  background: rgba(255, 247, 237, 0.78);
}

.vv-reset-subscribe-block strong {
  display: block;
  color: #8a4b12;
  font-size: var(--vv-fs-sm);
  margin-bottom: 4px;
}

.vv-reset-subscribe-block p {
  margin: 0;
  color: #8a5a2b;
  font-size: var(--vv-fs-xs);
  line-height: var(--vv-lh-base);
}

.vv-popover-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(13, 31, 55, 0.08);
}

.vv-popover {
  position: fixed;
  z-index: 141;
  width: min(330px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(42, 116, 232, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(31, 59, 96, 0.18);
  backdrop-filter: blur(14px);
  animation: vv-popover-in 0.18s ease both;
}

.vv-popover-arrow {
  position: absolute;
  top: -7px;
  left: var(--vv-popover-arrow-left, 24px);
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(42, 116, 232, 0.14);
  border-top: 1px solid rgba(42, 116, 232, 0.14);
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
}

.vv-popover-above .vv-popover-arrow {
  top: auto;
  bottom: -7px;
  transform: rotate(225deg);
}

.vv-order-finished {
  padding: 24px;
  border-radius: var(--vv-radius-lg);
  background: rgba(42, 116, 232, 0.04);
}

.vv-dashboard-menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 22px;
  align-items: start;
}

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

.vv-dashboard-subpanel {
  padding: 26px;
}

.vv-ticket-list,
.vv-doc-link-list {
  display: grid;
  gap: 12px;
}

.vv-ticket-card,
.vv-invite-code-card {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.vv-ticket-card:hover,
.vv-invite-code-card:hover,
.vv-doc-link:hover {
  transform: translateY(-1px);
  border-color: rgba(42, 116, 232, 0.22);
}

.vv-ticket-card.is-active,
.vv-doc-link.is-active {
  border-color: rgba(42, 116, 232, 0.26);
  background: rgba(42, 116, 232, 0.08);
}

.vv-ticket-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.vv-ticket-card p,
.vv-invite-code-card p {
  margin: 0;
  color: var(--vv-text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.vv-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vv-ticket-thread {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.vv-ticket-message {
  display: grid;
  gap: 8px;
  max-width: min(92%, 720px);
  padding: 16px 18px;
  border-radius: 22px;
}

.vv-ticket-message.is-me {
  margin-left: auto;
  background: rgba(42, 116, 232, 0.08);
  border: 1px solid rgba(42, 116, 232, 0.14);
}

.vv-ticket-message.is-support {
  margin-right: auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 116, 232, 0.08);
}

.vv-ticket-message-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--vv-text-soft);
  font-size: 12px;
}

.vv-ticket-message-body {
  color: var(--vv-text);
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

.vv-doc-category + .vv-doc-category {
  margin-top: 22px;
}

.vv-doc-category-title {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--vv-text-soft);
}

.vv-doc-link {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--vv-text);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.vv-doc-article {
  color: var(--vv-text);
  font-size: 14px;
  line-height: 1.9;
  word-break: break-word;
}

.vv-doc-article h1,
.vv-doc-article h2,
.vv-doc-article h3,
.vv-doc-article h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.vv-doc-article > :first-child {
  margin-top: 0;
}

.vv-doc-article > :last-child {
  margin-bottom: 0;
}

.vv-doc-article p,
.vv-doc-article ul,
.vv-doc-article ol,
.vv-doc-article pre,
.vv-doc-article blockquote {
  margin-top: 0;
  margin-bottom: 16px;
}

.vv-doc-article ul,
.vv-doc-article ol {
  padding-left: 20px;
}

.vv-doc-article pre,
.vv-doc-article code {
  font-family: "SFMono-Regular", "JetBrains Mono", Consolas, monospace;
}

.vv-doc-article pre {
  overflow: auto;
  padding: 16px;
  border-radius: 16px;
  background: rgba(31, 53, 86, 0.06);
}

.vv-doc-article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}

.vv-doc-article th,
.vv-doc-article td {
  padding: 10px 12px;
  border: 1px solid rgba(42, 116, 232, 0.08);
  text-align: left;
}

.vv-doc-article a {
  color: var(--vv-primary-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vv-doc-article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 16px;
}

.vv-doc-article blockquote {
  padding: 14px 16px;
  border-left: 3px solid rgba(42, 116, 232, 0.24);
  border-radius: 0 16px 16px 0;
  background: rgba(42, 116, 232, 0.04);
}

.vv-doc-article .vv-btn-primary,
.vv-doc-article .vv-inline-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(42, 116, 232, 0.12);
  color: var(--vv-primary-deep);
  background: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.vv-doc-article .vv-inline-copy {
  cursor: pointer;
}

.vv-doc-article .v2board-no-access {
  padding: 16px 18px;
  border-radius: 16px;
  color: #8a5710;
  background: rgba(255, 216, 141, 0.26);
}

.vv-doc-sidebar-panel {
  position: sticky;
  top: 112px;
  align-self: start;
  max-height: calc(100vh - 136px);
  overflow: auto;
}

.vv-table-shell {
  border: 1px solid rgba(42, 116, 232, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.vv-table-scroll {
  overflow-x: auto;
}

.vv-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.vv-table th,
.vv-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(42, 116, 232, 0.08);
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
}

.vv-table thead th {
  color: var(--vv-text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

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

.vv-table-compact td {
  vertical-align: middle;
}

.vv-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vv-invite-stats-table .vv-table {
  min-width: 0;
}

.vv-invite-code-table .vv-table {
  min-width: 0;
  table-layout: fixed;
}

.vv-invite-code-table th:nth-child(1),
.vv-invite-code-table td:nth-child(1) {
  width: 22%;
}

.vv-invite-code-table th:nth-child(2),
.vv-invite-code-table td:nth-child(2) {
  width: 12%;
}

.vv-invite-code-table th:nth-child(3),
.vv-invite-code-table td:nth-child(3) {
  width: 28%;
}

.vv-invite-code-table th:nth-child(4),
.vv-invite-code-table td:nth-child(4) {
  width: 38%;
}

.vv-invite-code-table td strong {
  word-break: break-word;
}

.vv-invite-code-table .vv-table-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.vv-invite-code-table .vv-table-actions .vv-button-secondary,
.vv-invite-code-table .vv-table-actions .vv-button-ghost {
  width: 100%;
  white-space: normal;
}

.vv-invite-stats-table th,
.vv-invite-stats-table td {
  padding-top: 12px;
  padding-bottom: 12px;
}

.vv-invite-stats-table td:last-child {
  color: var(--vv-text-soft);
}

.vv-invite-stat-value {
  display: inline-flex;
  align-items: center;
  min-width: 84px;
  color: var(--vv-text-main);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.vv-invite-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.vv-invite-action-card {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(42, 116, 232, 0.055), rgba(75, 180, 151, 0.04)),
    rgba(255, 255, 255, 0.78);
}

.vv-invite-action-card .vv-panel-copy strong {
  color: var(--vv-text);
  font-weight: 850;
}

.vv-empty {
  padding: 24px;
  border-radius: var(--vv-radius-lg);
  color: var(--vv-text-soft);
  text-align: center;
  background: rgba(42, 116, 232, 0.04);
  font-size: 14px;
  line-height: 1.8;
}

.vv-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vv-text-soft);
  font-size: 14px;
}

.vv-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(42, 116, 232, 0.18);
  border-top-color: var(--vv-primary);
  border-radius: 999px;
  animation: vv-spin 0.8s linear infinite;
}

@keyframes vv-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes vv-card-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vv-promo-shine {
  0%,
  62% {
    transform: translateX(0) rotate(18deg);
  }

  100% {
    transform: translateX(170px) rotate(18deg);
  }
}

@keyframes vv-notice-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vv-notice-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }
}

@keyframes vv-popover-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vv-contact-pulse {
  0% {
    opacity: 0.72;
    transform: scale(0.72);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@media (max-width: 1100px) {
  .vv-hero,
  .vv-auth-layout,
  .vv-purchase-layout,
  .vv-order-detail-layout,
  .vv-dashboard-menu-layout,
  .vv-dashboard-grid,
  .vv-dashboard-hero-layout,
  .vv-dashboard-detail-grid {
    grid-template-columns: 1fr;
  }

  .vv-feature-grid,
  .vv-plan-grid,
  .vv-purchase-grid,
  .vv-order-detail-grid,
  .vv-support-grid,
  .vv-dashboard-feature-grid,
  .vv-quick-subscribe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vv-plan-selection-stage .vv-purchase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .vv-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
    border-radius: 28px;
  }

  .vv-section-head,
  .vv-auth-foot,
  .vv-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .vv-brand,
  .vv-topbar-actions,
  .vv-nav {
    justify-content: center;
  }

  .vv-brand {
    justify-content: flex-start;
  }

  .vv-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    font-size: var(--vv-fs-base);
  }

  .vv-brand-name {
    font-size: var(--vv-fs-lg);
  }

  .vv-brand-desc {
    display: none;
  }

  .vv-mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
  }

  .vv-mobile-quick-nav {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .vv-mobile-quick-nav::-webkit-scrollbar {
    display: none;
  }

  .vv-nav-primary,
  .vv-topbar-actions {
    display: none;
  }

  .vv-topbar-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 8px;
  }

  .vv-topbar-actions .vv-button,
  .vv-topbar-actions .vv-button-ghost {
    min-height: 34px;
    padding: 0 12px;
    font-size: var(--vv-fs-sm);
  }

  .vv-mobile-menu-panel {
    display: none;
    grid-column: 1 / -1;
    padding: 6px 0 0;
  }

  .vv-topbar.is-mobile-menu-open .vv-mobile-menu-panel {
    display: block;
  }

  .vv-mobile-menu-list {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--vv-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
  }

  .vv-auth-links {
    justify-content: center;
  }

  .vv-auth-layout {
    gap: 12px;
  }

  .vv-auth-brand {
    padding: 18px 20px;
  }

  .vv-auth-brand .vv-eyebrow,
  .vv-auth-brand .vv-metric-grid,
  .vv-auth-brand > .vv-section {
    display: none;
  }

  .vv-auth-brand .vv-auth-hero-title {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.18;
  }

  .vv-auth-brand .vv-subheading {
    margin-top: 10px;
    font-size: var(--vv-fs-base);
    line-height: 1.65;
  }

  .vv-dashboard-hero-card {
    padding: 20px 22px;
  }

  .vv-dashboard-hero-card > .vv-eyebrow,
  .vv-dashboard-hero-card > .vv-dashboard-feature-grid {
    display: none;
  }

  .vv-dashboard-hero-card .vv-dashboard-hero-title {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.18;
  }

  .vv-dashboard-hero-card .vv-dashboard-hero-copy {
    margin-top: 10px;
    font-size: var(--vv-fs-base);
    line-height: 1.65;
  }

  .vv-dashboard-hero-card .vv-hero-route-tags {
    margin-top: 14px;
  }

  .vv-hero-copy,
  .vv-hero-side,
  .vv-auth-card,
  .vv-purchase-main,
  .vv-purchase-side,
  .vv-order-detail-main,
  .vv-order-detail-side,
  .vv-dashboard-subpanel,
  .vv-section {
    padding: 24px;
  }

  .vv-doc-sidebar-panel {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .vv-purchase-side {
    position: static;
    top: auto;
  }

  .vv-purchase-layout-checkout {
    gap: 9px;
    margin-top: -16px;
  }

  .vv-purchase-layout-checkout .vv-purchase-main {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .vv-purchase-layout-checkout .vv-checkout-top-actions {
    margin: 0 0 5px;
    padding: 0;
    justify-content: flex-start;
  }

  .vv-purchase-layout-checkout .vv-selected-plan-detail {
    display: none;
  }

  .vv-metric-grid,
  .vv-feature-grid,
  .vv-plan-grid,
  .vv-purchase-grid,
  .vv-order-detail-grid,
  .vv-summary-grid,
  .vv-support-grid,
  .vv-invite-action-grid,
  .vv-dashboard-feature-grid,
  .vv-dashboard-status-grid,
  .vv-dashboard-action-grid {
    grid-template-columns: 1fr;
  }

  .vv-plan-selection-stage .vv-purchase-grid {
    grid-template-columns: 1fr;
  }

  .vv-dashboard-state-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 10px 11px;
    border-radius: 16px;
  }

  .vv-dashboard-state-value {
    text-align: left;
  }

  .vv-dashboard-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .vv-dashboard-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .vv-dashboard-action-grid .vv-button,
  .vv-dashboard-action-grid .vv-button-secondary,
  .vv-dashboard-action-grid .vv-button-ghost {
    min-height: 40px;
    padding: 0 10px;
    font-size: var(--vv-fs-sm);
  }

  .vv-account-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .vv-account-info-list .vv-list-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .vv-account-info-list .vv-list-item:first-child {
    grid-column: 1 / -1;
  }

  .vv-account-info-list .vv-list-value {
    width: 100%;
    text-align: left;
    word-break: break-word;
  }

  .vv-dashboard-status-card {
    padding: 22px;
  }

  .vv-traffic-log-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vv-traffic-log-values {
    justify-content: flex-start;
  }

  .vv-dialog {
    padding: 22px;
  }

  .vv-contact-float {
    right: 18px;
    bottom: 18px;
    width: min(calc(100vw - 24px), 304px);
  }

  .vv-contact-float-card {
    padding: 16px 16px 14px;
    border-radius: 22px;
  }

  .vv-purchase-coupon-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 7px;
  }

  .vv-purchase-coupon-row .vv-input {
    min-width: 0;
  }

  .vv-purchase-coupon-row .vv-button,
  .vv-purchase-coupon-row .vv-button-secondary {
    min-height: 42px;
    padding: 0 11px;
  }

  .vv-table {
    min-width: 560px;
  }
}

@media (max-width: 520px) {
  .vv-shell {
    width: min(calc(100% - 18px), var(--vv-max-width));
  }

  .vv-page {
    padding-top: 18px;
  }

  .vv-purchase-layout-checkout {
    margin-top: -11px;
  }

  .vv-topbar-wrap {
    padding-top: 10px;
  }

  .vv-heading {
    font-size: 34px;
  }

  .vv-home-hero-title,
  .vv-dashboard-hero-title {
    font-size: 26px;
  }

  .vv-contact-float {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: min(calc(100vw - 20px), 286px);
  }

  .vv-contact-float-card {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .vv-contact-float-title {
    margin-top: 8px;
    font-size: var(--vv-fs-lg);
  }

  .vv-contact-float-copy {
    font-size: var(--vv-fs-xs);
  }

  .vv-contact-float-close {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 20px;
  }

  .vv-contact-float-toggle {
    width: auto;
    min-height: 56px;
    padding: 0 14px;
    font-size: var(--vv-fs-sm);
  }

  .vv-notice-floating,
  .vv-quick-subscribe-grid {
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .vv-inline-field,
  .vv-plan-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .vv-email-suffix-field {
    grid-template-columns: minmax(0, 1fr) minmax(123px, 0.54fr);
  }

  .vv-invite-stats-table,
  .vv-invite-code-table,
  .vv-invite-detail-table,
  .vv-node-status-table {
    border: 0;
    background: transparent;
  }

  .vv-invite-stats-table .vv-table-scroll,
  .vv-invite-code-table .vv-table-scroll,
  .vv-invite-detail-table .vv-table-scroll,
  .vv-node-status-table .vv-table-scroll {
    overflow: visible;
  }

  .vv-invite-stats-table .vv-table,
  .vv-invite-code-table .vv-table,
  .vv-invite-detail-table .vv-table,
  .vv-node-status-table .vv-table {
    display: block;
    min-width: 0;
  }

  .vv-invite-stats-table thead,
  .vv-invite-code-table thead,
  .vv-invite-detail-table thead,
  .vv-node-status-table thead {
    display: none;
  }

  .vv-invite-stats-table tbody,
  .vv-invite-code-table tbody,
  .vv-invite-detail-table tbody,
  .vv-node-status-table tbody {
    display: grid;
    gap: 10px;
  }

  .vv-invite-stats-table tr,
  .vv-invite-code-table tr,
  .vv-invite-detail-table tr,
  .vv-node-status-table tr {
    display: grid;
    padding: 12px 14px;
    border: 1px solid rgba(42, 116, 232, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
  }

  .vv-invite-stats-table th,
  .vv-invite-stats-table td,
  .vv-invite-code-table th,
  .vv-invite-code-table td,
  .vv-invite-detail-table th,
  .vv-invite-detail-table td,
  .vv-node-status-table th,
  .vv-node-status-table td {
    display: grid;
    grid-template-columns: minmax(82px, 0.36fr) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 7px 0;
    border-bottom: 1px solid rgba(42, 116, 232, 0.06);
  }

  .vv-invite-stats-table td::before,
  .vv-invite-code-table td::before,
  .vv-invite-detail-table td::before,
  .vv-node-status-table td::before {
    content: attr(data-label);
    color: var(--vv-text-muted);
    font-size: var(--vv-fs-xs);
    font-weight: 800;
  }

  .vv-invite-stats-table tr td:last-child,
  .vv-invite-code-table tr td:last-child,
  .vv-invite-detail-table tr td:last-child,
  .vv-node-status-table tr td:last-child {
    border-bottom: 0;
  }

  .vv-invite-stat-value {
    min-width: 0;
    white-space: normal;
  }

  .vv-invite-code-table .vv-table-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .vv-invite-code-table .vv-table-actions .vv-button-secondary,
  .vv-invite-code-table .vv-table-actions .vv-button-ghost {
    width: 100%;
  }

  .vv-panel-actions,
  .vv-order-actions,
  .vv-filter-row,
  .vv-purchase-periods {
    flex-direction: column;
  }

  .vv-plan-selection-stage .vv-purchase-periods {
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .vv-plan-selection-stage .vv-purchase-periods .vv-pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .vv-orders-section .vv-orders-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 14px;
  }

  .vv-orders-section .vv-orders-toolbar .vv-button-secondary {
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    font-size: var(--vv-fs-sm);
  }

  .vv-orders-section .vv-order-filter-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 14px;
    padding: 6px;
    overflow-x: auto;
    border: 1px solid rgba(42, 116, 232, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    scrollbar-width: none;
  }

  .vv-orders-section .vv-order-filter-row::-webkit-scrollbar {
    display: none;
  }

  .vv-orders-section .vv-order-filter-row .vv-pill {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: var(--vv-fs-xs);
  }

  .vv-order-card-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .vv-order-card .vv-order-actions {
    flex-direction: row;
  }

  .vv-reset-subscribe-block {
    grid-template-columns: 1fr;
  }

  .vv-button,
  .vv-button-secondary,
  .vv-button-ghost {
    width: 100%;
  }

  .vv-quick-subscribe-dialog .vv-panel-head,
  .vv-traffic-log-dialog .vv-panel-head,
  .vv-email-confirm-dialog .vv-panel-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
  }

  .vv-quick-subscribe-dialog .vv-panel-title,
  .vv-traffic-log-dialog .vv-panel-title,
  .vv-email-confirm-dialog .vv-panel-title {
    font-size: var(--vv-fs-xl);
    line-height: 1.25;
  }

  .vv-quick-subscribe-dialog .vv-panel-copy,
  .vv-traffic-log-dialog .vv-panel-copy,
  .vv-email-confirm-dialog .vv-panel-copy {
    margin-top: 4px;
    font-size: var(--vv-fs-sm);
    line-height: 1.55;
  }

  .vv-quick-subscribe-dialog .vv-dialog-close,
  .vv-traffic-log-dialog .vv-dialog-close,
  .vv-email-confirm-dialog .vv-dialog-close {
    width: auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: var(--vv-fs-xs);
  }

  .vv-email-confirm-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vv-email-confirm-actions .vv-button,
  .vv-email-confirm-actions .vv-button-secondary,
  .vv-email-confirm-actions .vv-button-ghost {
    width: 100%;
  }

  .vv-subscribe-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .vv-subscribe-actions .vv-button,
  .vv-subscribe-actions .vv-button-secondary,
  .vv-subscribe-actions .vv-button-ghost {
    width: 100%;
    min-height: 36px;
    padding: 0 6px;
    font-size: var(--vv-fs-xs);
    white-space: nowrap;
  }

  .vv-traffic-log-pager {
    gap: 6px;
  }

  .vv-traffic-log-pager .vv-button-ghost {
    width: auto;
    min-height: 32px;
    padding: 0 9px;
    font-size: var(--vv-fs-xs);
  }

  .vv-traffic-log-month {
    padding: 7px 8px;
  }

  .vv-hero-copy .vv-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .vv-hero-copy .vv-hero-actions .vv-button,
  .vv-hero-copy .vv-hero-actions .vv-button-secondary {
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    font-size: var(--vv-fs-sm);
    white-space: nowrap;
  }

  .vv-contact-float-actions .vv-button,
  .vv-contact-float-actions .vv-button-secondary,
  .vv-contact-float-actions .vv-button-ghost {
    width: auto;
    min-height: 34px;
    padding: 0 10px;
    font-size: var(--vv-fs-xs);
  }

  .vv-order-card .vv-order-actions .vv-button-secondary,
  .vv-order-card .vv-order-actions .vv-button-ghost {
    width: auto;
    min-width: 96px;
  }
}
