/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #030303;
  --panel: #0d0d11;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f3f6;
  --text-muted: #8e8e9f;
  --accent: #5f3fe1;
  --accent-glow: rgba(95, 63, 225, 0.4);
  --blue: #3b82f6;
  --radius: 16px;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANIMATED ORBS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  left: -100px;
  top: -100px;
  animation: orb-float-1 25s infinite alternate ease-in-out;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  right: -100px;
  top: 100px;
  animation: orb-float-2 30s infinite alternate ease-in-out;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #a855f7;
  left: 30%;
  top: 50%;
  animation: orb-float-3 20s infinite alternate ease-in-out;
}

@keyframes orb-float-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 80px) scale(1.2); }
}

@keyframes orb-float-2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-120px, -50px) scale(0.9); }
}

@keyframes orb-float-3 {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(-50px, 120px) scale(1.1); }
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 24px 60px;
  z-index: 3;
}

.nav {
  width: 100%;
  max-width: 1080px;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
  margin-left: 2px;
}

.hero-content {
  max-width: 720px;
  text-align: center;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--text);
  color: var(--bg);
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.15);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(255, 255, 255, 0.25);
  background: #ffffff;
}

.hero-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-metrics {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  width: 100%;
  max-width: 800px;
  justify-content: center;
}

.metric {
  text-align: center;
}

.metric-val {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ===== INFO SECTION ===== */
.info {
  position: relative;
  padding: 100px 24px;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, rgba(13, 13, 17, 0.6));
}

.info-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.feat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.3s ease;
}

.feat:hover {
  border-color: rgba(95, 63, 225, 0.3);
  background: rgba(13, 13, 17, 0.8);
  transform: translateY(-4px);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(95, 63, 225, 0.1);
  border: 1px solid rgba(95, 63, 225, 0.2);
  color: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feat h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feat p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PLANS ROW ===== */
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-2px);
}

.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(95, 63, 225, 0.05) 0%, rgba(13, 13, 17, 1) 100%);
  box-shadow: 0 10px 40px rgba(95, 63, 225, 0.15);
}

.plan-tag {
  position: absolute;
  top: -12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.plan-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.plan-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.plan-btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.plan-btn.primary:hover {
  background: #6e50e8;
  box-shadow: 0 6px 25px rgba(95, 63, 225, 0.6);
}

/* ===== PROXY BLOCK ===== */
.proxy-block {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  padding: 20px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
}

.proxy-block a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
}

.proxy-block a:hover {
  color: var(--blue);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  z-index: 3;
  position: relative;
}

footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

footer span {
  margin: 0 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .plans-row {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto 40px;
  }
  
  .hero-metrics {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 16px 40px;
  }
  
  .nav {
    margin-bottom: 40px;
  }
  
  h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  
  .cta {
    width: 100%;
    justify-content: center;
  }
  
  .hero-metrics {
    flex-wrap: wrap;
    gap: 20px 40px;
  }
}
