:root {
  --bg: #0c0c0e;
  --fg: #f0ede8;
  --orange: #ff5c1a;
  --accent: #ff9a4a;
  --green: #3ddb85;
  --muted: #888;
  --border: #1e1e24;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 8vw;
  gap: 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 17px;
  color: #aaa;
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.tag {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.screen-stack {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.screen {
  width: 120px;
  background: #111116;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.screen-1 { height: 160px; }
.screen-2 { height: 200px; }
.screen-3 { height: 140px; }

.bar {
  height: 8px;
  border-radius: 4px;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* SECTIONS */
.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* WHAT WE DO */
.whatwedo {
  padding: 8rem 8vw;
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 2.5rem;
}

.service-icon {
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

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

/* MANIFESTO */
.manifesto {
  padding: 8rem 8vw;
  border-bottom: 1px solid var(--border);
}

.manifesto-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  color: var(--fg);
  max-width: 700px;
  border-left: 3px solid var(--orange);
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.manifesto-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.manifesto-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.manifesto-pills span {
  padding: 6px 16px;
  background: #111116;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--fg);
}

/* PRICING */
.pricing {
  padding: 8rem 8vw;
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--bg);
  padding: 2.5rem;
  position: relative;
}

.pricing-card.featured {
  background: #111116;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--fg);
  margin-bottom: 2rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

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

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

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

/* PROCESS */
.process {
  padding: 8rem 8vw;
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 8rem 8vw;
  border-bottom: 1px solid var(--border);
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-note {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  padding: 3rem 8vw;
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 6vw;
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-visual {
    display: none;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.8rem;
  }
}