

:root {
  --neon-blue: rgb(50, 49, 196);
  --neon-blue-dim: rgb(50, 49, 196);
  --neon-blue-dark: rgb(50, 49, 196);
  
  
  --bg-black: #000000;
  --bg-dark: #030508;
  --bg-card: #070d14;
  --bg-card-border: #0a1929;
  --text-primary: #f0f8ff;
  --text-secondary: #8bb8cc;
  --text-muted: #3a6070;
  --gradient-blue: linear-gradient(135deg, rgb(45, 45, 209) 0%, rgba(34, 34, 201, 0.8) 50%, rgba(44, 44, 213, 0.4) 100%);
  --gradient-text: rgba(22, 58, 218, 0.944);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --font-head: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 14.4px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: #000;
  color: var(--text-primary);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
  zoom: 100%;
}

#liquid-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  animation: liquidBreathe 9s ease-in-out infinite;
}

@keyframes liquidBreathe {

  0%,
  100% {
    opacity: 0.75;
  }

  50% {
    opacity: 1;
  }
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-blue-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue);
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: transparent;
  border: none;
  outline: none;
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  max-width: 1500px;
  margin: 0 auto;
  gap: 16px;
  min-width: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-text {
  color: var(--text-primary);
}

.logo-accent {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s linear infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 12, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 10px 20px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  flex-shrink: 1;
  min-width: 0;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 14px;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  background: rgb(50, 49, 196);
  color: #fff;
  border-radius: 100px;
  border: 1px solid rgba(100, 180, 255, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 0 24px rgba(0, 120, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-cta:hover {
  box-shadow: 0 0 40px rgba(0, 120, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-cta-mobile {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--neon-blue);
  transition: var(--transition);
  box-shadow: 0 0 6px var(--neon-glow);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.30) 40%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 200px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
  animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  font-size: 75%;
}

.hero-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
}

.hero-left {
  max-width: 480px;
  flex-shrink: 0;
}

.hero-right {
  max-width: 400px;
  flex-shrink: 0;
  padding-left: 40px;
  border-left: 1px solid rgba(0, 212, 255, 0.15);
  animation: heroEntrance 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.title-line {
  display: block;
}

.gradient-text {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s linear infinite;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.neon-highlight {
  color: rgb(50, 49, 196);
  text-shadow: 0 0 10px var(--neon-glow);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: rgb(50, 49, 196);
  color: #fff;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--neon-glow-strong), 0 0 60px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn-ghost:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px;
}

.stat-chip:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-shadow: 0 0 15px var(--neon-glow);
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 212, 255, 0.2);
}

.scroll-indicator {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  animation: fadeInUp 1s 1.5s both;
  transition: opacity 0.4s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-black);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-bg-glow {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-left] {
  opacity: 0;
  transform: translateX(-50px) scale(0.97);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-right] {
  opacity: 0;
  transform: translateX(50px) scale(0.97);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-scale] {
  opacity: 0;
  transform: scale(0.82);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed,
[data-reveal-left].revealed,
[data-reveal-right].revealed,
[data-reveal-scale].revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.about-section {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.about-card:hover {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-6px);
}

.about-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--neon-blue);
}

.about-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.about-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hiw-section {
  background: transparent;
}

.steps-container {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-line {
  position: absolute;
  left: 38px;
  top: 60px;
  bottom: 60px;
  width: 1px;
  background: black;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 40px 0;
  position: relative;
}

.step-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--neon-blue);
  width: 76px;
  height: 76px;
  min-width: 76px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 18px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.plans-section {
  background: transparent;
  scroll-behavior: auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 44px 36px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: linear-gradient(145deg, #070d14, #0a1929);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.12);
}

.plan-badge-featured {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgb(50, 49, 196);
  color: #fff;
  padding: 6px 18px;
  border-radius: 0 var(--radius) 0 var(--radius);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1);
}

.plan-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.plan-tier {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 12px;
}

.plan-capital {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plan-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 32px;
}

.plan-price span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.check {
  color: var(--neon-blue);
  font-weight: 700;
  text-shadow: 0 0 8px var(--neon-glow);
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--neon-blue);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.plan-card.featured .btn-plan {
  background: rgb(50, 49, 196);
  color: #fff;
  border-color: transparent;
}

.btn-plan:hover {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 0 20px var(--neon-glow);
}

.stats-section {
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-block {
  background: var(--bg-dark);
  padding: 60px 40px;
  text-align: center;
  transition: background var(--transition);
}

.stat-block:hover {
  background: #070d14;
}

.stat-value {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--neon-blue);
  text-shadow: 0 0 30px var(--neon-glow);
  margin-bottom: 10px;
  min-height: 1.2em;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.parallax-divider {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.divider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.divider-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.divider-content p {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-section {
  background: transparent;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 6px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 40px;
  background: rgb(50, 49, 196);
  color: #fff;
  border-radius: 6px;
  transition: box-shadow var(--transition), transform var(--transition);
  align-self: flex-start;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

.btn-submit:hover {
  box-shadow: 0 0 30px var(--neon-glow-strong);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--neon-blue);
}

.info-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.footer {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
  padding: 80px 0 30px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  color: var(--text-muted);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--neon-blue);
}

.footer-col ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@keyframes textShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 6px var(--neon-blue);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 14px var(--neon-blue), 0 0 24px var(--neon-blue);
    opacity: 0.7;
  }
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.ticker-bar {
  background: #000;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border-right: 1px solid rgba(0, 212, 255, 0.08);
}

.ticker-pair {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.ticker-price {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--neon-blue);
}

.ticker-change {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
}

.ticker-change.positive {
  color: #00ff88;
}

.ticker-change.negative {
  color: #ff4466;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.how-to-use-section {
  background: transparent;
  padding: 60px 0;
  min-height: 420px;
}

.how-to-use-glow {
  width: 500px;
  height: 500px;
  background: rgba(0, 180, 255, 0.1);
  top: -100px;
  right: -150px;
}

.how-to-use-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.how-to-use-left .section-tag {
  display: inline-block;
  margin-bottom: 20px;
}

.how-to-use-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  margin-top: 16px;
}

.how-to-use-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.htu-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.htu-step:hover {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.07), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.htu-step-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--neon-blue);
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.1);
}

