@font-face {
  font-family: "KPN Sans";
  src: url("./order-workflow/assets/073c0a9d-816c-49e7-b85a-7d6cd5a2f17a.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #1e1c28;
  --muted: #6f6b7c;
  --line: #dedbe7;
  --paper: #fff;
  --canvas: #f2f0f7;
  --violet: #5a45ad;
  --violet-soft: #ebe7fb;
  --green: #087a4d;
  --green-soft: #dcf7e9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 5%, rgba(90, 69, 173, 0.12), transparent 32rem),
    linear-gradient(145deg, #f8f7fb 0%, var(--canvas) 100%);
  font-family: "KPN Sans", "Avenir Next", sans-serif;
}

.portal-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 40px;
}

.portal-header {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  max-width: 780px;
  margin-bottom: 64px;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  width: 56px;
  height: 56px;
  padding: 9px;
  border-radius: 15px;
  background: var(--violet-soft);
}

.brand-mark span {
  border-radius: 4px;
  background: var(--violet);
}

.eyebrow {
  margin: 2px 0 12px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.intro {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.mockup-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(47, 39, 78, 0.08);
}

.mockup-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 174px;
  padding: 30px 36px;
  color: inherit;
  text-decoration: none;
}

.mockup-row + .mockup-row { border-top: 1px solid var(--line); }

.mockup-row.available {
  transition: background 180ms ease, transform 180ms ease;
}

.mockup-row.available:hover,
.mockup-row.available:focus-visible {
  outline: none;
  background: var(--paper);
}

.mockup-row.available:hover .row-action { transform: translateX(4px); }

.mockup-row.disabled {
  color: #9692a1;
  background: rgba(243, 241, 247, 0.58);
  cursor: not-allowed;
}

.row-index {
  align-self: start;
  padding-top: 6px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.disabled .row-index { color: #aaa6b2; }

.row-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.025em;
}

.row-copy p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.disabled .row-copy p { color: #9692a1; }

.status {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status.live { color: var(--green); background: var(--green-soft); }
.status.later { color: #777280; background: #e9e7ed; }

.row-action {
  min-width: 130px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  transition: transform 180ms ease;
}

.disabled .row-action { color: #aaa6b2; }

footer {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 4px;
  color: #8b8796;
  font-size: 12px;
}

@media (max-width: 720px) {
  .portal-shell { width: min(100% - 28px, 1120px); padding-top: 48px; }
  .portal-header { grid-template-columns: 44px 1fr; gap: 16px; margin-bottom: 38px; }
  .brand-mark { width: 44px; height: 44px; border-radius: 12px; }
  h1 { font-size: 42px; }
  .intro { font-size: 15px; }
  .mockup-row { grid-template-columns: 42px 1fr; gap: 12px; min-height: 0; padding: 24px 20px; }
  .row-action { grid-column: 2; min-width: 0; text-align: left; }
  h2 { font-size: 23px; }
  footer { flex-direction: column; gap: 5px; }
}

