/* Marketing base — reset, typography, layout. No Bootstrap dependency. */

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

.marketing {
  background-color: var(--night);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fluid container */
.marketing .mkt-container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* Typography */
.marketing h1, .marketing h2, .marketing h3,
.marketing h4, .marketing h5, .marketing h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.marketing a {
  color: inherit;
  text-decoration: none;
}

.marketing img {
  display: block;
  max-width: 100%;
}

/* Eyebrow label */
.marketing .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Gradient text utility */
.marketing .grad-text {
  background: var(--grad-sig);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section spacing */
.marketing .mkt-section {
  padding-block: var(--sp-xl);
}

.marketing .mkt-section--tight {
  padding-block: var(--sp-lg);
}

/* Screen-reader only */
.marketing .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Focus ring */
.marketing :focus-visible {
  outline: 2px solid var(--uv);
  outline-offset: 3px;
}

/* Noise overlay helper */
.marketing .noise::after {
  content: '';
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marketing *, .marketing *::before, .marketing *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