.htu-step h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.htu-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.how-to-use-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: #0a0f1a;
  border: 2px solid rgba(0, 212, 255, 0.35);
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 20px;
  box-shadow:
    0 0 0 6px rgba(0, 212, 255, 0.06),
    0 0 40px rgba(0, 212, 255, 0.15),
    0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  gap: 14px;
}

.phone-speaker {
  width: 60px;
  height: 5px;
  background: rgba(0, 212, 255, 0.25);
  border-radius: 3px;
  flex-shrink: 0;
}

.phone-screen {
  flex: 1;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.phone-screen iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.phone-home-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.25);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .how-to-use-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .htu-step {
    text-align: left;
  }

  .how-to-use-right {
    margin-top: 20px;
  }
}

.highlights-section {
  background: transparent;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-section {
  background: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.why-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
  transform: translateY(-6px);
}

.why-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.12);
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--neon-blue);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-cta-row,
.plans-cta-row {
  text-align: center;
  position: relative;
  z-index: 1;
}

.plans-cta-row {
  margin-top: 50px;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.plan-tab {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--bg-card-border);
  border-radius: 6px;
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: all var(--transition);
  cursor: pointer;
}

.plan-tab:hover {
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--neon-blue);
}

.plan-tab.active {
  background: rgb(50, 49, 196);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px var(--neon-glow);
}

@property --pgt-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.plan-glass-wrap {
  position: relative;
  border-radius: 22px;
  padding: 1.5px;
  background: conic-gradient(from var(--pgt-angle),
      transparent 0deg,
      rgba(0, 212, 255, 0.9) 60deg,
      rgba(0, 80, 200, 0.5) 120deg,
      transparent 180deg,
      rgba(0, 212, 255, 0.6) 240deg,
      transparent 300deg,
      transparent 360deg);
  animation: pgtSpin 12s linear infinite;
  overflow: visible;
  scrollbar-width: none;
}

