:root {
  --bg: #0D0D0D;
  --bg-surface: #141414;
  --bg-card: #1A1A1A;
  --gold: #F5A623;
  --gold-dim: rgba(245, 166, 35, 0.15);
  --gold-mid: rgba(245, 166, 35, 0.4);
  --text-primary: #F5F0E8;
  --text-secondary: #9A9590;
  --text-muted: #5A5550;
  --border: rgba(245, 166, 35, 0.12);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── GRID LINES ── */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  top: -100px; right: 15%;
  animation: orb-pulse 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  bottom: 0; right: 25%;
  animation: orb-pulse 12s ease-in-out infinite reverse;
}
@keyframes orb-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-slant {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 0%, rgba(245,166,35,0.03) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.eyebrow-dash {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero-title-v {
  color: var(--gold);
}
.hero-title-number {
  color: var(--text-primary);
}
.hero-title-be {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
}

.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 80px;
}
.scroll-line {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Right visual: concentric vinyl rings */
.hero-visual-right {
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.vinyl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.18);
}
.vinyl-ring-1 { width: 100%; height: 100%; animation: spin-slow 30s linear infinite; }
.vinyl-ring-2 { width: 72%; height: 72%; animation: spin-slow 20s linear infinite reverse; }
.vinyl-ring-3 { width: 44%; height: 44%; animation: spin-slow 15s linear infinite; }
.vinyl-center {
  width: 16%; height: 16%;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,166,35,0.5);
  z-index: 2;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ── SERVICES ── */
.services {
  padding: 120px 8vw;
  background: var(--bg-surface);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-mid), transparent);
}
.services-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
  transition: background 0.25s ease;
  border: 1px solid transparent;
}
.service-card:hover {
  background: #1E1E1E;
  border-color: var(--border);
}
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg polygon,
.service-card:hover .service-icon svg polygon {
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.6));
}
.service-icon {
  margin-bottom: 20px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 8vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-left { padding-top: 8px; }
.manifesto-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-top: 24px;
}
.manifesto-right { max-width: 680px; }
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  font-weight: 400;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 56px;
}
.manifesto-stat-row {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.manifesto-stat { display: flex; flex-direction: column; gap: 6px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 180px;
  font-weight: 300;
}

/* ── PRICING ── */
.pricing {
  padding: 120px 8vw;
  background: var(--bg-surface);
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-mid), transparent);
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 64px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--bg-card);
  padding: 48px 36px;
  position: relative;
  border: 1px solid var(--border);
}
.pricing-card-featured {
  border-color: var(--gold-mid);
  background: #1A1814;
}
.pricing-most-popular {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
}
.pricing-tier-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.per-mo {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
}
.pricing-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--gold);
}
.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 140px 8vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing-light-beam {
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
  transform: translateX(-50%);
}
.closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}
.closing-text-block { max-width: 640px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.0;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}
.closing-cta-block { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.closing-vibe-mark {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.v1be-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.v1be-tagline {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.closing-cta-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.closing-cta-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.15s;
}
.closing-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer {
  padding: 80px 8vw 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-logo-sub { color: var(--text-muted); }
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
  font-weight: 300;
  line-height: 1.6;
}
.footer-right {
  display: flex;
  gap: 80px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-head {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col span:not(.footer-col-head) {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual-right { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hero { padding: 0 6vw; }
  .services, .manifesto, .pricing, .closing { padding: 80px 6vw; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-right { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .manifesto-stat-row { flex-direction: column; gap: 32px; }
  .hero-title { font-size: clamp(80px, 22vw, 160px); }
}
