/* ===== July Store - Premium Payment UI ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables - Dark Mode (default) */
:root,
[data-theme="dark"] {
  --bg-primary: #050510;
  --bg-secondary: #0c0c24;
  --bg-card: rgba(18, 18, 50, 0.7);
  --bg-card-hover: rgba(28, 28, 68, 0.8);
  --bg-glass: rgba(16, 16, 44, 0.5);
  --bg-header: rgba(5, 5, 16, 0.75);
  --bg-modal-overlay: rgba(0, 0, 0, 0.7);
  --bg-input: rgba(255, 255, 255, 0.03);
  --bg-bank-row: rgba(0, 0, 0, 0.15);
  --bg-stat-card: rgba(18, 18, 50, 0.6);
  --bg-feature-banner: rgba(18, 18, 50, 0.5);
  --bg-contact-card: rgba(18, 18, 50, 0.6);
  --bg-review-card: rgba(18, 18, 50, 0.6);

  --accent-1: #7c3aed;
  --accent-2: #a78bfa;
  --accent-3: #c4b5fd;
  --accent-glow: rgba(124, 58, 237, 0.35);
  --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a78bfa 50%, #c4b5fd 100%);
  --accent-gradient-btn: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);

  --cyan: #22d3ee;
  --cyan-glow: rgba(34, 211, 238, 0.25);
  --green: #34d399;
  --green-glow: rgba(52, 211, 153, 0.25);
  --amber: #fbbf24;
  --amber-glow: rgba(251, 191, 36, 0.15);
  --red: #f87171;

  --text-primary: #f1f1ff;
  --text-secondary: #a5a5c8;
  --text-muted: #64648a;

  --border: rgba(124, 58, 237, 0.12);
  --border-hover: rgba(124, 58, 237, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.04);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --orb1-color: rgba(124, 58, 237, 0.12);
  --orb2-color: rgba(34, 211, 238, 0.08);
}

/* CSS Variables - Light Mode */
[data-theme="light"] {
  --bg-primary: #f0f0fa;
  --bg-secondary: #e4e4f5;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.6);
  --bg-header: rgba(240, 240, 250, 0.85);
  --bg-modal-overlay: rgba(0, 0, 0, 0.4);
  --bg-input: rgba(0, 0, 0, 0.03);
  --bg-bank-row: rgba(0, 0, 0, 0.04);
  --bg-stat-card: rgba(255, 255, 255, 0.8);
  --bg-feature-banner: rgba(255, 255, 255, 0.7);
  --bg-contact-card: rgba(255, 255, 255, 0.85);
  --bg-review-card: rgba(255, 255, 255, 0.85);

  --accent-1: #7c3aed;
  --accent-2: #6d28d9;
  --accent-3: #5b21b6;
  --accent-glow: rgba(124, 58, 237, 0.2);
  --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
  --accent-gradient-btn: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);

  --cyan: #0891b2;
  --cyan-glow: rgba(8, 145, 178, 0.2);
  --green: #059669;
  --green-glow: rgba(5, 150, 105, 0.2);
  --amber: #d97706;
  --amber-glow: rgba(217, 119, 6, 0.1);
  --red: #dc2626;

  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #8888aa;

  --border: rgba(124, 58, 237, 0.15);
  --border-hover: rgba(124, 58, 237, 0.4);
  --border-subtle: rgba(0, 0, 0, 0.06);

  --orb1-color: rgba(124, 58, 237, 0.07);
  --orb2-color: rgba(8, 145, 178, 0.05);
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal overflow on ALL devices including iOS Safari */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  transition: background 0.3s, color 0.3s;
}

/* Guard all media & replaced elements */
img,
video,
canvas,
svg,
picture,
embed,
object,
iframe {
  max-width: 100%;
  height: auto;
}

/* Tables scroll inside their container, never push viewport */
table {
  width: 100%;
  table-layout: auto;
}

/* Inputs/textareas respect viewport width */
input,
textarea,
select {
  max-width: 100%;
}

/* Animated BG orbs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: clamp(280px, 50vw, 600px);
  height: clamp(280px, 50vw, 600px);
  top: -10%;
  left: clamp(-60px, -5%, 0px);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  animation: orbFloat1 25s ease-in-out infinite;
}

body::after {
  width: clamp(220px, 45vw, 500px);
  height: clamp(220px, 45vw, 500px);
  bottom: -10%;
  right: clamp(-60px, -5%, 0px);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  animation: orbFloat2 20s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(80px, 40px);
  }

  66% {
    transform: translate(-30px, 80px);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-60px, -30px);
  }

  66% {
    transform: translate(40px, -60px);
  }
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 36px;
  background: var(--bg-header);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-left: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.header-user-area {
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(99, 102, 241, 0.9));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.header-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(99, 102, 241, 0.34);
}

.header-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-nav-link:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.header-nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-user-menu {
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-gradient-btn);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
}

.header-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ===== Main ===== */
.main {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 28px 60px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 64px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 24px;
}

.hero-tag svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.hero h1 .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .hero-title-copy {
  color: inherit;
  -webkit-text-fill-color: currentColor;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Packages Grid ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.package-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
}

.pkg-name {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pkg-price {
  font-size: 34px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-buy {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-2);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.btn-buy:hover {
  background: var(--accent-gradient-btn);
  color: #fff;
  transform: scale(1.02);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease both;
}

/* --- Restored CSS below --- */

/* Packages */
.popular-tag {
  position: absolute;
  top: 14px;
  right: -30px;
  background: var(--accent-gradient-btn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 34px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px var(--accent-glow);
}

.pkg-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.icon-basic {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.icon-standard {
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.icon-premium {
  background: var(--accent-glow);
  color: var(--accent-2);
  border: 1px solid var(--border);
}

.icon-lifetime {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.pkg-duration {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pkg-currency {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

.pkg-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pkg-features span.check {
  color: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pkg-features span.check svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  font-size: 14px;
  width: 100%;
}

.footer a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 32px 28px;
  position: relative;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(.2, .9, .3, 1);
  color: var(--text-primary);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.payment-modal {
  padding: 0;
  overflow: hidden;
  max-width: 400px;
  background: rgba(18, 18, 50, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.15);
  border-radius: 24px;
}

.modal-top-right {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(248, 113, 113, 0.15);
  color: var(--red);
  border-color: rgba(248, 113, 113, 0.3);
  transform: rotate(90deg);
}

.modal h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}

.modal-summary {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sum-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sum-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-3);
}

.sum-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
}

/* Form inputs */
.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.form-group input:focus {
  border-color: var(--accent-1);
  background: rgba(124, 58, 237, 0.03);
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--accent-gradient-btn);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

.btn-primary.loading .btn-text {
  display: none;
}

.btn-primary.loading .spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Payment Details */
.pay-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.pay-amount-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pay-amount-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pay-amount-value {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--green);
}

.pay-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.pay-timer svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

.pay-timer.urgent {
  background: rgba(248, 113, 113, 0.1);
  color: var(--red);
}

.pay-timer.urgent svg {
  stroke: var(--red);
}

.pay-body {
  padding: 14px 20px 20px;
}

.qr-section {
  text-align: center;
  margin-bottom: 14px;
}

.qr-frame {
  display: inline-block;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 8px;
}

.qr-frame img {
  display: block;
  width: 175px;
  height: 175px;
  border-radius: 6px;
}

.qr-bank-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px 14px 5px 6px;
  margin: 10px auto 8px;
}

.qr-bank-badge img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
}

.qr-bank-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.qr-hint {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.5;
}

.pay-divider {
  text-align: center;
  margin: 12px 0;
  position: relative;
}

.pay-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 1;
}

.pay-divider span {
  display: inline-block;
  background: var(--bg-card);
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.bank-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-bank-row);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.bank-row.copyable {
  cursor: pointer;
  transition: 0.2s;
}

.bank-logo-inline {
  height: 22px;
  width: auto;
  max-width: 60px;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
  padding: 2px 4px;
  flex-shrink: 0;
}

.bank-row.copyable:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.bank-label {
  font-size: 13px;
  color: var(--text-muted);
}

.bank-value {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.bank-value-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-secondary);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

/* ===== Payment Method Selector ===== */
.pay-method-select {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pay-method-btn {
  flex: 1;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.pay-method-btn img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
}

.pay-method-btn.active {
  border-color: var(--accent-1);
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--accent-1);
}

.pay-method-btn:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

/* ===== MoMo Section in Payment Modal ===== */
#momoSection {
  margin-top: 12px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.momo-deeplink-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #ae2070 0%, #d4206b 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.momo-deeplink-btn:hover {
  opacity: 0.88;
}

.momo-deeplink-btn img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.momo-hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* MoMo POS - payment code input hint */
.pos-code-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.pos-code-hint strong {
  color: var(--text-secondary);
}

/* Maintenance badge on disabled method buttons */
.maint-badge {
  display: none;
  /* legacy - replaced by maint-overlay */
}

/* Maintenance overlay - covers button content */
.maint-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 20, 0.78);
  backdrop-filter: blur(2px);
  border-radius: inherit;
  align-items: center;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
  z-index: 2;
}

.maint-overlay span {
  font-size: 11px;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 0.3px;
}

.pay-method-btn {
  position: relative;
  overflow: hidden;
}