.plan-glass-inner {
  position: relative;
  z-index: 1;
  border-radius: 21px;
  background: rgba(6, 14, 28, 0.72);
  backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  overflow: hidden;
  box-shadow:
    0 8px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  min-width: unset;
  width: 100%;
}

.plan-glass-wrap::-webkit-scrollbar {
  display: none;
}

@keyframes pgtSpin {
  to {
    --pgt-angle: 360deg;
  }
}

.plan-glass-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: inherit;
  filter: blur(10px);
  opacity: 0.2;
  z-index: 0;
  animation: pgtGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pgtGlow {

  0%,
  100% {
    opacity: 0.12;
  }

  50% {
    opacity: 0.28;
  }
}

.plan-glass-inner {
  position: relative;
  z-index: 1;
  border-radius: 21px;
  background: rgba(6, 14, 28, 0.72);
  backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  overflow: hidden;
  box-shadow:
    0 8px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  min-width: 700px;
}

.plan-glass-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  z-index: 2;
}

.plan-table-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 12px 36px;
  border-radius: 100px;
  text-shadow: none;
  margin-top: 16px;
  margin-bottom: 44px;
}

.plan-glass-title {
  display: none;
}

.pgt-row {
  display: grid;
  grid-template-columns: 180px repeat(6, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.pgt-row:hover {
  background: rgba(0, 212, 255, 0.03);
}

.pgt-row-last {
  border-bottom: none;
}

.pgt-row-alt {
  background: rgba(0, 212, 255, 0.025);
}

.pgt-row-alt:hover {
  background: rgba(0, 212, 255, 0.05);
}

.pgt-head {
  background: rgba(0, 212, 255, 0.04);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.pgt-head .pgt-cell {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: none;
  padding: 20px 12px;
}

.pgt-head .pgt-label {
  color: var(--text-secondary);
  text-shadow: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.pgt-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.pgt-label {
  justify-content: flex-start;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-left: 28px;
  border-right: 1px solid rgba(0, 212, 255, 0.08);
}

.pgt-badge-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.18);
}

.pgt-badge-yes svg {
  width: 12px;
  height: 12px;
  stroke: #4ade80;
  stroke-width: 2.5;
}

@media (max-width: 900px) {
  .plan-glass-wrap {
    overflow-x: auto;
  }
}

.hero-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.hero-feat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.hero-feat-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.hero-feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.hero-feat-card span {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

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

.compare-section {
  background: transparent;
}

.compare-glow {
  width: 700px;
  height: 700px;
  background: rgba(0, 100, 200, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.compare-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 60px;
  letter-spacing: 0.04em;
}

@property --cg-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.compare-glass-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 1.5px;
  
  background: conic-gradient(from var(--cg-angle),
      transparent 0deg,
      rgba(0, 212, 255, 0.9) 60deg,
      rgba(0, 80, 200, 0.5) 120deg,
      transparent 180deg,
      rgba(0, 212, 255, 0.6) 240deg,
      transparent 300deg,
      transparent 360deg);
  animation: cgSpin 12s linear infinite;
}

@keyframes cgSpin {
  to {
    --cg-angle: 360deg;
  }
}

.compare-glass-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: inherit;
  filter: blur(10px);
  opacity: 0.25;
  z-index: 0;
  animation: cgGlowPulse 8s ease-in-out infinite;
}

@keyframes cgGlowPulse {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.35;
  }
}

.compare-glass-inner {
  position: relative;
  z-index: 1;
  border-radius: 21px;
  background: rgba(6, 14, 28, 0.72);
  backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  overflow: hidden;
  box-shadow:
    0 8px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.compare-glass-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  z-index: 2;
}

.cg-header-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  align-items: center;
  padding: 28px 36px 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  background: rgba(0, 212, 255, 0.025);
}

