/* Marketing-specific layout helpers — design-token classes live in colors_and_type.css */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section-tight {
  padding: 64px 0;
}

/* Eyebrow + heading rhythm */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 56px;
}

/* Lucide icons inherit currentColor */
[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Animated underline on inline links */
a { color: inherit; }

/* Hero gradient mesh container */
.hero-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-mesh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 60%, #ffffff 100%);
}

/* Subtle hairline divider */
.hairline {
  height: 1px;
  background: #e3e8ee;
}

/* Mockup chrome */
.mock-window {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: rgba(13, 37, 61, 0.12) 0 24px 60px -20px,
              rgba(13, 37, 61, 0.08) 0 2px 6px;
  border: 1px solid rgba(13, 37, 61, 0.04);
  overflow: hidden;
}

/* Plus icon helpers */
.icon-square {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Numbered step circle */
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: #533afd;
  color: #fff;
  font-feature-settings: "tnum" on;
  font-size: 13px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
