/* ============================================================
   service-infrastructure-services.css
   Extracted from <style> block in service-infrastructure-services.html.
   ============================================================ */

/* ========== HERO · Data Center Console ========== */
.inf-hero-svg { width: 100%; height: auto; max-width: 480px; display: block; margin: 0 auto; }

@keyframes infRackLed {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}
.inf-led { animation: infRackLed 1.4s ease-in-out infinite; }
.inf-led.l2 { animation-delay: .15s; }
.inf-led.l3 { animation-delay: .3s; }
.inf-led.l4 { animation-delay: .45s; }
.inf-led.l5 { animation-delay: .6s; }
.inf-led.l6 { animation-delay: .75s; }
.inf-led.l7 { animation-delay: .9s; }
.inf-led.l8 { animation-delay: 1.05s; }

@keyframes infNetPulse {
  0%, 100% { stroke-dashoffset: 0; }
  100%     { stroke-dashoffset: -16; }
}
.inf-net-line { stroke-dasharray: 4 6; animation: infNetPulse 1.4s linear infinite; }

@keyframes infDashScan {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(40px); }
}
.inf-dash-scan { animation: infDashScan 3s ease-in-out infinite; }

@keyframes infTempBar {
  0%, 100% { height: 18px; }
  50%      { height: 24px; }
}
.inf-temp-bar { animation: infTempBar 2.4s ease-in-out infinite; transform-origin: bottom center; transform-box: fill-box; }

/* ========== INFRASTRUCTURE PANEL SVGs ========== */
.if-vis { width: 100%; max-width: 230px; height: auto; display: block; margin: 0 auto; }

@keyframes ifRackLed {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}
.if-rack-led { animation: ifRackLed 1.4s ease-in-out infinite; }