.cg-tff-badge {
  width: 42px;
  height: 42px;
  background: rgba(0, 100, 200, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 0 18px rgba(0, 150, 255, 0.35);
}

.cg-col-title {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  text-shadow: none;
}

.cg-others-bubbles {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 8px;
}

.cg-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cg-bubble svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.45);
}

.cg-others-title {
  color: rgba(255, 255, 255, 0.3);
  text-shadow: none;
  padding-top: 0;
}

.cg-header-row .cg-col-tff,
.cg-header-row .cg-col-others {
  flex-direction: column;
  height: auto;
  gap: 0;
}

.cg-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  align-items: center;
  padding: 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.cg-row:hover {
  background: rgba(0, 212, 255, 0.04);
}

.cg-row-last {
  border-bottom: none;
}

.cg-col-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 500;
  color: #ffffff;
  height: 64px;
}

.cg-col-label svg {
  width: 17px;
  height: 17px;
  stroke: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.cg-col-tff,
.cg-col-others {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 64px;
  gap: 7px;
}

.cg-label {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cg-label-yes {
  color: #4ade80;
}

.cg-label-no {
  color: #f87171;
}

.cg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}

.cg-badge svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

.cg-yes {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.18);
}

.cg-yes svg {
  stroke: #4ade80;
}

.cg-no {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.38);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.12);
}

.cg-no svg {
  stroke: #f87171;
}

.cg-row:hover .cg-yes {
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.35);
}

.cg-row:hover .cg-no {
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.28);
}

@media (max-width: 640px) {

  .cg-header-row,
  .cg-row {
    grid-template-columns: 1fr 72px 72px;
    padding: 0 16px;
  }

  .cg-header-row {
    padding: 20px 16px 14px;
  }

  .cg-others-bubbles .cg-bubble:not(:first-child) {
    display: none;
  }

  .cg-col-label {
    font-size: 0.78rem;
    gap: 8px;
    height: 56px;
  }

  .cg-col-tff,
  .cg-col-others {
    height: 56px;
  }

  .cg-col-label svg {
    display: none;
  }
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color var(--transition), transform var(--transition);
}

.about-stat:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-4px);
}

.about-stat-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: none;
  margin-bottom: 6px;
}

.about-stat-lbl {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 1100px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 1100px) {
  .nav-inner {
    padding: 14px 24px;
  }

  .nav-logo {
    font-size: 1rem;
    gap: 6px;
  }

  .nav-logo-img {
    height: 28px;
  }

  #navbar {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 44px;
    z-index: 10000;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .nav-links.open .nav-link {
    font-size: 1.4rem;
  }

  .hamburger {
    display: flex;
    z-index: 10001;
    position: relative;
    flex-shrink: 0;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: none;
  }

  .nav-links.open .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 16px 48px;
    background: rgb(50, 49, 196);
    color: #fff;
    border-radius: 100px;
    border: 1px solid rgba(100, 180, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 28px rgba(0, 120, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-top: 8px;
  }

  .nav-links.open .nav-cta-mobile:hover {
    box-shadow: 0 0 44px rgba(0, 120, 255, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 100px 20px 40px !important;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
  }

  .hero-split {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .hero-right {
    padding-left: 0;
    border-left: none;
  }

  .container {
    padding: 0 20px;
  }

  .plan-tabs {
    flex-wrap: wrap;
  }

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

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

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

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

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

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

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

  .about-stats-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    display: none;
  }

  .cta-headline {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .footer-grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .nav-inner {
    padding: 12px 16px;
  }
}

.why-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.4);
  transform: translateX(10px);
}

.why-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.1);
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.deco-chart-side {
  width: 100%;
  max-width: 520px;
  opacity: 0.9;
  animation: levitate 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 100, 200, 0.5));
}

@media (max-width: 1024px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-left .section-header {
    text-align: center !important;
  }

  .why-cta-row {
    text-align: center !important;
  }

  .why-card:hover {
    transform: translateY(-5px);
  }

  .deco-chart-side {
    max-width: 400px;
    margin-top: 50px;
  }
}

.deco-chart {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  animation: levitate 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 100, 200, 0.25));
}

