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

:root {
  --bg: #13111A;
  --bg-2: #1C1926;
  --bg-card: #22203A;
  --accent: #E8781C;
  --accent-warm: #F2952A;
  --accent-dim: #C46010;
  --text: #F5F2EE;
  --text-2: #A8A3B5;
  --text-3: #6B677A;
  --border: rgba(245, 242, 238, 0.08);
  --font-display: 'Palanquin Dark', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(19, 17, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232, 120, 28, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 242, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 238, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 70%);
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 700px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.825rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.proof-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 48px;
  max-width: 600px;
}

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

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(232, 120, 28, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 120, 28, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.services-niche {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.niche-label {
  font-size: 0.85rem;
  color: var(--text-3);
  font-weight: 500;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.niche-tag {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-2);
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.step {
  background: var(--bg-2);
  padding: 36px 28px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(232, 120, 28, 0.2);
  margin-bottom: 20px;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== CLIENTS ===== */
.clients {
  padding: 100px 24px;
}

.clients-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.client-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.client-item {
  display: flex;
  gap: 20px;
  padding: 36px 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  align-items: flex-start;
}

.client-item:nth-child(2n) {
  border-right: none;
}

.client-item:nth-child(3),
.client-item:nth-child(4) {
  border-bottom: none;
}

.client-icon {
  width: 36px;
  height: 36px;
  background: rgba(232, 120, 28, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.client-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.client-body p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding-left: 28px;
}

.manifesto-quote blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.manifesto-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.manifesto-body p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.manifesto-pill-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.manifesto-pill {
  display: inline-block;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(232, 120, 28, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  width: fit-content;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 40px;
}

.closing-vibe {
  padding: 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: inline-block;
}

.closing-vibe p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-3);
  max-width: 300px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero-headline { font-size: 2.4rem; }
  .hero-inner { padding: 60px 24px 60px; }

  .proof-inner { justify-content: center; }
  .proof-divider { display: none; }
  .proof-stat { min-width: 120px; text-align: center; }

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

  .process-steps { grid-template-columns: 1fr; }

  .client-list { grid-template-columns: 1fr; }
  .client-item { border-right: none; }
  .client-item:nth-child(3) { border-bottom: 1px solid var(--border); }
  .client-item:nth-child(4) { border-bottom: none; }

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

@media (max-width: 480px) {
  .hero-cta-row { gap: 8px; }
  .hero-pill { font-size: 0.75rem; padding: 6px 12px; }
}