@keyframes ifColoTransit {
  0%   { transform: translateX(-20px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(20px); opacity: 0; }
}
.if-colo-pkt { animation: ifColoTransit 2.4s ease-in-out infinite; }
.if-colo-pkt.p2 { animation-delay: .8s; }

@keyframes ifHybridSwap {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.if-hyb { animation: ifHybridSwap 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.if-hyb.h2 { animation-delay: .4s; }

@keyframes ifManagedSweep {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(140deg); }
}
/* origin is the dial pivot at view-box (100,100), not the needle's own box */
.if-managed-hand { animation: ifManagedSweep 4s ease-in-out infinite; transform-origin: 100px 100px; transform-box: view-box; }

/* ========== REFERENCE ARCHITECTURES ========== */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 920px) { .arch-grid { grid-template-columns: 1fr; } }
.arch-card {
  position: relative;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(11,30,63,.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.arch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,30,63,.08);
}
.arch-svg-wrap {
  background: #0B1E3F;
  padding: 24px;
  display: grid;
  place-items: center;
}
.arch-svg-wrap svg { width: 100%; max-width: 260px; height: auto; display: block; }
.arch-body { padding: 24px 22px 22px; }
.arch-tag {
  font: 700 10px/1 'JetBrains Mono', monospace;
  color: #FF6B35;
  background: rgba(255,107,53,.1);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.arch-body h3 {
  font: 700 1.1rem/1.2 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  margin: 0 0 8px;
}
.arch-body > p {
  font: 500 .88rem/1.5 'Inter', sans-serif;
  color: #4D5A77;
  margin: 0 0 14px;
}
.arch-specs {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  border-top: 1px dashed rgba(11,30,63,.18);
  display: grid;
  gap: 6px;
}
.arch-specs li {
  font: 500 .82rem/1.4 'Inter', sans-serif;
  color: #0B1E3F;
  padding-left: 16px;
  position: relative;
}
.arch-specs li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #1E63E9;
  font-weight: 900;
}

/* ========== CAPACITY PLANNING ========== */
.cap-card {
  margin-top: 40px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(11,30,63,.1);
  border-radius: 18px;
  padding: 40px clamp(24px, 4vw, 50px);
}
.cap-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px dashed rgba(11,30,63,.18);
}
.cap-head h3 {
  font: 800 1.3rem/1.2 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  margin: 8px 0 4px;
}
.cap-head p { font: 500 .9rem/1.4 'Inter', sans-serif; color: #4D5A77; margin: 0; }
.cap-tag {
  font: 700 10px/1 'JetBrains Mono', monospace;
  color: #FF6B35;
  background: rgba(255,107,53,.1);
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.cap-rows { display: grid; gap: 16px; }
.cap-row {
  display: grid;
  grid-template-columns: 200px 1fr 120px 100px;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dotted rgba(11,30,63,.15);
}
.cap-row:last-child { border-bottom: none; }
.cap-row-name { font-family: 'Space Grotesk', sans-serif; }
.cap-row-name h4 {
  font: 700 .95rem/1.2 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  margin: 0;
}
.cap-row-name small {
  display: block;
  font: 600 10px/1 'JetBrains Mono', monospace;
  color: rgba(11,30,63,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cap-row-bar {
  position: relative;
  height: 14px;
  background: rgba(11,30,63,.08);
  border-radius: 7px;
  overflow: hidden;
}
.cap-row-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #5EAA8C 0%, #1E63E9 70%, #FF6B35 100%);
  border-radius: 7px;
}
.cap-row-pct {
  font: 800 1.1rem/1 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  text-align: right;
}
.cap-row-status {
  font: 700 11px/1 'JetBrains Mono', monospace;
  padding: 6px 12px;
  border-radius: 999px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.cap-row-status.green  { background: rgba(94,170,140,.15); color: #5EAA8C; }
.cap-row-status.amber  { background: rgba(255,180,80,.18); color: #B86200; }
.cap-row-status.red    { background: rgba(255,107,53,.15); color: #FF6B35; }
@media (max-width: 760px) {
  .cap-row { grid-template-columns: 1fr; gap: 8px; }
  .cap-row-pct, .cap-row-status { justify-self: start; }
}

/* ========== SLA TIERS ========== */
.sla-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 920px) { .sla-tier-grid { grid-template-columns: 1fr; } }
.sla-tier {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(11,30,63,.1);
  border-radius: 16px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sla-tier:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(11,30,63,.08); }
.sla-tier.featured {
  background: linear-gradient(160deg, #0B1E3F, #1E63E9);
  color: var(--c-white);
  border-color: transparent;
}
.sla-tier-tag {
  font: 700 10px/1 'JetBrains Mono', monospace;
  color: #1E63E9;
  background: rgba(30,99,233,.1);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.sla-tier.featured .sla-tier-tag { color: #FF6B35; background: rgba(255,107,53,.15); }
.sla-tier h3 {
  font: 700 1.3rem/1.2 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  margin: 0 0 6px;
}
.sla-tier.featured h3 { color: var(--c-white); }
.sla-tier > p {
  font: 500 .9rem/1.5 'Inter', sans-serif;
  color: #4D5A77;
  margin: 0 0 22px;
}
.sla-tier.featured > p { color: rgba(255,255,255,.7); }
.sla-tier-pct {
  font: 800 3rem/1 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  margin-bottom: 4px;
}
.sla-tier.featured .sla-tier-pct { color: var(--c-white); }
.sla-tier-pct-sub {
  font: 600 11px/1 'JetBrains Mono', monospace;
  color: rgba(11,30,63,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 22px;
  display: block;
}
.sla-tier.featured .sla-tier-pct-sub { color: rgba(255,255,255,.6); }
.sla-tier-features {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px dashed rgba(11,30,63,.18);
  display: grid;
  gap: 10px;
}
.sla-tier.featured .sla-tier-features { border-color: rgba(255,255,255,.15); }
.sla-tier-features li {
  font: 500 .88rem/1.4 'Inter', sans-serif;
  color: #0B1E3F;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.sla-tier.featured .sla-tier-features li { color: rgba(255,255,255,.85); }
.sla-tier-features li span {
  font: 700 11px/1 'JetBrains Mono', monospace;
  color: #FF6B35;
}
