/* ============================================================
   VELION INTELLIGENCE — Breadcrumb + Hero + Section Wrapper
   ============================================================ */

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  background: var(--bg-pure);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.breadcrumb .container {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.4; }
.breadcrumb .current { color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  background: var(--bg-pure);
  padding: 96px 0 120px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-meta::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--navy);
  display: inline-block;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero h1 .accent {
  color: var(--navy);
  font-weight: 800;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: white;
}
.hero-visual::before {
  content: "[ PHOTO PLACEHOLDER ]";
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
  pointer-events: none;
}
.hero-visual-content {
  position: relative;
  z-index: 1;
}
.hero-visual-content .label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8aa8d4;
  margin-bottom: 12px;
}
.hero-visual-content .quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-visual-content .attribution {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: #b8c4d8;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 14px;
  letter-spacing: 0.04em;
}

/* ---------- SECTION WRAPPER ---------- */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.section.alt { background: var(--bg-section); }
.section.dark { background: var(--navy); color: white; border-bottom: none; }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section.dark .section-label { color: #8aa8d4; }
.section-label .num {
  background: var(--navy);
  color: white;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.section.dark .section-label .num { background: white; color: var(--navy); }
.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
}
.section .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 700px;
}
.section.dark .lead { color: #b8c4d8; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--navy);
  color: white;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--navy-light); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s;
}
.btn-secondary:hover {
  background: var(--ink);
  color: white;
}
