/* ===== TOKENS ===== */
:root {
  --bg: #08090C;
  --surface: #111318;
  --surface-2: #1a1d24;
  --border: rgba(245, 240, 232, 0.08);
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #F5F0E8;
  --text-muted: rgba(245, 240, 232, 0.5);
  --text-dim: rgba(245, 240, 232, 0.25);
  --amber: #F59E0B;
  --green: #4ADE80;
  --blue: #60A5FA;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero__headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.0;
}

.hero__headline em {
  font-style: normal;
  color: var(--amber);
  position: relative;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero__rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 32px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__meta-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.hero__meta-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Stack visual */
.hero__visual {
  position: relative;
}

.hero__stack {
  position: relative;
  padding: 20px;
}

.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__card:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero__card--1 { z-index: 4; box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.hero__card--2 { z-index: 3; margin-top: -12px; transform: translateX(12px); }
.hero__card--2:hover { transform: translateX(8px); }
.hero__card--3 { z-index: 2; margin-top: -12px; }
.hero__card--4 { z-index: 1; margin-top: -12px; transform: translateX(12px); }
.hero__card--4:hover { transform: translateX(8px); }

.hero__card-icon {
  width: 38px;
  height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.hero__card-label {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}

.hero__card-status {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

.hero__card-status--green { color: var(--green); }
.hero__card-status--amber { color: var(--amber); }
.hero__card-status--blue { color: var(--blue); }

.hero__card-check {
  margin-left: auto;
  color: var(--green);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero__shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  padding: 120px 24px;
  background: var(--bg);
}

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

.section-headline {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 60px;
  line-height: 1.1;
}

.what-we-do__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.what-we-do__item {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s ease;
}

.what-we-do__item:hover {
  background: var(--surface);
}

.what-we-do__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}

.what-we-do__item h3 {
  font-size: 17px;
  font-family: 'Syne', sans-serif;
  margin-bottom: 10px;
}

.what-we-do__item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 120px 24px;
  background: var(--surface);
}

.industries__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.industries__headline {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 24px;
  margin-top: 16px;
}

.industries__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.industries__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.industries__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s ease;
}

.industries__item:first-child {
  border-top: 1px solid var(--border);
}

.industries__item:hover {
  padding-left: 8px;
}

.industries__item-icon {
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.industries__item strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.industries__item span {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 24px;
  background: var(--bg);
}

.process {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 60px;
}

.process__step {
  flex: 1;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}

.process__num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1;
}

.process__content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.process__content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.process__duration {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 100px;
}

.process__connector {
  width: 40px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__connector::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--border);
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 24px;
  background: var(--surface);
}

.pricing__intro {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 480px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.pricing__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s ease;
}

.pricing__card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.pricing__card--featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(245,158,11,0.05) 0%, var(--bg) 100%);
}

.pricing__card-header {
  margin-bottom: 28px;
}

.pricing__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}

.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.pricing__amount--monthly {
  margin-bottom: 0;
}

.pricing__num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.pricing__unit {
  font-size: 14px;
  color: var(--text-muted);
}

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

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

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

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #08090C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__note {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 500px;
  line-height: 1.6;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 24px;
  background: var(--bg);
}

.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__quote-mark {
  font-family: 'Syne', serif;
  font-size: 120px;
  line-height: 0.5;
  color: var(--amber);
  opacity: 0.3;
  margin-bottom: 0;
  display: block;
}

.manifesto__text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.manifesto__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.manifesto__rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 48px;
}

.manifesto__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.manifesto__stat {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.manifesto__stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.manifesto__stat-label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

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

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-dim);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

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

.footer__col li {
  font-size: 14px;
  color: var(--text-muted);
  cursor: default;
  transition: color 0.2s;
}

.footer__col li:hover {
  color: var(--text);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    display: none;
  }

  .what-we-do__grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process {
    flex-direction: column;
    gap: 12px;
  }

  .process__connector {
    width: 100%;
    height: 24px;
  }

  .process__connector::after {
    width: 100%;
    height: 1px;
  }

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

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

  .footer__top {
    flex-direction: column;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .what-we-do__grid {
    grid-template-columns: 1fr;
  }

  .hero__headline {
    font-size: 44px;
  }

  .hero__meta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__meta-divider {
    display: none;
  }
}