.hero {
  align-items: center;
  min-height: 100vh;
  padding: 7rem 0 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(60% 55% at 72% 38%, #00ffa30e 0%, #0000 70%), radial-gradient(40% 50% at 18% 65%, #ffb74d08 0%, #0000 65%);
  position: absolute;
  inset: 0;
}

.hero__inner {
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  position: relative;
}

.hero__left {
  max-width: 560px;
}

.hero__label {
  font-family: var(--font-mono);
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: 9px;
  display: block;
}

.hero__label:before {
  content: "// ";
}

.hero__headline {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: .95;
}

.hero__headline em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.hero__sub {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero__ctas {
  flex-wrap: wrap;
  align-items: center;
  gap: .875rem;
  display: flex;
}

.hero__right {
  position: relative;
}

.hero__code-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero__code-card:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(145deg, #00ffa30a 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.hero__code-card__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.hero__code-card__title {
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: .1em;
  font-size: 10px;
}

.hero__code-dots {
  gap: 5px;
  display: flex;
}

.hero__code-dots span {
  background: var(--border-medium);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.hero__code-dots span:first-child {
  background: #f8717180;
}

.hero__code-dots span:nth-child(2) {
  background: #fbbf2480;
}

.hero__code-dots span:last-child {
  background: #4ade8066;
}

.hero__code-card:after {
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero__scroll {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  color: var(--text-muted);
  z-index: 1;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: 9px;
  animation: 1s 1.2s both fadeIn;
  display: flex;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  background: linear-gradient(to bottom, var(--accent), transparent);
  width: 1px;
  height: 32px;
}

@media (width <= 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__right {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }
}

@media (width <= 480px) {
  .hero {
    padding: 7rem 0 4rem;
  }

  .hero__inner {
    padding: 0 1rem;
  }
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  display: grid;
}

@media (width <= 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 580px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

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

.section-header__title {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.section-header__sub {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  max-width: 520px;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.65;
}

.showcase {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 4rem;
  display: grid;
}

.showcase__copy-label {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-size: 9px;
  display: block;
}

.showcase__copy-label:before {
  content: "// ";
  color: var(--accent);
}

.showcase__headline {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
}

.showcase__body {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
}

.showcase__code-stack {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.showcase__code-label {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: .375rem;
  font-size: 9px;
  display: block;
}

.showcase__code-label:before {
  content: "// ";
  color: var(--accent);
}

@media (width <= 860px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.depth-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

.depth-strip__inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
}

.depth-item {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.depth-item__label {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 9px;
}

.depth-item__value {
  font-family: var(--font-mono);
  color: var(--text-primary);
  letter-spacing: .04em;
  font-size: 13px;
  font-weight: 500;
}

.depth-item__value--accent {
  color: var(--accent);
}

.depth-item__value--amber {
  color: var(--amber);
}

.depth-strip__divider {
  background: var(--border-subtle);
  flex-shrink: 0;
  width: 1px;
  height: 28px;
}

@media (width <= 640px) {
  .depth-strip__inner {
    gap: 1.25rem;
    padding: 0 1.25rem;
  }

  .depth-strip__divider {
    display: none;
  }
}

.cta-section {
  text-align: center;
  padding: 6rem 0;
}

.cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-section__status {
  font-family: var(--font-mono);
  color: var(--text-secondary);
  letter-spacing: .05em;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
  font-size: 11px;
  display: inline-flex;
}

.cta-section__headline {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: .98;
}

.cta-section__headline em {
  color: var(--accent);
  font-style: italic;
}

.cta-section__sub {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
}

.cta-section__actions {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .875rem;
  display: flex;
}
