/* ============================================================
   ITS landing — Ashby-inspired split layout on THROME tokens
   ============================================================ */

.its-kicker {
  font-size: 12px;
  color: var(--violet);
  margin-bottom: 18px;
}

/* ---------- Hero (split) ---------- */
.its-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 150px 24px 80px;
}

.its-hero-title {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.its-hero-title em { font-style: normal; color: var(--violet); }

.its-hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 32px;
}

.its-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.its-hero-visual { position: relative; }

/* ---------- Mock windows ---------- */
.its-mock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-window);
  overflow: hidden;
}

.its-mock-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.its-mock-title { font-size: 12px; color: var(--ink-faint); margin-left: 10px; }

.its-mock-hero {
  transform: rotate(1.2deg);
  animation: itsFloat 6s ease-in-out infinite;
}

@keyframes itsFloat {
  0%, 100% { transform: rotate(1.2deg) translateY(0); }
  50% { transform: rotate(1.2deg) translateY(-10px); }
}

/* campaign dashboard (hero) */
.its-camp {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  padding: 18px;
  background: #fff;
}

.its-camp-side { display: flex; flex-direction: column; gap: 14px; }

.its-donut-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 12px 12px;
  text-align: center;
}

.its-donut { width: 96px; height: 96px; display: block; margin: 0 auto; }

.its-donut-center {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.its-donut-center b { font-size: 21px; font-weight: 900; line-height: 1.1; }
.its-donut-center i { font-style: normal; font-size: 9.5px; color: var(--ink-faint); }

.its-donut-label { font-size: 11.5px; color: var(--ink-soft); margin-top: 8px; }

.its-stat-card {
  flex: 1;
  background: #FBE9EE;
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.its-stat-name { font-size: 11.5px; font-weight: 700; color: #9B5A72; }
.its-stat-num { font-size: 30px; font-weight: 900; line-height: 1.2; color: var(--ink); }
.its-stat-unit { font-size: 10.5px; color: #B88A9B; }

.its-camp-main { min-width: 0; }

.its-chart-title { font-size: 13px; font-weight: 700; margin-bottom: 8px; }

.its-line-chart { width: 100%; height: auto; display: block; }

.its-chart-num {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--ink-soft);
}

.its-line-months {
  display: flex;
  justify-content: space-between;
  padding: 4px 6px 0;
  font-size: 9px;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.its-bars {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.its-bar-group { display: flex; flex-direction: column; align-items: center; gap: 5px; }

.its-bar-pair { display: flex; align-items: flex-end; gap: 4px; height: 78px; }

.its-bar {
  width: 12px;
  height: var(--h);
  min-height: 3px;
  border-radius: 3px 3px 0 0;
  position: relative;
}

.its-bar::after {
  content: attr(data-v);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-soft);
}

.bar-award { background: linear-gradient(180deg, #6B5CE7, #B4AAF5); }
.bar-client { background: linear-gradient(180deg, var(--green), #A3DCC2); }

.its-bar-month { font-size: 9px; color: var(--ink-faint); }

.its-bar-legend {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10.5px;
  color: var(--ink-soft);
}

.its-bar-legend span { display: flex; align-items: center; gap: 6px; }

.its-bar-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.lg-award { background: var(--violet); }
.lg-client { background: var(--green); }


/* ---------- Alternating features ---------- */
.its-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}

.its-feature-reverse .its-feature-media { order: 2; }
.its-feature-reverse .its-feature-copy { order: 1; }

.its-feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--violet-soft);
  border-radius: 12px;
  margin-bottom: 18px;
}

.its-feature-icon svg { width: 22px; height: 22px; }

.its-feature-tag { font-size: 12px; color: var(--violet); margin-bottom: 12px; }

.its-em { font-style: normal; color: var(--violet); }

.its-feature-copy h2 {
  font-size: clamp(25px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.its-feature-text { font-size: 15.5px; color: var(--ink-soft); max-width: 430px; }

.its-feature-media .its-mock { transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1); }
.its-feature-media:hover .its-mock { transform: translateY(-6px); }

/* SAFe framework image */
.its-safe-img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 10px;
}

/* case table mock */
.its-feature-wide { grid-template-columns: 1.38fr 0.62fr; }
.its-feature-reverse.its-feature-wide { grid-template-columns: 0.62fr 1.38fr; }

.its-case-table {
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.its-ct-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr 0.9fr 1.2fr 0.9fr;
  gap: 8px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--ink);
}

.its-ct-head {
  background: transparent;
  border: none;
  padding: 2px 12px 0;
  font-size: 10px;
  color: var(--violet);
  letter-spacing: 0.08em;
}

.its-ct-dim { color: var(--ink-faint); font-size: 10px; }

.its-ct-big { font-size: 17px; font-weight: 900; letter-spacing: -0.01em; }

.its-ct-list { font-size: 9px; color: var(--ink-soft); white-space: nowrap; }

.its-pill {
  display: inline-block;
  font-style: normal;
  background: var(--violet);
  color: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

/* demand board image */
.its-board-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Coverage ---------- */
.its-coverage {
  padding: 84px 0 100px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.its-coverage-head { text-align: center; margin-bottom: 40px; }

.its-coverage-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.its-role-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.its-role-grid span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.its-role-grid span:hover {
  border-color: var(--violet);
  color: var(--violet-deep);
  transform: translateY(-2px);
}

/* ---------- CTA ---------- */
.its-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.its-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 110%, rgba(107, 92, 231, 0.45), transparent 70%);
}

.its-cta .container { position: relative; }

.its-cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
}

.its-cta-sub {
  font-size: 17px;
  color: rgba(250, 249, 247, 0.65);
  margin-bottom: 40px;
}

.its-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.its-cta .btn-primary { background: var(--violet); color: #fff; }
.its-cta .btn-primary:hover { background: var(--violet-deep); }
.its-cta .btn-ghost { border-color: rgba(250, 249, 247, 0.25); color: rgba(250, 249, 247, 0.75); }
.its-cta .btn-ghost:hover { border-color: var(--bg); color: var(--bg); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .its-hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: 44px;
  }

  .its-hero-sub { max-width: none; }
  .its-float-a { top: -5%; left: 2%; }
  .its-float-b { bottom: -6%; right: 2%; }

  .its-feature,
  .its-feature-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 24px;
  }

  .its-feature-reverse .its-feature-media,
  .its-feature-reverse .its-feature-copy { order: unset; }

  .its-feature-text { max-width: none; }
  .its-pipeline { grid-template-columns: 1fr 1fr; }
  .its-sla { grid-template-columns: 1fr; }
}
