:root {
  --bg: #060612;
  --bg-alt: #0b0b1a;
  --bg-card: #0f0f22;
  --amber: #d4a017;
  --amber-dim: #a07810;
  --amber-glow: rgba(212, 160, 23, 0.12);
  --amber-glow-strong: rgba(212, 160, 23, 0.25);
  --text: #e8e4d9;
  --text-muted: #8a8778;
  --text-dim: #5a5750;
  --border: rgba(212, 160, 23, 0.15);
  --border-bright: rgba(212, 160, 23, 0.4);
}

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

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber-dim); border-radius: 3px; }

::selection { background: var(--amber); color: var(--bg); }

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

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

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  bottom: 100px;
  left: 200px;
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--amber) 30%, var(--amber) 70%, transparent 100%);
  opacity: 0.15;
  animation: scan 8s ease-in-out infinite;
}

@keyframes scan {
  0% { top: 0%; }
  100% { top: 100%; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 40px;
}

.hero-headline .highlight {
  color: var(--amber);
  display: block;
}

.hero-sub {
  max-width: 540px;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PHILOSOPHY */
.philosophy {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.philosophy-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 32px;
}

.philosophy-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 28px;
}

.quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--amber);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.5;
}

.quote-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--bg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.quote-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.quote-title {
  font-size: 11px;
  color: var(--text-dim);
}

.proof-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.proof-point svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* SERVICES */
.services {
  padding: 100px 0;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.services-header {
  margin-bottom: 64px;
}

.services-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.service-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s ease;
}

.service-card:hover {
  background: var(--bg-alt);
}

.service-icon {
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.services-footnote {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* CREDENTIALS */
.credentials {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.credentials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.cred-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.cred-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.cred-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}

.cred-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.cred-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cred-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--amber);
  border: 1px solid var(--border-bright);
  padding: 6px 16px;
  border-radius: 2px;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.05) 0%, transparent 60%);
}

.manifesto-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--amber);
  line-height: 1.1;
  margin-bottom: 40px;
  border-left: 3px solid var(--amber);
  padding-left: 32px;
}

.manifesto-sub {
  max-width: 620px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 35px;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.closing-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 32px;
}

.closing-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}

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

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

.pricing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.pricing-tier {
  background: var(--bg);
  padding: 40px 32px;
}

.pricing-tier--featured {
  background: var(--bg-alt);
}

.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}

.tier-min {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

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

.tier-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

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

.pricing-anchor {
  text-align: center;
  padding: 72px 0 0;
}

.pricing-anchor-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-anchor-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--bg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #e8b420;
}

/* HERO CTA */
.hero-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--bg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 40px;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: #e8b420;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-alt);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner,
  .philosophy-inner,
  .services-inner,
  .credentials-inner,
  .manifesto-inner,
  .closing-inner,
  .footer-inner,
  .pricing-inner {
    padding: 0 24px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .cred-row {
    gap: 32px;
    justify-content: center;
  }

  .cred-sep { display: none; }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }

  .hero-stats {
    gap: 24px;
  }
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .service-card {
    transition: background 0.25s ease, transform 0.25s ease;
  }

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