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

:root {
  --midnight: #0B1426;
  --midnight-2: #0F1D35;
  --orange: #FF5722;
  --orange-dim: rgba(255, 87, 34, 0.12);
  --orange-glow: rgba(255, 87, 34, 0.25);
  --white: #F0F4FF;
  --white-60: rgba(240, 244, 255, 0.6);
  --white-40: rgba(240, 244, 255, 0.4);
  --white-15: rgba(240, 244, 255, 0.15);
  --white-08: rgba(240, 244, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--midnight);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--white-15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--white-60);
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 48px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--white-15);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
}

.hero-geo-1 {
  width: 600px;
  height: 600px;
  right: -200px;
  top: -200px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
}

.hero-geo-2 {
  width: 300px;
  height: 300px;
  right: 80px;
  top: 60px;
  border: 1px solid var(--orange-dim);
}

.hero-geo-3 {
  width: 150px;
  height: 150px;
  right: 180px;
  top: 120px;
  border: 1px solid var(--orange-dim);
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero-overline {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-accent {
  color: var(--orange);
}

.hero-sub {
  font-size: 18px;
  color: var(--white-60);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 14px;
  border: 1px solid var(--white-15);
  border-radius: 100px;
  font-size: 13px;
  color: var(--white-60);
  font-weight: 400;
}

/* ===== PACK ===== */
.pack {
  padding: 100px 48px;
  border-bottom: 1px solid var(--white-15);
}

.pack-header {
  max-width: 700px;
  margin-bottom: 64px;
}

.pack-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.pack-sub {
  font-size: 16px;
  color: var(--white-60);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  border: 1px solid var(--white-15);
  border-radius: 16px;
  overflow: hidden;
}

.pack-item {
  padding: 36px 32px;
  border-right: 1px solid var(--white-15);
  border-bottom: 1px solid var(--white-15);
  background: var(--white-08);
  transition: background 0.2s;
}

.pack-item:hover {
  background: var(--midnight-2);
}

.pack-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.pack-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pack-item p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.5;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px;
  border-bottom: 1px solid var(--white-15);
  background: var(--midnight-2);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 28px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 20px;
}

.manifesto-stat-row {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--white-15);
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: var(--white-40);
  max-width: 160px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 48px;
  border-bottom: 1px solid var(--white-15);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 56px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--white-60);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  border: 1px solid var(--white-15);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.pricing-card {
  padding: 36px 32px;
  border-right: 1px solid var(--white-15);
  background: var(--white-08);
}

.pricing-card-featured {
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
}

.card-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-60);
  margin-bottom: 16px;
}

.card-tag.featured {
  color: var(--orange);
}

.card-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.pricing-card-featured .card-price {
  color: var(--white);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-features li {
  font-size: 14px;
  color: var(--white-60);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.pricing-note {
  font-size: 13px;
  color: var(--white-40);
  text-align: center;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 48px;
  border-bottom: 1px solid var(--white-15);
  background: var(--midnight-2);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.65;
  margin-bottom: 48px;
}

.closing-devider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.closing-devider::before,
.closing-devider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--white-15);
  max-width: 200px;
}

.closing-tag {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
}

.footer-copy {
  font-size: 13px;
  color: var(--white-40);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-headline { letter-spacing: -1px; }
  .pack { padding: 64px 24px; }
  .manifesto { padding: 64px 24px; }
  .manifesto-stat-row { gap: 32px; }
  .pricing { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pack-grid { grid-template-columns: 1fr; }
  .pack-item { border-right: none; }
  .pricing-card { border-right: none; }
  .hero-geo-1 { width: 400px; height: 400px; right: -100px; top: -100px; }
  .hero-geo-2, .hero-geo-3 { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .stat-num { font-size: 28px; }
  .card-price { font-size: 40px; }
}