.pay-method-btn.maint-active .maint-overlay {
  display: flex;
}

.btn-copy:hover {
  background: var(--accent-glow);
  color: var(--accent-2);
  border-color: var(--accent-1);
}

.btn-copy.copied {
  background: rgba(52, 211, 153, 0.15);
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.3);
}

.val-green {
  color: var(--green);
}

.val-accent {
  color: var(--accent-2);
  font-family: monospace;
  font-size: 16px;
}

.pay-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px dashed rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  font-size: 12px;
  color: var(--amber);
  line-height: 1.5;
}

.pay-warning svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  margin-top: 1px;
}

.pay-checking {
  padding: 16px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.check-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--cyan);
  }
}

.pay-result {
  padding: 32px 24px;
  text-align: center;
}

.result-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.result-icon-wrap.success {
  background: rgba(52, 211, 153, 0.1);
  box-shadow: 0 0 30px rgba(52, 211, 153, 0.2);
}

.result-icon-wrap.expired {
  background: rgba(251, 191, 36, 0.1);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

/* Toast */
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.theme-toggle:hover {
  background: var(--accent-glow);
  color: var(--accent-2);
  border-color: var(--accent-1);
  transform: rotate(20deg) scale(1.08);
}

[data-theme="dark"] .theme-icon-light {
  display: none;
}

[data-theme="dark"] .theme-icon-dark {
  display: flex;
}

[data-theme="light"] .theme-icon-dark {
  display: none;
}

[data-theme="light"] .theme-icon-light {
  display: flex;
}

/* ===== Stats Section ===== */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.stat-card {
  background: var(--bg-stat-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-green {
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.stat-icon-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.stat-icon-amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.stat-icon-purple {
  background: var(--accent-glow);
  color: var(--accent-2);
  border: 1px solid var(--border);
}

.stat-info {
  flex: 1;
  min-width: 0;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
}

.stat-dot.green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* ===== Features Banner ===== */
.features-banner {
  background: var(--bg-feature-banner);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  color: var(--accent-2);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.feature-icon.feature-icon-green {
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.2);
}

.feature-icon.feature-icon-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.2);
}

.feature-icon.feature-icon-amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.2);
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.feature-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
}

.feature-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .features-banner {
    padding: 20px;
    gap: 18px;
  }

  .feature-divider {
    display: none;
  }

  .feature-item {
    width: calc(50% - 9px);
  }
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ===== Feedback / Reviews ===== */
.feedback-section {
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--bg-review-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 32px var(--accent-glow);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== Contact Section ===== */
.contact-section {
  margin-bottom: 60px;
}

.contact-card {
  background: var(--bg-contact-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.contact-header {
  margin-bottom: 28px;
}

.contact-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.contact-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.zalo-btn {
  background: linear-gradient(135deg, #0068FF 0%, #0052cc 100%);
  color: #fff;
  border-color: rgba(0, 104, 255, 0.3);
}

.zalo-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 104, 255, 0.35);
}

.fb-btn {
  background: linear-gradient(135deg, #1877F2 0%, #0b5fcc 100%);
  color: #fff;
  border-color: rgba(24, 119, 242, 0.3);
}

.fb-btn:hover {
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.35);
}

.contact-btn-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.contact-btn-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.contact-live-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse 2s ease-in-out infinite;
}

.contact-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  line-height: 1.5;
}

/* ===== Footer Links ===== */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  display: inline-block;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

/* ===== Light mode overrides for hero gradient text ===== */
[data-theme="light"] .hero h1,
[data-theme="light"] .section-header h2,
[data-theme="light"] .contact-header h2 {
  color: var(--text-primary);
}

[data-theme="light"] .hero h1 .gradient-text {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] body::before {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
}

[data-theme="light"] body::after {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .modal {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .modal-overlay {
  background: var(--bg-modal-overlay);
}

[data-theme="light"] .noise-overlay {
  opacity: 0.005;
}

/* ===== RESPONSIVE - MOBILE ===== */

/* Tablet: <= 768px */
@media (max-width: 768px) {

  /* Header */
  .header {
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 10px 12px;
    gap: 8px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(9, 14, 33, 0.82), rgba(15, 18, 44, 0.74)),
      radial-gradient(circle at 18% 50%, rgba(34, 211, 238, 0.14), transparent 48%),
      radial-gradient(circle at 84% 30%, rgba(139, 92, 246, 0.18), transparent 44%);
    box-shadow: 0 18px 42px rgba(3, 7, 20, 0.5), 0 0 28px rgba(124, 58, 237, 0.12);
    backdrop-filter: blur(20px) saturate(1.2);
    justify-content: initial;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 96px;
  }

  .header-badge {
    display: none;
  }

  .header-logo {
    width: 96px;
    min-width: 96px;
  }

  .logo-text {
    font-size: 14px;
    line-height: 1.02;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
    border-radius: 10px;
  }

  .header-actions {
    width: 96px;
    gap: 8px;
    margin-left: 0;
    justify-content: flex-end;
  }

  .header-nav {
    display: flex;
    justify-content: center;
    min-width: 0;
    margin: 0;
    width: 100%;
    max-width: 174px;
    padding: 4px;
    gap: 4px;
    background: rgba(6, 11, 27, 0.58);
    border: 1px solid rgba(167, 139, 250, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 22px rgba(124, 58, 237, 0.08);
  }

  .header-nav-link {
    flex: 1 1 0;
    padding: 8px 11px;
    font-size: 12px;
  }

  .header-user-area {
    width: 100%;
    gap: 6px !important;
    justify-content: flex-end;
  }

  .theme-toggle {
    display: none;
  }

  #headerWalletChip,
  #headerBell {
    display: none !important;
  }

  .header-login-btn {
    padding: 8px 14px !important;
    min-height: 38px;
    font-size: 12px !important;
  }

  #userDropdown {
    top: 46px !important;
    right: -2px !important;
    max-width: min(240px, calc(100vw - 24px));
  }

  #ddUserEmail {
    overflow-wrap: anywhere;
  }

  /* Main */
  .main {
    padding: 102px 16px 48px;
  }

  /* Hero */
  .hero {
    margin-bottom: 36px;
  }

  .hero p {
    font-size: 15px;
    padding: 0 8px;
  }

  /* Stats */
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .stat-card {
    padding: 14px 14px;
    gap: 10px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }

  /* Packages grid */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }

  /* Features banner */
  .features-banner {
    padding: 18px 16px;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }

  .feature-divider {
    display: none;
  }

  .feature-item {
    width: calc(50% - 7px);
    flex-shrink: 0;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .feature-title {
    font-size: 13px;
    white-space: normal;
  }

  .feature-desc {
    font-size: 11px;
    white-space: normal;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    padding: 18px;
  }

  /* Contact */
  .contact-card {
    padding: 24px 16px;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .contact-btn {
    min-width: unset;
    justify-content: flex-start;
  }

  .contact-note {
    font-size: 11px;
    border-radius: 12px;
    text-align: left;
  }

  /* Footer */
  .footer {
    padding: 20px 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Modal */
  .modal {
    max-width: 100%;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .payment-modal {
    max-width: 100%;
  }

  .pay-method-select {
    gap: 6px;
  }

  .pay-method-btn {
    font-size: 11px;
    padding: 9px 8px;
    gap: 5px;
    min-width: 70px;
  }

  .hero-right {
    min-height: auto;
    margin-top: 28px;
  }

  .mock-dash {
    max-width: 100%;
    transform: none;
  }

  .mock-dash:hover {
    transform: translateY(-6px);
  }

  .mock-dash-body {
    height: auto;
    min-height: 280px;
  }

  .mock-sidebar {
    width: 50px;
  }

  .mock-content {
    padding: 14px;
    gap: 14px;
  }

  .mock-top-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mock-card {
    min-width: 0;
    padding: 10px;
  }

  .mock-card-val {
    font-size: 16px;
  }

  .mock-chart {
    height: 72px;
    gap: 6px;
    padding: 8px;
  }

  .mock-terminal {
    min-height: 104px;
  }

  .mock-float {
    display: none;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* Mobile nhỏ: <= 480px */
@media (max-width: 480px) {

  /* Header */
  .header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 8px 10px;
    gap: 6px;
  }

  .header-logo {
    width: 84px;
    min-width: 84px;
  }

  .logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }

  .logo-text span {
    display: inline;
    font-size: 11px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 9px;
  }

  .header-logo {
    gap: 8px;
  }

  .header-nav {
    max-width: 150px;
    gap: 3px;
    padding: 3px;
  }

  .header-nav-link {
    padding: 7px 7px;
    font-size: 10.5px;
  }

  .header-actions {
    width: 84px;
    gap: 4px;
  }

  .header-login-btn {
    width: 100%;
    padding: 7px 6px !important;
    min-height: 32px;
    font-size: 10px !important;
  }

  /* Main */
  .main {
    padding: 94px 12px 40px;
  }

  /* Hero */
  .hero {
    margin-bottom: 28px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 6px 13px;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 14px;
  }

  /* Stats: 2 cột vẫn giữ, nhưng nhỏ hơn */
  .stats-section {
    gap: 8px;
    margin-bottom: 24px;
  }

  .stat-card {
    padding: 12px 12px;
    gap: 9px;
    border-radius: 12px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .stat-value {
    font-size: 16px;
  }

  /* Features: stack dọc khi quá nhỏ */
  .feature-item {
    width: 100%;
  }

  /* Section header */
  .section-header h2 {
    font-size: 22px;
  }

  /* Reviews */
  .review-card {
    padding: 14px;
    gap: 10px;
  }

  .review-content {
    font-size: 13px;
  }

  /* Contact */
  .contact-header h2 {
    font-size: 22px;
  }

  .contact-desc {
    font-size: 13px;
  }

  .contact-btn {
    padding: 13px 18px;
    gap: 10px;
  }

  /* Modal overlay - đặt modal ở dưới màn hình kiểu sheet */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
  }

  .payment-modal {
    border-radius: 20px 20px 0 0;
    max-height: 95vh;
    overflow-y: auto;
  }

  .hero-right {
    margin-top: 24px;
  }

  .mock-dash {
    border-radius: 14px;
  }

  .mock-dash-header {
    padding: 0 12px;
  }

  .mock-title {
    font-size: 10px;
    letter-spacing: 0.4px;
  }

  .mock-dash-body {
    min-height: 244px;
  }

  .mock-sidebar {
    width: 44px;
    padding-top: 12px;
    gap: 12px;
  }

  .mock-menu-item {
    width: 26px;
    height: 26px;
  }

  .mock-content {
    padding: 12px;
    gap: 12px;
  }

  .mock-top-cards {
    grid-template-columns: 1fr;
  }

  .mock-card-title {
    font-size: 9px;
  }

  .mock-card-val {
    font-size: 15px;
  }

  .mock-chart {
    height: 64px;
  }

  .mock-terminal {
    min-height: 96px;
    font-size: 9px;
  }

  /* Pay method buttons */
  .pay-method-select {
    flex-wrap: wrap;
  }

  .pay-method-btn {
    flex: 1 1 calc(33% - 6px);
    font-size: 11px;
    padding: 9px 6px;
  }

  /* QR image nhỏ hơn */
  .qr-frame img {
    width: 150px;
    height: 150px;
  }

  /* Bank info rows */
  .bank-row {
    padding: 7px 10px;
  }

  .bank-label {
    font-size: 12px;
  }

  .bank-value,
  .bank-value-copy {
    font-size: 12px;
  }

  .val-accent {
    font-size: 13px;
  }

  /* Footer */
  .footer-links {
    gap: 6px;
    font-size: 12px;
  }
}

/* ===== Announcement Bar ===== */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #7c3aed 0%, #4f46e5 50%, #7c3aed 100%);
  background-size: 200% 100%;
  animation: shimmerBg 4s linear infinite;
  padding: 8px 48px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 50px;
}

@keyframes shimmerBg {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.announce-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.announce-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.announce-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.announce-text strong {
  color: #fff;
  font-weight: 800;
}

.announce-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.announce-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.announce-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== Ticker ===== */
.ticker-wrap {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 0 40px 0 0;
}

.ticker-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

.ticker-pkg {
  color: var(--accent-2);
  font-weight: 700;
}

/* Main padding adjustment */
.main {
  padding-top: 148px;
}

@media (max-width: 768px) {
  .ticker-wrap {
    top: 76px;
  }

  .main {
    padding-top: 138px;
  }
}

@media (max-width: 480px) {
  .ticker-wrap {
    top: 66px;
  }

  .main {
    padding-top: 124px;
  }
}

@media (max-width: 600px) {

  .announce-sep,
  .announce-text:last-child {
    display: none;
  }
}

/* ===== FAQ ===== */
.faq-section {
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: var(--accent-1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent-2);
}

.faq-item.open .faq-question {
  color: var(--accent-2);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.faq-answer strong {
  color: var(--text-primary);
}

/* ===== Uptime Section ===== */
.uptime-section {
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

.uptime-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.uptime-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.uptime-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--border-hover);
}

.u-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.u-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: 'Courier New', Courier, monospace;
}

.u-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  margin-bottom: 12px;
  overflow: hidden;
}

.u-bar {
  height: 100%;
  border-radius: 50px;
  transition: width 1s ease-out;
}

.u-sub {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .uptime-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-2);
}

