:root {
  --ep-bg-1: #07121d;
  --ep-bg-2: #102338;
  --ep-bg-3: #1a324c;
  --ep-surface: rgba(8, 19, 30, 0.74);
  --ep-surface-strong: rgba(7, 16, 26, 0.9);
  --ep-border: rgba(123, 166, 197, 0.25);
  --ep-text: #e9f2fa;
  --ep-muted: #99b2c4;
  --ep-cyan: #62dbff;
  --ep-blue: #63b2ff;
  --ep-green: #39d69a;
  --ep-amber: #f3bf59;
  --ep-red: #ff7f77;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

body.holding-page {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ep-text);
  background:
    radial-gradient(920px 520px at -8% -16%, rgba(98, 219, 255, 0.2), transparent 62%),
    radial-gradient(900px 520px at 108% -20%, rgba(99, 178, 255, 0.17), transparent 60%),
    linear-gradient(165deg, var(--ep-bg-1), var(--ep-bg-2) 56%, var(--ep-bg-3));
}

a { color: inherit; text-decoration: none; }

.ep-shell {
  width: min(1280px, 100% - 36px);
  margin: 20px auto 26px;
}

.ep-card {
  border: 1px solid var(--ep-border);
  border-radius: 20px;
  background: var(--ep-surface);
  backdrop-filter: blur(9px);
}

.ep-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.ep-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ep-logo {
  width: 48px;
  height: 48px;
  display: block;
}

.ep-brand h1 {
  margin: 0;
  font-size: 1.1rem;
}

.ep-brand p {
  margin: 2px 0 0;
  font-size: 0.84rem;
  color: var(--ep-muted);
}

.ep-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ep-link {
  color: var(--ep-muted);
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.ep-link:hover {
  border-color: var(--ep-border);
  color: var(--ep-text);
}

.ep-btn {
  border: 1px solid var(--ep-border);
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ep-btn.ghost { background: rgba(255, 255, 255, 0.05); }
.ep-btn.primary {
  border-color: rgba(98, 219, 255, 0.46);
  color: #032430;
  background: linear-gradient(135deg, #67e0ff, #9feeff);
}

.ep-main {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.ep-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 4;
}

.ep-hero-copy {
  padding: 22px;
}

.ep-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ep-cyan);
  margin-bottom: 12px;
}

.ep-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ep-cyan);
  box-shadow: 0 0 12px rgba(98, 219, 255, 0.72);
}

.ep-hero-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1.08;
  max-width: 16ch;
}

.ep-hero-copy p {
  margin: 12px 0 0;
  color: var(--ep-muted);
  line-height: 1.58;
  max-width: 66ch;
}

.ep-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ep-pills {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ep-pill {
  border: 1px solid var(--ep-border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  color: #cbe0ef;
  background: rgba(255, 255, 255, 0.03);
}

.ep-status {
  position: relative;
  padding: 18px;
  background: var(--ep-surface-strong);
}

.ep-dev-tilt {
  position: absolute;
  width: 206px;
  margin: 0;
  padding: 8px;
  padding-bottom: 35px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.ep-dev-tilt-a {
  right: 104px;
  top: 430px;
  transform: rotate(-11deg);
}

.ep-dev-tilt-b {
  right: -40px;
  top: 460px;
  transform: rotate(7deg);
  z-index: 3;
}

.ep-dev-tilt img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.ep-status h3 {
  margin: 0;
  font-size: 1rem;
}

.ep-status-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.ep-status-subhead {
  margin: 14px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #c9dff0;
}

.ep-stat {
  border-radius: 12px;
  border: 1px solid var(--ep-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.ep-stat span {
  display: block;
  color: var(--ep-muted);
  font-size: 0.78rem;
}

.ep-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
}

.ep-stat.ok strong { color: var(--ep-green); }
.ep-stat.info strong { color: var(--ep-cyan); }
.ep-stat.warn strong { color: var(--ep-amber); }
.ep-stat.alert strong { color: var(--ep-red); }

.ep-section {
  padding: 16px;
}

.ep-section h3 {
  margin: 0;
  font-size: 1.16rem;
}

.ep-section-sub {
  margin-top: 8px;
  color: var(--ep-muted);
  line-height: 1.56;
}

.ep-grid-3 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ep-feature {
  border-radius: 14px;
  border: 1px solid var(--ep-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.ep-feature h4 {
  margin: 0;
  font-size: 0.98rem;
}

.ep-feature p {
  margin: 8px 0 0;
  color: var(--ep-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ep-workflow {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ep-step {
  border-radius: 14px;
  border: 1px solid var(--ep-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.ep-step .idx {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(98, 219, 255, 0.2);
  border: 1px solid rgba(98, 219, 255, 0.35);
  color: var(--ep-cyan);
  font-size: 0.76rem;
  font-weight: 700;
}

.ep-step h4 {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.ep-step p {
  margin: 6px 0 0;
  color: var(--ep-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.ep-band {
  margin-top: 12px;
  border: 1px solid rgba(98, 219, 255, 0.32);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(98, 219, 255, 0.18), rgba(99, 178, 255, 0.14));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ep-band h3 {
  margin: 0;
  font-size: 1.15rem;
}

.ep-band p {
  margin: 6px 0 0;
  color: #d7e9f5;
  font-size: 0.92rem;
}

.ep-pipeline-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ep-pipeline-list li {
  border: 1px solid var(--ep-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #d3e4f1;
  padding: 10px 12px;
  line-height: 1.35;
}

.ep-footer {
  margin-top: 14px;
  color: var(--ep-muted);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 1080px) {
  .ep-hero {
    grid-template-columns: 1fr;
  }

  .ep-dev-tilt {
    position: absolute;
     width: min(207px, 55vw);
    margin: 0;
  }

  .ep-dev-tilt-a {
    right: 102px;
    top: 240px;
    transform: rotate(-8deg);
  }

  .ep-dev-tilt-b {
    right: 54px;
    top: 420px;
    transform: rotate(6deg);
  }

  .ep-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .ep-workflow {
    grid-template-columns: 1fr 1fr;
  }

  .ep-pipeline-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .ep-shell {
    width: calc(100% - 20px);
    margin-top: 12px;
  }

  .ep-dev-tilt {
    width: min(188px, 50vw);
  }

  .ep-dev-tilt-a {
    right: 34px;
    top: 124px;
  }

  .ep-dev-tilt-b {
    right: 0;
    top: 264px;
  }

  .ep-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ep-grid-3,
  .ep-workflow {
    grid-template-columns: 1fr;
  }

  .ep-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .ep-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