.deco-chart-why {
  width: 280px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}

.deco-chart-cta {
  width: 240px;
  left: 40px;
  bottom: 80px;
  opacity: 0.7;
}

@keyframes levitate {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 18px));
  }
}

.deco-chart-cta {
  animation: levitateCta 4s ease-in-out infinite;
}

@keyframes levitateCta {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.deco-halo {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

.deco-halo-plans {
  width: 700px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.deco-halo-about {
  width: 600px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .deco-chart {
    display: none;
  }

  .deco-halo {
    width: 100%;
    opacity: 0.08;
  }
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.25), transparent 70%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 100, 255, 0.2), transparent 70%);
  top: 50%;
  right: -8%;
  animation-delay: -5s;
  animation-duration: 22s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
  animation-duration: 28s;
}

.orb-4 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 50, 150, 0.18), transparent 70%);
  top: 30%;
  left: 50%;
  animation-delay: -8s;
  animation-duration: 30s;
}

.orb-5 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.12), transparent 70%);
  bottom: 10%;
  right: 20%;
  animation-delay: -15s;
  animation-duration: 18s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -40px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(15px, 35px) scale(1.02);
  }
}

.cta-section {
  background: transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 0;
}

.cta-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 212, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(0, 100, 200, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(0, 150, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.cta-actions {
  margin-bottom: 60px;
}

.btn-large {
  padding: 20px 48px;
  font-size: 0.95rem;
}

.cta-community {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-community-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-community-links {
  display: flex;
  gap: 16px;
}

.community-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.community-link svg {
  width: 18px;
  height: 18px;
  fill: var(--neon-blue);
}

.community-link:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.long-footer {
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-gradient-shape {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.footer-grid-3 {
  grid-template-columns: 2fr 1fr 1fr;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  margin-bottom: 30px;
}

.footer-disclaimer h5 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 100%;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--neon-blue);
}

@media (max-width: 1100px) {
  .footer-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid-3 {
    grid-template-columns: 1fr;
  }

  .cta-community-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

.nav-logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.trader-stories-section {
  background: transparent;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.ts-inner {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  gap: 0;
}

.ts-left {
  flex: 0 0 300px;
  min-width: 260px;
  padding-right: 40px;
  z-index: 2;
}

.ts-headline {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 10px 0 14px;
}

.ts-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ts-dots {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.ts-dot.active {
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
  transform: scale(1.2);
}

.ts-track-wrap {
  flex: 1;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ts-track-wrap::-webkit-scrollbar {
  display: none;
}

.ts-track-wrap:active {
  cursor: grabbing;
}

.ts-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.ts-card {
  flex: 0 0 280px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.ts-video-wrap {
  width: 100%;
  aspect-ratio: 9/14;
  background: var(--bg-dark);
  position: relative;
}

.ts-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ts-card-info {
  padding: 14px 16px;
  background: var(--bg-card);
}

.ts-name {
  display: block;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ts-payout {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ts-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ts-arrow-prev {
  left: 10px;
}

.ts-arrow-next {
  right: 10px;
}

@media (max-width: 768px) {
  .ts-inner {
    flex-direction: column;
    padding: 0 16px;
  }

  .ts-left {
    flex: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .ts-track-wrap {
    width: 100%;
  }

  .ts-card {
    flex: 0 0 85vw;
    width: 85vw;
    scroll-snap-align: start;
  }

  .ts-video-wrap {
    aspect-ratio: 9/14;
  }

  .ts-arrow {
    display: none !important;
  }

  .ts-headline {
    font-size: 1.5rem;
  }
}

.ts-more-link {
  text-align: center;
  margin-top: 32px;
  width: 100%;
}

.ts-more-anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 184, 204, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.ts-more-anchor:hover {
  color: var(--text-primary);
  border-color: var(--neon-blue);
}

.ts-video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-video-wrap {
  position: relative;
}

@media (max-width: 768px) {
  .ts-more-link {
    margin-top: 20px;
    padding: 0 16px;
  }

  .ts-more-anchor {
    font-size: 0.9rem;
  }
}