.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.trust-sep {
  display: none;
}

@media (max-width: 640px) {
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    gap: 12px;
    font-size: 13px;
  }

  .trust-item svg {
    width: 18px;
    height: 18px;
  }

  .trust-title {
    font-size: 13px;
  }

  .trust-sub {
    font-size: 11px;
  }
}

/* ===== Footer v2 ===== */
.footer-v2 {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-v2-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 36px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .footer-v2-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px 20px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.footer-social-btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.footer-col-link:hover {
  color: var(--accent-2);
}

.footer-v2-bottom {
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy-v2 {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--green);
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* ===== Floating Zalo ===== */
.float-zalo {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0068FF;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px 10px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0, 104, 255, 0.4);
  transition: all 0.3s;
  animation: floatBounce 3s ease-in-out infinite;
}

.float-zalo:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(0, 104, 255, 0.55);
  animation: none;
}

.float-zalo-label {
  font-size: 13px;
  color: #fff;
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .float-zalo {
    bottom: 76px;
    right: 14px;
    padding: 9px 12px;
  }
}

/* ===== GLOBAL MOBILE OVERFLOW SAFETY ===== */
/* Prevents ANY element from pushing the page wider than the viewport.
   Applies site-wide across all pages and admin panel. */

/* Admin inline #toast: clamp width so it never overflows on narrow phones */
#toast {
  max-width: calc(100vw - 32px) !important;
  right: 16px !important;
  left: auto !important;
}

/* Search wrap min-width should never exceed viewport */
.search-wrap {
  min-width: 0 !important;
}

/* Flex containers that may force children wider than viewport */
.toolbar,
.form-row,
.page-header,
.page-actions {
  flex-wrap: wrap;
}

/* All table wrappers scroll horizontally — never push body */
.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Modal / modal-box must respect viewport */
.modal-box,
.modal {
  max-width: min(400px, calc(100vw - 32px));
  width: 100%;
}

/* Stats grids fallback to 1 col on very narrow screens */
@media (max-width: 400px) {

  .stats-row,
  .stats-strip {
    grid-template-columns: 1fr 1fr !important;
  }

  .charts-row,
  .bottom-row,
  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .admin-main,
  .content-wrap {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

@media (max-width: 480px) {
  .float-zalo-label {
    display: none;
  }
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-gradient-btn);
  color: #fff;
  border-color: var(--accent-1);
  transform: translateY(-2px);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1), transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Toast Notification Global */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(11, 11, 21, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  min-width: 280px;
  max-width: 420px;
  word-wrap: break-word;
}

.toast.success {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.4);
  color: #fff;
}

.toast.success svg {
  stroke: #34d399;
}

.toast.error {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.4);
  color: #fff;
}

.toast.error svg {
  stroke: #f87171;
}

.toast.warning {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.4);
  color: #fff;
}

.toast.warning svg {
  stroke: #fbbf24;
}

@keyframes toastIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive Toast for Mobile */
@media (max-width: 640px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .toast {
    min-width: auto;
    max-width: 100%;
  }
}

/* =========================================
   PREMIUM UI UPGRADES
========================================= */

/* Hero 2-column layout */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 40px;
}

.hero-left {
  flex: 1;
  max-width: 550px;
}

.hero-left h1 {
  font-size: clamp(34px, 5.5vw, 54px);
  margin-bottom: 20px;
}

