:root {
  --bg: #0D1B2A;
  --bg2: #0F2235;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --text: #F0EDE8;
  --text-dim: rgba(240, 237, 232, 0.55);
  --border: rgba(245, 166, 35, 0.15);
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.eclipse-orb {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(580px, 45vw);
  height: min(580px, 45vw);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.orb-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.2);
  animation: pulse-ring 4s ease-in-out infinite;
}

.orb-ring:nth-child(2) { width: 85%; height: 85%; animation-delay: 0.5s; }
.orb-ring:nth-child(3) { width: 70%; height: 70%; animation-delay: 1s; }

@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

.orb-core {
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623 0%, rgba(245,166,35,0.6) 40%, transparent 70%);
  box-shadow: 0 0 80px 30px rgba(245, 166, 35, 0.25), 0 0 160px 60px rgba(245, 166, 35, 0.1);
}

.orb-flare {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 42%, rgba(245, 166, 35, 0.08) 60%, transparent 75%);
}

.hero-content { max-width: 640px; position: relative; z-index: 1; }

.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 52px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: fit-content;
  background: var(--bg2);
}

.stat {
  padding: 20px 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.3;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── CERTIFICATION ── */
.certification {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 60px;
}

.cert-inner { max-width: 900px; }

.cert-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.badge-icon { flex-shrink: 0; width: 60px; height: 60px; }
.badge-icon svg { width: 100%; height: 100%; }

.badge-text strong { display: block; font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.badge-text span { font-size: 0.85rem; color: var(--text-dim); }

.cert-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding: 16px 20px;
  background: var(--accent-dim);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

/* ── VISIBILITY ── */
.visibility { padding: 80px 60px; }

.vis-header { max-width: 640px; margin-bottom: 48px; }
.vis-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.vis-desc { font-size: 1rem; color: var(--text-dim); line-height: 1.6; }

.vis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.vis-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.vis-card--peak {
  border-color: rgba(245, 166, 35, 0.4);
  background: linear-gradient(135deg, var(--bg2), rgba(245,166,35,0.05));
}

.vis-zone {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.vis-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.vis-bar {
  height: 4px;
  background: rgba(240,237,232,0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.vis-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

.vis-pct {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.vis-note { font-size: 0.8rem; color: var(--text-dim); line-height: 1.4; }

/* ── BULK ── */
.bulk {
  padding: 80px 60px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.bulk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
}

.bulk-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.bulk-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bulk-body { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

.bulk-packs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pack {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 16px;
}

.pack--featured {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245,166,35,0.04);
  position: relative;
}

.pack-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pack-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}

.pack-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.pack-detail { font-size: 0.8rem; color: var(--text-dim); }
.pack-margin { font-size: 0.75rem; color: var(--text-dim); font-style: italic; }

/* ── CLOSING ── */
.closing {
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-orb {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  position: relative;
}

.c-orb-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.3);
  animation: pulse-ring 3s ease-in-out infinite;
}

.c-orb-inner {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, #F5A623, transparent);
  opacity: 0.7;
}

.closing-quote {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

.closing-statement {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.footer-brand p, .footer-meta p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 28px 80px; }
  .eclipse-orb { width: 70vw; height: 70vw; right: -10%; opacity: 0.4; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat { width: 100%; text-align: left; padding: 16px 24px; }
  .stat-sep { width: 100%; height: 1px; }
  .visibility, .bulk { padding: 60px 28px; }
  .bulk-inner { grid-template-columns: 1fr; gap: 40px; }
  .certification { padding: 32px 28px; }
  .closing { padding: 80px 28px; }
  footer { padding: 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}