﻿/* ==========================================================================
   BenchOps holding page · /benchops/index.html
   ========================================================================== */

.bo-holding {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 76% 20%, rgba(217,138,28,0.15) 0%, transparent 42%),
    linear-gradient(150deg, var(--canvas) 0%, var(--card) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.bo-holding::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,95,82,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.bo-holding-rings {
  position: absolute;
  right: -120px;
  top: 50%;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  pointer-events: none;
}

.bo-holding-rings div {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(217,138,28,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bo-holding-rings div:nth-child(1) { width: 220px; height: 220px; }
.bo-holding-rings div:nth-child(2) { width: 360px; height: 360px; }
.bo-holding-rings div:nth-child(3) { width: 500px; height: 500px; }

.bo-holding-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
}

.bo-holding-eyebrow,
.bo-card-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-deep);
}

.bo-holding-eyebrow {
  margin-bottom: 18px;
}

.bo-holding h1 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-strong);
  margin-bottom: 20px;
  max-width: 700px;
}

.bo-holding p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 34px;
}

.bo-holding-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bo-holding-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.bo-holding-link:hover {
  color: var(--teal-deep);
}

.bo-holding-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(217,138,28,0.28);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-card-hover);
  backdrop-filter: blur(10px);
}

.bo-card-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.12;
  margin: 18px 0 24px;
}

.bo-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--amber-tint);
  color: var(--amber-deep);
  font-size: 12px;
  font-weight: 700;
}

.bo-card-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.bo-contact {
  background: var(--ink);
  padding: 72px var(--gutter);
}

.bo-contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.bo-contact h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bo-contact p {
  color: rgba(212,226,220,0.78);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto 30px;
  max-width: 500px;
}

@media (max-width: 900px) {
  .bo-holding {
    min-height: auto;
  }

  .bo-holding-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px var(--gutter-mobile);
  }

  .bo-holding-card {
    max-width: 420px;
  }

  .bo-contact {
    padding: 64px var(--gutter-mobile);
  }
}

@media (max-width: 600px) {
  .bo-holding-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}