.hero-left p {
  margin: 0;
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    margin: 0 auto;
  }

  .hero-left p {
    margin: 0 auto;
  }

  .hero-right {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-right {
    margin-top: 28px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .hero-right {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .hero-right {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
  }

  .mock-dash {
    width: min(74vw, 308px);
    max-width: 308px;
    margin-inline: auto;
    transform: none;
  }

  .mock-dash:hover {
    transform: translateY(-4px);
  }

  .mock-dash-body {
    min-height: 198px;
  }

  .mock-sidebar {
    width: 42px;
    padding-top: 10px;
    gap: 10px;
  }

  .mock-menu-item {
    width: 24px;
    height: 24px;
  }

  .mock-content {
    padding: 10px;
    gap: 9px;
  }

  .mock-top-cards {
    gap: 6px;
  }

  .mock-card {
    padding: 8px;
  }

  .mock-card-title {
    font-size: 8px;
    margin-bottom: 2px;
  }

  .mock-card-val {
    font-size: 13px;
  }

  .mock-chart {
    height: 50px;
    gap: 5px;
    padding: 6px;
  }

  .mock-terminal {
    min-height: 60px;
    padding: 6px 7px;
    font-size: 6px;
    line-height: 1.45;
  }

  .mock-terminal div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mock-float,
  .mock-float-1,
  .mock-float-2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-right {
    margin-top: 14px;
  }

  .mock-dash {
    width: min(68vw, 276px);
    max-width: 276px;
  }

  .mock-dash-header {
    padding: 0 10px;
  }

  .mock-title {
    font-size: 9px;
    letter-spacing: 0.3px;
  }

  .mock-dash-body {
    min-height: 176px;
  }

  .mock-sidebar {
    width: 38px;
    padding-top: 8px;
    gap: 8px;
  }

  .mock-menu-item {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }

  .mock-content {
    padding: 8px;
    gap: 8px;
  }

  .mock-card {
    padding: 7px;
  }

  .mock-card-val {
    font-size: 12px;
  }

  .mock-chart {
    height: 44px;
    gap: 4px;
    padding: 5px;
  }

  .mock-terminal {
    min-height: 52px;
    padding: 5px 6px;
    font-size: 5px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 160px !important;
    align-items: start !important;
    gap: 14px !important;
    text-align: left !important;
  }

  .hero-left {
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .hero-tag {
    margin-bottom: 8px !important;
    align-self: flex-start !important;
  }

  .hero-right {
    order: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    justify-content: flex-end !important;
    align-self: start !important;
  }

  .hero-left h1 {
    margin-bottom: 10px !important;
    font-size: clamp(23px, 6.1vw, 30px) !important;
    max-width: none !important;
    text-wrap: balance;
  }

  .hero-left p {
    margin: 0 !important;
    max-width: none !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .hero-cta {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    margin-top: 14px !important;
  }

  .cta-button {
    width: 100% !important;
    max-width: 220px !important;
    min-width: 0 !important;
    padding: 13px 18px !important;
    justify-content: center !important;
    font-size: 14px !important;
  }

  .mock-dash {
    width: 160px !important;
    max-width: 160px !important;
    margin-inline: 0 !important;
    transform: none !important;
  }

  .mock-dash:hover {
    transform: translateY(-3px) !important;
  }

  .mock-dash-header {
    height: 28px !important;
    padding: 0 8px !important;
  }

  .mock-dots {
    gap: 4px !important;
  }

  .mock-dots span {
    width: 7px !important;
    height: 7px !important;
  }

  .mock-title {
    font-size: 6px !important;
    letter-spacing: 0.2px !important;
  }

  .mock-dash-body {
    height: auto !important;
    min-height: 116px !important;
  }

  .mock-sidebar {
    width: 28px !important;
    padding-top: 6px !important;
    gap: 5px !important;
  }

  .mock-menu-item {
    width: 15px !important;
    height: 15px !important;
    border-radius: 5px !important;
  }

  .mock-content {
    padding: 5px !important;
    gap: 5px !important;
  }

  .mock-top-cards {
    gap: 4px !important;
  }

  .mock-card {
    padding: 4px !important;
    border-radius: 7px !important;
  }

  .mock-card-title {
    font-size: 4.5px !important;
    margin-bottom: 1px !important;
  }

  .mock-card-val {
    font-size: 8px !important;
  }

  .mock-chart {
    height: 27px !important;
    gap: 3px !important;
    padding: 3px !important;
    border-radius: 7px !important;
  }

  .mock-terminal {
    min-height: 28px !important;
    padding: 3px 4px !important;
    font-size: 3px !important;
    line-height: 1.3 !important;
  }

  .mock-terminal div {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .mock-float,
  .mock-float-1,
  .mock-float-2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 128px !important;
    gap: 10px !important;
  }

  .hero-left h1 {
    font-size: clamp(20px, 6.8vw, 27px) !important;
  }

  .hero-left p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }

  .hero-cta {
    margin-top: 12px !important;
  }

  .cta-button {
    max-width: 196px !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
  }

  .mock-dash {
    width: 128px !important;
    max-width: 128px !important;
  }

  .mock-dash-header {
    height: 24px !important;
    padding: 0 6px !important;
  }

  .mock-dots span {
    width: 6px !important;
    height: 6px !important;
  }

  .mock-title {
    font-size: 5px !important;
  }

  .mock-dash-body {
    min-height: 102px !important;
  }

  .mock-sidebar {
    width: 24px !important;
    padding-top: 5px !important;
    gap: 4px !important;
  }

  .mock-menu-item {
    width: 13px !important;
    height: 13px !important;
    border-radius: 4px !important;
  }

  .mock-content {
    padding: 4px !important;
    gap: 4px !important;
  }

  .mock-card {
    padding: 3px !important;
  }

  .mock-card-title {
    font-size: 4px !important;
  }

  .mock-card-val {
    font-size: 7px !important;
  }

  .mock-chart {
    height: 22px !important;
    gap: 2px !important;
    padding: 2px !important;
  }

  .mock-terminal {
    min-height: 24px !important;
    padding: 2px 3px !important;
    font-size: 2.6px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 160px !important;
    align-items: start !important;
    gap: 14px !important;
    text-align: left !important;
  }

  .hero-left {
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .hero-tag {
    margin-bottom: 8px !important;
    align-self: flex-start !important;
  }

  .hero-right {
    order: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    justify-content: flex-end !important;
    align-self: start !important;
  }

  .hero-left h1 {
    margin-bottom: 10px !important;
    font-size: clamp(23px, 6.1vw, 30px) !important;
    max-width: none !important;
    text-wrap: balance;
  }

  .hero-left p {
    margin: 0 !important;
    max-width: none !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .hero-cta {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    margin-top: 14px !important;
  }

  .cta-button {
    width: 100% !important;
    max-width: 220px !important;
    min-width: 0 !important;
    padding: 13px 18px !important;
    justify-content: center !important;
    font-size: 14px !important;
  }

  .mock-dash {
    width: 160px !important;
    max-width: 160px !important;
    margin-inline: 0 !important;
    transform: none !important;
  }

  .mock-dash:hover {
    transform: translateY(-3px) !important;
  }

  .mock-dash-header {
    height: 28px !important;
    padding: 0 8px !important;
  }

  .mock-dots {
    gap: 4px !important;
  }

  .mock-dots span {
    width: 7px !important;
    height: 7px !important;
  }

  .mock-title {
    font-size: 6px !important;
    letter-spacing: 0.2px !important;
  }

  .mock-dash-body {
    height: auto !important;
    min-height: 116px !important;
  }

  .mock-sidebar {
    width: 28px !important;
    padding-top: 6px !important;
    gap: 5px !important;
  }

  .mock-menu-item {
    width: 15px !important;
    height: 15px !important;
    border-radius: 5px !important;
  }

  .mock-content {
    padding: 5px !important;
    gap: 5px !important;
  }

  .mock-top-cards {
    gap: 4px !important;
  }

  .mock-card {
    padding: 4px !important;
    border-radius: 7px !important;
  }

  .mock-card-title {
    font-size: 4.5px !important;
    margin-bottom: 1px !important;
  }

  .mock-card-val {
    font-size: 8px !important;
  }

  .mock-chart {
    height: 27px !important;
    gap: 3px !important;
    padding: 3px !important;
    border-radius: 7px !important;
  }

  .mock-terminal {
    min-height: 28px !important;
    padding: 3px 4px !important;
    font-size: 3px !important;
    line-height: 1.3 !important;
  }

  .mock-terminal div {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .mock-float,
  .mock-float-1,
  .mock-float-2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 128px !important;
    gap: 10px !important;
  }

  .hero-left h1 {
    font-size: clamp(20px, 6.8vw, 27px) !important;
  }

  .hero-left p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }

  .hero-cta {
    margin-top: 12px !important;
  }

  .cta-button {
    max-width: 196px !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
  }

  .mock-dash {
    width: 128px !important;
    max-width: 128px !important;
  }

  .mock-dash-header {
    height: 24px !important;
    padding: 0 6px !important;
  }

  .mock-dots span {
    width: 6px !important;
    height: 6px !important;
  }

  .mock-title {
    font-size: 5px !important;
  }

  .mock-dash-body {
    min-height: 102px !important;
  }

  .mock-sidebar {
    width: 24px !important;
    padding-top: 5px !important;
    gap: 4px !important;
  }

  .mock-menu-item {
    width: 13px !important;
    height: 13px !important;
    border-radius: 4px !important;
  }

  .mock-content {
    padding: 4px !important;
    gap: 4px !important;
  }

  .mock-card {
    padding: 3px !important;
  }

  .mock-card-title {
    font-size: 4px !important;
  }

  .mock-card-val {
    font-size: 7px !important;
  }

  .mock-chart {
    height: 22px !important;
    gap: 2px !important;
    padding: 2px !important;
  }

  .mock-terminal {
    min-height: 24px !important;
    padding: 2px 3px !important;
    font-size: 2.6px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(138px, 42vw);
    align-items: start;
    gap: 14px;
    text-align: left;
  }

  .hero-left {
    max-width: none;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-tag {
    order: 3;
    margin-top: 10px;
    margin-bottom: 0;
    align-self: flex-start;
  }

  .hero-right {
    order: 0;
    width: auto;
    min-width: 0;
    margin: 0;
    justify-content: flex-end;
    align-self: start;
  }

  .hero-left h1 {
    margin-bottom: 10px;
    font-size: clamp(23px, 6.1vw, 30px);
    max-width: none;
    text-wrap: balance;
  }

  .hero-left p {
    margin: 0;
    max-width: none;
    font-size: 13.5px;
    line-height: 1.6;
    text-align: left;
  }

  .hero-cta {
    width: 100%;
    justify-content: flex-start;
    margin-top: 14px;
  }

  .cta-button {
    width: 100%;
    max-width: 220px;
    min-width: 0;
    padding: 13px 18px;
    justify-content: center;
    font-size: 14px;
  }

  .mock-dash {
    width: min(40vw, 160px);
    max-width: 160px;
    margin-inline: 0;
    transform: none;
  }

  .mock-dash:hover {
    transform: translateY(-3px);
  }

  .mock-dash-header {
    height: 28px;
    padding: 0 8px;
  }

  .mock-dots {
    gap: 4px;
  }

  .mock-dots span {
    width: 7px;
    height: 7px;
  }

  .mock-title {
    font-size: 6px;
    letter-spacing: 0.2px;
  }

  .mock-dash-body {
    height: auto;
    min-height: 116px;
  }

  .mock-sidebar {
    width: 28px;
    padding-top: 6px;
    gap: 5px;
  }

  .mock-menu-item {
    width: 15px;
    height: 15px;
    border-radius: 5px;
  }

  .mock-content {
    padding: 5px;
    gap: 5px;
  }

  .mock-top-cards {
    gap: 4px;
  }

  .mock-card {
    padding: 4px;
    border-radius: 7px;
  }

  .mock-card-title {
    font-size: 4.5px;
    margin-bottom: 1px;
  }

  .mock-card-val {
    font-size: 8px;
  }

  .mock-chart {
    height: 27px;
    gap: 3px;
    padding: 3px;
    border-radius: 7px;
  }

  .mock-terminal {
    min-height: 28px;
    padding: 3px 4px;
    font-size: 3px;
    line-height: 1.3;
  }

  .mock-terminal div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mock-float,
  .mock-float-1,
  .mock-float-2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 10px;
  }

  .hero-left h1 {
    font-size: clamp(20px, 6.8vw, 27px);
  }

  .hero-left p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .hero-cta {
    margin-top: 12px;
  }

  .cta-button {
    max-width: 196px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .mock-dash {
    width: 128px;
    max-width: 128px;
  }

  .mock-dash-header {
    height: 24px;
    padding: 0 6px;
  }

  .mock-dots span {
    width: 6px;
    height: 6px;
  }

  .mock-title {
    font-size: 5px;
  }

  .mock-dash-body {
    min-height: 102px;
  }

  .mock-sidebar {
    width: 24px;
    padding-top: 5px;
    gap: 4px;
  }

  .mock-menu-item {
    width: 13px;
    height: 13px;
    border-radius: 4px;
  }

  .mock-content {
    padding: 4px;
    gap: 4px;
  }

  .mock-card {
    padding: 3px;
  }

  .mock-card-title {
    font-size: 4px;
  }

  .mock-card-val {
    font-size: 7px;
  }

  .mock-chart {
    height: 22px;
    gap: 2px;
    padding: 2px;
  }

  .mock-terminal {
    min-height: 24px;
    padding: 2px 3px;
    font-size: 2.6px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(138px, 42vw);
    align-items: start;
    gap: 14px;
    text-align: left;
  }

  .hero-left {
    max-width: none;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-tag {
    margin-bottom: 8px;
    align-self: flex-start;
  }

  .hero-right {
    order: 0;
    width: auto;
    min-width: 0;
    margin: 0;
    justify-content: flex-end;
    align-self: start;
  }

  .hero-left h1 {
    margin-bottom: 10px;
    font-size: clamp(23px, 6.1vw, 30px);
    max-width: none;
    text-wrap: balance;
  }

  .hero-left p {
    margin: 0;
    max-width: none;
    font-size: 13.5px;
    line-height: 1.6;
    text-align: left;
  }

  .hero-cta {
    width: 100%;
    justify-content: flex-start;
    margin-top: 14px;
  }

  .cta-button {
    width: 100%;
    max-width: 220px;
    min-width: 0;
    padding: 13px 18px;
    justify-content: center;
    font-size: 14px;
  }

  .mock-dash {
    width: min(40vw, 160px);
    max-width: 160px;
    margin-inline: 0;
    transform: none;
  }

  .mock-dash:hover {
    transform: translateY(-3px);
  }

  .mock-dash-header {
    height: 28px;
    padding: 0 8px;
  }

  .mock-dots {
    gap: 4px;
  }

  .mock-dots span {
    width: 7px;
    height: 7px;
  }

  .mock-title {
    font-size: 6px;
    letter-spacing: 0.2px;
  }

  .mock-dash-body {
    height: auto;
    min-height: 116px;
  }

  .mock-sidebar {
    width: 28px;
    padding-top: 6px;
    gap: 5px;
  }

  .mock-menu-item {
    width: 15px;
    height: 15px;
    border-radius: 5px;
  }

  .mock-content {
    padding: 5px;
    gap: 5px;
  }

  .mock-top-cards {
    gap: 4px;
  }

  .mock-card {
    padding: 4px;
    border-radius: 7px;
  }

  .mock-card-title {
    font-size: 4.5px;
    margin-bottom: 1px;
  }

  .mock-card-val {
    font-size: 8px;
  }

  .mock-chart {
    height: 27px;
    gap: 3px;
    padding: 3px;
    border-radius: 7px;
  }

  .mock-terminal {
    min-height: 28px;
    padding: 3px 4px;
    font-size: 3px;
    line-height: 1.3;
  }

  .mock-terminal div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mock-float,
  .mock-float-1,
  .mock-float-2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 10px;
  }

  .hero-left h1 {
    font-size: clamp(20px, 6.8vw, 27px);
  }

  .hero-left p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .hero-cta {
    margin-top: 12px;
  }

  .cta-button {
    max-width: 196px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .mock-dash {
    width: 128px;
    max-width: 128px;
  }

  .mock-dash-header {
    height: 24px;
    padding: 0 6px;
  }

  .mock-dots span {
    width: 6px;
    height: 6px;
  }

  .mock-title {
    font-size: 5px;
  }

  .mock-dash-body {
    min-height: 102px;
  }

  .mock-sidebar {
    width: 24px;
    padding-top: 5px;
    gap: 4px;
  }

  .mock-menu-item {
    width: 13px;
    height: 13px;
    border-radius: 4px;
  }

  .mock-content {
    padding: 4px;
    gap: 4px;
  }

  .mock-card {
    padding: 3px;
  }

  .mock-card-title {
    font-size: 4px;
  }

  .mock-card-val {
    font-size: 7px;
  }

  .mock-chart {
    height: 22px;
    gap: 2px;
    padding: 2px;
  }

  .mock-terminal {
    min-height: 24px;
    padding: 2px 3px;
    font-size: 2.6px;
  }
}

@media (max-width: 768px) {
  .hero {
    gap: 18px;
  }

  .hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tag {
    margin-bottom: 10px;
  }

  .hero-right {
    order: -1;
    margin-top: 0;
    margin-bottom: 4px;
  }

  .hero-left h1 {
    margin-bottom: 12px;
    font-size: clamp(26px, 6.8vw, 34px);
    text-wrap: balance;
    max-width: 13.5ch;
  }

  .hero-left p {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.7;
    text-wrap: pretty;
  }

  .hero-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .cta-button {
    min-width: min(100%, 310px);
    justify-content: center;
    padding: 16px 30px;
  }

  .mock-dash {
    width: min(62vw, 252px);
    max-width: 252px;
  }

  .mock-dash-body {
    min-height: 158px;
  }

  .mock-sidebar {
    width: 34px;
    padding-top: 8px;
    gap: 8px;
  }

  .mock-menu-item {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }

  .mock-content {
    padding: 8px;
    gap: 7px;
  }

  .mock-card {
    padding: 6px;
    border-radius: 9px;
  }

  .mock-card-title {
    font-size: 7px;
  }

  .mock-card-val {
    font-size: 11px;
  }

  .mock-chart {
    height: 38px;
    gap: 4px;
    padding: 4px;
    border-radius: 9px;
  }

  .mock-terminal {
    min-height: 43px;
    padding: 4px 5px;
    font-size: 4px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .hero {
    gap: 14px;
  }

  .hero-left h1 {
    font-size: clamp(23px, 7.8vw, 29px);
    max-width: 13ch;
  }

  .hero-left p {
    max-width: 30ch;
    font-size: 14px;
  }

  .hero-cta {
    margin-top: 16px;
  }

  .cta-button {
    min-width: min(100%, 292px);
    padding: 15px 24px;
    font-size: 15px;
  }

  .mock-dash {
    width: min(58vw, 220px);
    max-width: 220px;
  }

  .mock-dash-header {
    height: 30px;
    padding: 0 8px;
  }

  .mock-dots {
    gap: 4px;
  }

  .mock-dots span {
    width: 8px;
    height: 8px;
  }

  .mock-title {
    font-size: 7px;
    letter-spacing: 0.2px;
  }

  .mock-dash-body {
    min-height: 138px;
  }

  .mock-sidebar {
    width: 30px;
    padding-top: 7px;
    gap: 6px;
  }

  .mock-menu-item {
    width: 17px;
    height: 17px;
    border-radius: 5px;
  }

  .mock-content {
    padding: 6px;
    gap: 6px;
  }

  .mock-card {
    padding: 5px;
  }

  .mock-card-title {
    font-size: 5px;
    margin-bottom: 1px;
  }

  .mock-card-val {
    font-size: 9px;
  }

  .mock-chart {
    height: 32px;
    gap: 3px;
    padding: 4px;
  }

  .mock-terminal {
    min-height: 36px;
    padding: 3px 4px;
    font-size: 3px;
  }
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.8);
  color: #fff;
}

/* Stat Cards & Features Hover Effects */
.stat-card {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(124, 58, 237, 0.15) inset;
  border-color: rgba(124, 58, 237, 0.3);
}

.feature-item {
  transition: transform 0.3s, background 0.3s;
  padding: 10px;
  border-radius: 16px;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.feature-item:hover .feature-icon {
  animation: bounceIcon 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px currentColor;
  /* uses the inherited color from svgs */
}

@keyframes bounceIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Mock Dashboard CSS */
.mock-dash {
  width: 100%;
  max-width: 500px;
  background: rgba(15, 15, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.2);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s;
}

.mock-dash:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.mock-dash-header {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) {
  background: #ff5f56;
}

.mock-dots span:nth-child(2) {
  background: #ffbd2e;
}

.mock-dots span:nth-child(3) {
  background: #27c93f;
}

.mock-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.mock-dash-body {
  display: flex;
  height: 320px;
}

.mock-sidebar {
  width: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  gap: 16px;
}

.mock-menu-item {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.mock-menu-item.active {
  background: var(--accent-gradient-btn);
  box-shadow: 0 0 15px var(--accent-glow);
}

.mock-menu-item.mt {
  margin-top: auto;
  margin-bottom: 20px;
}

.mock-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mock-top-cards {
  display: flex;
  gap: 12px;
}

.mock-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
}

.mock-card-title {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mock-card-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.mock-card-val.mock-green {
  color: var(--green);
}

.mock-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.mock-chart-bar {
  flex: 1;
  background: rgba(124, 58, 237, 0.5);
  border-radius: 4px 4px 0 0;
  animation: barGrow 2s ease-out;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.mock-terminal {
  flex: 1;
  background: #000;
  border-radius: 8px;
  padding: 12px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  color: #a5a5c8;
  line-height: 1.6;
}

.mock-float {
  position: absolute;
  background: rgba(20, 20, 30, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.mock-float-1 {
  top: 40px;
  right: -20px;
  animation: float1 6s ease-in-out infinite;
}

.mock-float-2 {
  bottom: 50px;
  left: -30px;
  animation: float2 5s ease-in-out infinite alternate;
}

.mock-guild-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient-btn);
  border-radius: 50%;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-secondary-link:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

.cta-button {
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .hero {
    position: relative;
    display: block;
    margin-bottom: 36px;
    padding: 18px 18px 20px;
    border-radius: 28px;
    border: 1px solid rgba(139, 92, 246, 0.18);
    background:
      radial-gradient(circle at 72% 18%, rgba(124, 58, 237, 0.26), transparent 40%),
      linear-gradient(135deg, rgba(18, 21, 44, 0.96), rgba(10, 11, 27, 0.99));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    text-align: left;
    gap: 0;
  }

  .hero::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -18px;
    height: 38px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.2);
    filter: blur(28px);
    pointer-events: none;
  }

  .hero-left {
    position: relative;
    z-index: 1;
    max-width: none;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-tag {
    order: 0;
    align-self: flex-start;
    margin: 0 0 12px;
    padding: 6px 10px;
    gap: 6px;
    font-size: 10px;
    color: #c4b5fd;
    background: rgba(124, 58, 237, 0.16);
    border-color: rgba(139, 92, 246, 0.28);
  }

  .hero-tag svg {
    width: 12px;
    height: 12px;
  }

  .hero-left h1 {
    order: 1;
    margin: 0 0 10px;
    max-width: 9.5ch;
    font-size: clamp(28px, 7.4vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .hero-left p {
    order: 2;
    margin: 0;
    max-width: 34ch;
    font-size: 12.5px;
    line-height: 1.55;
    text-align: left;
    color: rgba(228, 231, 255, 0.76);
  }

  .hero-actions {
    order: 3;
    gap: 12px 16px;
    margin-top: 16px;
  }

  .cta-button {
    width: auto;
    max-width: none;
    min-width: 132px;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.38);
  }

  .hero-secondary-link {
    font-size: 12px;
    color: rgba(228, 231, 255, 0.84);
  }

  .hero-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 18px 0 0;
    min-width: 0;
    min-height: 0;
    justify-content: center;
    align-items: stretch;
  }

  .mock-dash {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 18px;
    background: rgba(11, 13, 28, 0.92);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46), 0 0 28px rgba(124, 58, 237, 0.18);
    transform: none;
  }

  .mock-dash:hover {
    transform: translateY(-4px);
  }

  .mock-dash-header {
    height: 30px;
    padding: 0 10px;
  }

  .mock-dots {
    gap: 4px;
  }

  .mock-dots span {
    width: 7px;
    height: 7px;
  }

  .mock-title {
    font-size: 5.5px;
    letter-spacing: 0.4px;
  }

  .mock-dash-body {
    height: auto;
    min-height: 156px;
  }

  .mock-sidebar {
    width: 34px;
    padding-top: 8px;
    gap: 6px;
  }

  .mock-menu-item {
    width: 16px;
    height: 16px;
    border-radius: 5px;
  }

  .mock-menu-item.mt {
    margin-bottom: 8px;
  }

  .mock-content {
    padding: 6px;
    gap: 6px;
  }

  .mock-top-cards {
    gap: 5px;
  }

  .mock-card {
    padding: 5px;
    border-radius: 7px;
  }

  .mock-card-title {
    font-size: 3.6px;
    margin-bottom: 2px;
  }

  .mock-card-val {
    font-size: 6.6px;
  }

  .mock-chart {
    height: 28px;
    gap: 3px;
    padding: 4px;
    border-radius: 7px;
  }

  .mock-terminal {
    min-height: 30px;
    padding: 4px;
    font-size: 3px;
    line-height: 1.3;
    border-radius: 7px;
  }

  .mock-terminal div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mock-float,
  .mock-float-1,
  .mock-float-2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    display: block;
    padding: 16px 15px 18px;
    border-radius: 24px;
  }

  .hero::before {
    left: 14px;
    right: 14px;
    bottom: -16px;
  }

  .hero-left h1 {
    max-width: 8.5ch;
    font-size: clamp(24px, 8.1vw, 31px);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .hero-left p {
    max-width: 28ch;
    font-size: 11px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px 12px;
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .cta-button {
    min-width: 116px;
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
    gap: 8px;
  }

  .cta-button .btn-text {
    white-space: nowrap;
  }

  .hero-secondary-link {
    white-space: nowrap;
    font-size: 11px;
  }

  .hero-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 16px 0 0;
    justify-content: center;
    align-items: stretch;
  }

  .mock-dash {
    width: 100%;
    max-width: none;
    margin-left: 0;
    transform: none;
    border-radius: 18px;
    border-color: rgba(167, 139, 250, 0.18);
    box-shadow: 0 16px 32px rgba(4, 6, 16, 0.55), 0 0 24px rgba(124, 58, 237, 0.2);
  }

  .mock-dash:hover {
    transform: translateY(-4px);
  }

  .mock-dash-header {
    height: 30px;
    padding: 0 10px;
  }

  .mock-dots span {
    width: 7px;
    height: 7px;
  }

  .mock-title {
    font-size: 5.5px;
  }

  .mock-dash-body {
    min-height: 140px;
  }

  .mock-sidebar {
    width: 30px;
    padding-top: 8px;
    gap: 5px;
  }

  .mock-menu-item {
    width: 14px;
    height: 14px;
    border-radius: 5px;
  }

  .mock-content {
    padding: 6px;
    gap: 5px;
  }

  .mock-card {
    padding: 4px;
    border-radius: 6px;
  }

  .mock-card-title {
    font-size: 3.5px;
  }

  .mock-card-val {
    font-size: 6.4px;
  }

  .mock-chart {
    height: 26px;
    padding: 4px;
    border-radius: 6px;
  }

  .mock-terminal {
    min-height: 28px;
    padding: 4px;
    font-size: 2.8px;
    border-radius: 6px;
  }
}

@media (max-width: 1024px) {
  .hero {
    display: block;
    padding-right: 18px;
  }

  .hero-left h1 {
    max-width: 10ch;
  }

  .hero-left p {
    max-width: 32ch;
  }

  .hero-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 18px;
    justify-content: center;
    align-items: stretch;
  }

  .mock-dash {
    width: 100%;
    max-width: none;
    margin-left: 0;
    transform: none;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46), 0 0 28px rgba(124, 58, 237, 0.18);
  }

  .mock-dash:hover {
    transform: translateY(-4px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero {
    display: block;
    padding-right: 18px;
  }

  .hero-left h1 {
    max-width: 8.8ch;
  }

  .hero-left p {
    max-width: 30ch;
  }

  .hero-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 18px;
    justify-content: center;
    align-items: stretch;
  }

  .mock-dash {
    width: 100%;
    max-width: none;
    margin-left: 0;
    transform: none;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46), 0 0 28px rgba(124, 58, 237, 0.18);
  }

  .mock-dash:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 540px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(154px, 45vw, 172px);
    align-items: stretch;
    gap: 10px;
    padding: 16px 14px 18px;
    padding-right: 14px;
  }

  .hero-left {
    min-width: 0;
  }

  .hero-left h1 {
    max-width: 6.2ch;
    font-size: clamp(22px, 8vw, 31px);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .hero-left p {
    max-width: 14.5ch;
    font-size: 11px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px 12px;
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .cta-button {
    min-width: 116px;
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-secondary-link {
    font-size: 10.5px;
  }

  .hero-right {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 0;
    min-width: 0;
    align-self: stretch;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
  }

  .mock-dash {
    width: 100%;
    max-width: none;
    min-height: 228px;
    height: 100%;
    margin: 0;
    border-radius: 16px;
    transform: none;
    display: flex;
    flex-direction: column;
    border-color: rgba(167, 139, 250, 0.2);
    box-shadow: 0 18px 34px rgba(5, 8, 22, 0.52), 0 0 26px rgba(124, 58, 237, 0.18);
  }

  .mock-dash:hover {
    transform: translateY(-4px);
  }

  .mock-dash-header {
    height: 22px;
    padding: 0 8px;
  }

  .mock-dots span {
    width: 6px;
    height: 6px;
  }

  .mock-title {
    display: none;
  }

  .mock-dash-body {
    flex: 1;
    min-height: 204px;
  }

  .mock-sidebar {
    width: 20px;
    padding-top: 6px;
    gap: 7px;
  }

  .mock-menu-item {
    width: 10px;
    height: 10px;
    border-radius: 4px;
  }

  .mock-sidebar .mock-menu-item:nth-child(3) {
    display: none;
  }

  .mock-menu-item.mt {
    margin-top: auto;
    margin-bottom: 10px;
  }

  .mock-content {
    padding: 6px;
    gap: 6px;
  }

  .mock-top-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .mock-card {
    min-height: 40px;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mock-card-title {
    font-size: 4.4px;
    margin-bottom: 2px;
  }

  .mock-card-val {
    font-size: 8.4px;
  }

  .mock-top-cards .mock-card:nth-child(3) {
    display: none;
  }

  .mock-chart {
    display: none;
  }

  .mock-terminal {
    min-height: 88px;
    padding: 7px 6px;
    font-size: 4.4px;
    line-height: 1.35;
    border-radius: 7px;
    background: rgba(4, 6, 14, 0.94);
    border: 1px solid rgba(34, 211, 238, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .mock-terminal div {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .mock-terminal .mock-log-line {
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .mock-terminal .mock-log-line span {
    font-weight: 800;
  }

  .mock-terminal .mock-log-line-sync {
    font-size: 1.22em;
    font-weight: 800;
    color: var(--text-primary);
  }

  .mock-terminal div:nth-child(3) {
    display: none;
  }

.mock-content::after {
    display: none;
  }
}

/* ===== Landing Page Layout Fixes ===== */
.landing-page {
  --landing-section-space: clamp(44px, 7vw, 72px);
}

.landing-page .header {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(8, 11, 26, 0.88), rgba(12, 16, 36, 0.82)),
    radial-gradient(circle at 16% 28%, rgba(34, 211, 238, 0.1), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(139, 92, 246, 0.14), transparent 34%);
  box-shadow: 0 20px 42px rgba(3, 7, 20, 0.38), 0 0 24px rgba(124, 58, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: visible;
}

.landing-page .header-logo {
  min-width: 0;
  gap: 10px;
  color: var(--text-primary);
}

.landing-page .logo-icon {
  flex: 0 0 auto;
}

.landing-page .header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: nowrap;
  min-width: 0;
}

.landing-page .header-menu-toggle {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.landing-page .header-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.landing-page .header-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(180px, calc(100vw - 32px));
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.18);
  background: rgba(9, 13, 28, 0.96);
  box-shadow: 0 24px 48px rgba(3, 7, 20, 0.42);
  display: grid;
  gap: 6px;
  z-index: 120;
  backdrop-filter: blur(16px);
}

.landing-page .header-menu-panel[hidden] {
  display: none !important;
}

.landing-page .header-menu-link,
.landing-page .header-menu-theme {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.landing-page .header-theme-toggle {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  padding: 0 !important;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  pointer-events: auto !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.landing-page .header-theme-toggle svg {
  width: 16px !important;
  height: 16px !important;
  stroke: rgba(255, 255, 255, 0.8) !important;
  fill: none !important;
}

.landing-page .header-theme-toggle:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.landing-page .header-theme-toggle:hover svg {
  stroke: rgba(255, 255, 255, 1) !important;
}

[data-theme="light"] .landing-page .header-theme-toggle {
  color: rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .landing-page .header-theme-toggle svg {
  stroke: rgba(0, 0, 0, 0.7) !important;
}

[data-theme="light"] .landing-page .header-theme-toggle:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: rgba(0, 0, 0, 0.8) !important;
}

[data-theme="light"] .landing-page .header-theme-toggle:hover svg {
  stroke: rgba(0, 0, 0, 0.9) !important;
}

.landing-page .header-menu-link:hover,
.landing-page .header-menu-theme:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.landing-page .header-menu-link.is-active {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.2);
}

.landing-page .header-menu-theme-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.landing-page .header-login-btn {
  min-height: 40px;
  padding: 10px 16px;
  flex-shrink: 0;
}

.landing-page .logo-text {
  color: var(--text-primary);
}

.landing-page .header-user-area {
  display: flex;
  align-items: center;
  gap: 8px !important;
}

.landing-page #headerWalletChip,
.landing-page #headerBell {
  display: none !important;
}

.landing-page #headerAvatar {
  width: 38px !important;
  height: 38px !important;
}

[data-theme="light"] .landing-page .header {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 247, 255, 0.94)),
    radial-gradient(circle at 15% 30%, rgba(34, 211, 238, 0.08), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(124, 58, 237, 0.1), transparent 36%);
  border-color: rgba(124, 58, 237, 0.14);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .landing-page .header-logo,
[data-theme="light"] .landing-page .logo-text {
  color: #1a1a2e;
}

[data-theme="light"] .landing-page .header-menu-toggle {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.12);
}

[data-theme="light"] .landing-page .header-menu-panel {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(124, 58, 237, 0.14);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

[data-theme="light"] .landing-page .header-menu-link:hover,
[data-theme="light"] .landing-page .header-menu-theme:hover {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.1);
}

[data-theme="light"] .landing-page .header-menu-link.is-active {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.12);
}

@media (max-width: 768px) {
  .landing-page .header {
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .landing-page .logo-text {
    font-size: 14px;
    line-height: 1.05;
  }

  .landing-page .logo-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .landing-page .header-menu-toggle,
  .landing-page .header-login-btn,
  .landing-page #headerAvatar {
    min-height: 36px;
    height: 36px !important;
  }

  .landing-page .header-menu-toggle {
    width: 36px !important;
    min-width: 36px;
  }

  .landing-page .header-theme-toggle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    min-height: 36px;
  }

  .landing-page .header-login-btn {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .landing-page .header-menu-panel {
    top: calc(100% + 8px);
    width: min(160px, calc(100vw - 24px));
    padding: 8px;
    gap: 4px;
  }

  .landing-page .header-menu-link,
  .landing-page .header-menu-theme {
    min-height: 36px;
    padding: 8px 8px;
    gap: 8px;
    font-size: 12px;
    width: 100%;
    justify-content: space-between;
  }

  .landing-page .header-menu-theme > span:first-child {
    display: block;
  }
}

@media (max-width: 480px) {
  .landing-page .header {
    left: 10px;
    right: 10px;
    padding: 8px 10px;
    gap: 8px;
  }

  .landing-page .header-logo {
    gap: 8px;
  }

  .landing-page .logo-text {
    font-size: 12px;
    letter-spacing: -0.03em;
  }

  .landing-page .logo-text span {
    font-size: 12px;
  }

  .landing-page .logo-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .landing-page .header-menu-toggle,
  .landing-page #headerAvatar {
    width: 34px !important;
    min-width: 34px;
    height: 34px !important;
  }

  .landing-page .header-theme-toggle {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px;
    min-height: 34px;
  }

  .landing-page .header-login-btn {
    min-height: 34px;
    padding: 7px 10px !important;
    font-size: 10.5px !important;
  }

  .landing-page .header-menu-panel {
    padding: 6px;
    gap: 4px;
  }

  .landing-page .header-menu-link,
  .landing-page .header-menu-theme {
    min-height: 32px;
    padding: 6px 8px;
    gap: 6px;
    font-size: 11px;
  }
}

.landing-page .reveal {
  opacity: 1;
  transform: none;
}

html.js-reveal .landing-page .reveal {
  opacity: 0;
  transform: translateY(28px);
}

html.js-reveal .landing-page .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.landing-page .hero,
.landing-page .stats-section,
.landing-page .features-banner,
.landing-page .feedback-section,
.landing-page .contact-section,
.landing-page .faq-section {
  margin-bottom: var(--landing-section-space);
}

.landing-page .stats-section {
  gap: 14px;
}

.landing-page .stat-card {
  min-height: 108px;
}

.landing-page .section-header {
  margin-bottom: clamp(20px, 4vw, 30px);
}

.landing-page .contact-flow-note {
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.landing-page .contact-flow-note a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
}

.landing-page .contact-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.landing-page .contact-btn {
  min-width: 0;
  min-height: 84px;
  padding: 16px 20px;
}

.landing-page .contact-btn.is-coming-soon {
  cursor: default;
  opacity: 0.88;
}

.landing-page .contact-btn.is-coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.landing-page .contact-note {
  max-width: 100%;
  border-radius: 14px;
}

.landing-page .contact-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.landing-page .review-date {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
}

.landing-page .faq-section,
.landing-page .uptime-section {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.landing-page .uptime-section {
  margin-bottom: clamp(36px, 6vw, 52px);
}

.landing-page .trust-strip {
  padding: 16px 0;
}

.landing-page .trust-inner {
  gap: 20px;
}

.landing-page .footer-v2-top {
  gap: 32px;
  padding: 38px 28px 28px;
}

.landing-page .footer-cols {
  gap: 32px;
}

.landing-page .footer-v2-bottom {
  padding: 16px 28px 20px;
}

@media (max-width: 768px) {
  .landing-page .main {
    padding: 136px 16px 48px;
  }

  .landing-page .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(152px, 36vw, 198px) !important;
    align-items: start !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
  }

  .landing-page .hero-left {
    max-width: none !important;
    align-items: flex-start !important;
  }

  .landing-page .hero-left h1 {
    max-width: none !important;
    margin-bottom: 12px !important;
    font-size: clamp(20px, 5vw, 26px) !important;
    line-height: 1.12 !important;
    color: #f3f0ff !important;
  }

  .landing-page .hero-left h1 .hero-title-copy {
    color: #f3f0ff !important;
    -webkit-text-fill-color: #f3f0ff;
  }

  .landing-page .hero-left h1 .gradient-text {
    color: var(--accent-2) !important;
    background: none !important;
    -webkit-text-fill-color: var(--accent-2) !important;
  }

  [data-theme="light"] .landing-page .hero-left h1 .gradient-text {
    color: #7c3aed !important;
    background: none !important;
    -webkit-text-fill-color: #7c3aed !important;
  }

  .landing-page .hero-left p {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
    text-align: left !important;
  }

  .landing-page .hero-actions {
    width: 100% !important;
    margin-top: 14px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  .landing-page .cta-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  .landing-page .hero-secondary-link {
    justify-content: flex-start;
    min-height: 28px;
    font-size: 12px !important;
  }

  .landing-page .hero-right {
    width: auto !important;
    margin: 0 !important;
    min-width: 0 !important;
    justify-content: flex-end !important;
    align-self: start !important;
  }

  .landing-page .mock-dash {
    width: clamp(152px, 36vw, 198px) !important;
    max-width: clamp(152px, 36vw, 198px) !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: linear-gradient(180deg, rgba(10, 15, 33, 0.98), rgba(11, 20, 43, 0.96)) !important;
    box-shadow: 0 18px 34px rgba(3, 8, 22, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  }

  .landing-page .mock-dash-body {
    display: block !important;
    min-height: auto !important;
  }

  .landing-page .mock-sidebar {
    display: none !important;
  }

  .landing-page .mock-dash-header {
    height: auto !important;
    padding: 10px 10px 0 !important;
    background: transparent !important;
    border-bottom: none !important;
  }

  .landing-page .mock-dash-header::after {
    content: "LIVE";
    margin-left: auto;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(34, 211, 238, 0.82);
  }

  .landing-page .mock-dots span {
    width: 6px !important;
    height: 6px !important;
  }

  .landing-page .mock-title {
    display: none !important;
  }

  .landing-page .mock-content {
    padding: 10px !important;
    gap: 8px !important;
  }

  .landing-page .mock-top-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .landing-page .mock-card {
    padding: 9px 10px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .landing-page .mock-top-cards .mock-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.14), rgba(255, 255, 255, 0.03)) !important;
    border-color: rgba(34, 211, 238, 0.18) !important;
  }

  .landing-page .mock-top-cards .mock-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.12), rgba(255, 255, 255, 0.03)) !important;
    border-color: rgba(52, 211, 153, 0.16) !important;
  }

  .landing-page .mock-card-title {
    font-size: 6px !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.12em !important;
  }

  .landing-page .mock-card-val {
    font-size: 12px !important;
    line-height: 1.1 !important;
  }

  .landing-page .mock-terminal {
    min-height: auto !important;
    padding: 7px 9px !important;
    font-size: 7px !important;
    line-height: 1.4 !important;
    border-radius: 999px !important;
    background: rgba(34, 211, 238, 0.08) !important;
    border: 1px solid rgba(34, 211, 238, 0.14) !important;
  }

  .landing-page .mock-top-cards .mock-card:nth-child(1) .mock-card-title::before {
    content: "● ";
    color: var(--cyan);
  }

  .landing-page .mock-top-cards .mock-card:nth-child(2) .mock-card-title::before {
    content: "● ";
    color: var(--green);
  }

  .landing-page .mock-top-cards .mock-card:nth-child(3) {
    display: none !important;
  }

  .landing-page .mock-chart {
    display: flex !important;
    height: 34px !important;
    gap: 4px !important;
    padding: 6px !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)) !important;
  }

  .landing-page .mock-chart-bar:nth-child(n+5) {
    display: none !important;
  }

  .landing-page .mock-terminal .mock-log-line:first-child,
  .landing-page .mock-terminal .mock-log-line:nth-child(3) {
    display: none !important;
  }

  .landing-page .mock-terminal .mock-log-line-sync {
    font-size: 7px !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    letter-spacing: 0.04em !important;
  }

  .landing-page .mock-terminal .mock-log-line-sync span {
    font-size: 6px !important;
  }

  .landing-page .stats-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 40px;
  }

  .landing-page .stat-card {
    min-height: 104px;
    padding: 16px 14px;
  }

  .landing-page .features-banner,
  .landing-page .feedback-section,
  .landing-page .contact-section,
  .landing-page .faq-section {
    margin-bottom: 40px;
  }

  .landing-page .features-banner {
    padding: 14px;
    gap: 12px;
  }

  .landing-page .feature-item {
    min-height: 86px;
  }

  .landing-page .review-content {
    font-size: 15px;
  }

  .landing-page .contact-card {
    padding: 24px 18px;
  }

  .landing-page .contact-buttons {
    grid-template-columns: 1fr;
  }

  .landing-page .contact-btn {
    min-height: 78px;
    padding: 14px 16px;
  }

  .landing-page .contact-note {
    display: flex;
    width: 100%;
  }

  .landing-page .uptime-cards {
    gap: 14px;
  }

  .landing-page .uptime-card {
    padding: 20px 16px;
  }

  .landing-page .trust-strip {
    padding: 16px 0;
  }

  .landing-page .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 16px;
  }

  .landing-page .trust-item {
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    width: auto;
  }

  .landing-page .trust-item svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
  }

  .landing-page .trust-title {
    font-size: 14px;
  }

  .landing-page .trust-sub {
    font-size: 12px;
  }

  .landing-page .footer-v2-top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 16px 16px;
  }

  .landing-page .footer-brand-desc {
    max-width: none;
    font-size: 13px;
  }

  .landing-page .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .landing-page .footer-v2-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px 16px;
  }
}

@media (max-width: 480px) {
  .landing-page .uptime-section {
    margin-bottom: 32px;
  }

  .landing-page .main {
    padding: 124px 12px 32px;
  }

  .landing-page .hero-left h1 {
    font-size: clamp(22px, 7vw, 29px) !important;
    color: #f3f0ff !important;
  }

  .landing-page .hero-left h1 .hero-title-copy {
    color: #f3f0ff !important;
    -webkit-text-fill-color: #f3f0ff;
  }

  .landing-page .hero-left h1 .gradient-text {
    color: var(--accent-2) !important;
    background: none !important;
    -webkit-text-fill-color: var(--accent-2) !important;
  }

  [data-theme="light"] .landing-page .hero-left h1 .gradient-text {
    color: #7c3aed !important;
    background: none !important;
    -webkit-text-fill-color: #7c3aed !important;
  }

  .landing-page .hero {
    grid-template-columns: minmax(0, 1fr) 132px !important;
    gap: 10px !important;
  }

  .landing-page .hero-left p,
  .landing-page .contact-desc,
  .landing-page .contact-flow-note {
    font-size: 13px !important;
  }

  .landing-page .hero-secondary-link {
    font-size: 12px !important;
  }

  .landing-page .mock-dash-body {
    min-height: auto !important;
  }

  .landing-page .mock-top-cards {
    grid-template-columns: 1fr !important;
  }

  .landing-page .mock-card-title {
    font-size: 5px !important;
  }

  .landing-page .mock-card-val {
    font-size: 10px !important;
  }

  .landing-page .mock-terminal {
    padding: 6px 7px !important;
    font-size: 6px !important;
  }

  .landing-page .mock-dash {
    width: 132px !important;
    max-width: 132px !important;
    border-radius: 18px !important;
  }

  .landing-page .mock-chart {
    height: 28px !important;
    gap: 2px !important;
    padding: 3px !important;
  }

  .landing-page .mock-terminal .mock-log-line-sync {
    font-size: 6px !important;
  }

  .landing-page .mock-terminal .mock-log-line-sync span {
    font-size: 5px !important;
  }

  .landing-page .trust-item {
    width: 100%;
    font-size: 13px;
  }

  .landing-page .trust-title {
    font-size: 13px;
  }

  .landing-page .trust-sub {
    font-size: 12px;
  }

  .landing-page .footer-col-title {
    font-size: 10px;
  }

  .landing-page .footer-col-link {
    font-size: 13px;
  }

  .landing-page .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
