:root {
  --bg: #000;
  --panel: #050505;
  --panel-2: #080808;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.18);
  --text: #f4f6ff;
  --muted: #8a8f9d;
  --muted-2: #606674;
  --blue: #155cff;
  --blue-2: #1c64ff;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.narrow { width: min(650px, calc(100% - 44px)); text-align: center; }
.section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.dot {
  display: none;
  width: 0;
  height: 0;
  margin-left: 0;
  color: transparent;
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 64px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 19px;
}
.brand img {
  width: 58px;
  height: auto;
  display: block;
}
.brand small {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.8px;
}
.brand small::before {
  content: "";
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.28);
}

.nav-links { display: flex; align-items: center; gap: 31px; color: #7a7f8a; font-size: 13px; font-weight: 600; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #050505;
  background: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
}
.nav-cta span { display: none; }

.hero { padding-top: 118px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(360px, .75fr); gap: 74px; align-items: center; }
.eyebrow, .kicker {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.4px;
  font-size: 11px;
}
.eyebrow {
  color: #8c93a1;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.eyebrow span { width: 4px; height: 4px; margin-top: 6px; border-radius: 50%; background: var(--blue); }
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(52px, 5.25vw, 76px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1;
  font-weight: 700;
}
.lead {
  color: #a3a8b3;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-actions.center { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--line-strong);
}
.button.primary { background: var(--white); color: #050505; }
.button.ghost { color: #d9dce5; background: transparent; }

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.metric-panel article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.metric-panel strong { display: block; color: var(--blue); font-size: 52px; line-height: .9; font-weight: 800; }
.metric-panel span { display: block; margin-top: 14px; text-transform: uppercase; font-size: 12px; font-weight: 800; }
.metric-panel p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

.split { display: grid; grid-template-columns: .8fr 1fr; gap: 90px; }
.copy-stack p, .section-head p, .next p { color: #969ba7; line-height: 1.75; font-size: 16px; }
.copy-stack p:last-child { margin-bottom: 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { max-width: 720px; }

.workstream-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.stream-card, .service-grid article, .month-cards article, .detail-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.stream-card { min-height: 285px; padding: 24px; display: flex; flex-direction: column; }
.number { color: var(--blue); font-size: 13px; font-weight: 800; }
.stream-card h3, .service-grid h3 { margin: 22px 0 12px; font-size: 22px; line-height: 1.05; }
.stream-card p, .service-grid p { color: #8e94a0; font-size: 14px; line-height: 1.6; }
.tags { margin-top: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.tags span {
  color: #aeb5c3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 8px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}

.roadmap { background: radial-gradient(circle at 50% 0%, rgba(20,92,255,.18), transparent 34%), #000; }
.month-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.month-cards article { padding: 26px; min-height: 315px; display: flex; flex-direction: column; }
.month-top { display: flex; justify-content: space-between; color: var(--blue); text-transform: uppercase; font-size: 12px; font-weight: 800; }
.month-top b { font-size: 21px; }
.phase { margin: 35px 0 9px; color: #747b89; font-size: 13px; font-weight: 800; }
.month-cards h3 { font-size: 28px; line-height: 1.02; margin-bottom: 12px; }
.month-cards p { color: #9197a4; line-height: 1.6; }
.month-cards a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 800; }

.timeline-table { margin-top: 18px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--panel); }
.row { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.row:last-child { border-bottom: 0; }
.row > * { padding: 18px; border-right: 1px solid var(--line); color: #9ca2ae; font-size: 14px; }
.row > *:last-child { border-right: 0; }
.row strong { color: var(--white); text-transform: uppercase; font-size: 12px; }
.title-row span { text-transform: uppercase; color: var(--blue); font-weight: 800; }

.detail-stack { display: grid; gap: 18px; }
.detail-card { padding: 30px; scroll-margin-top: 90px; }
.detail-intro { display: grid; grid-template-columns: 170px 1fr; gap: 24px; align-items: start; margin-bottom: 28px; }
.detail-intro p { color: var(--blue); text-transform: uppercase; font-size: 12px; font-weight: 800; }
.detail-intro p b { display: block; margin-top: 8px; color: var(--white); font-size: 38px; }
.detail-intro h3 { margin-bottom: 10px; font-size: 34px; line-height: 1; }
.detail-intro span { display: block; color: #9096a2; line-height: 1.6; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.detail-grid div { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel-2); }
h4 { color: var(--blue); margin-bottom: 14px; text-transform: uppercase; font-size: 12px; letter-spacing: 1.8px; }
ul { margin: 0; padding-left: 18px; color: #a2a8b3; line-height: 1.7; font-size: 14px; }
li { margin: 7px 0; }
.outcome {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(21,92,255,.45);
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  background: rgba(21,92,255,.08);
}
.outcome span { display: block; margin-top: 8px; color: #d2d6df; text-transform: none; font-weight: 600; line-height: 1.6; }

.service-grid article { padding: 24px; }
.service-grid ul { padding-left: 0; list-style: none; }
.service-grid li { position: relative; padding-left: 20px; }
.service-grid li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.flow { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.flow article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
.flow b { color: var(--blue); font-size: 24px; }
.flow strong { display: block; margin: 18px 0 8px; line-height: 1.15; }
.flow span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.check-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: #d7dbe4;
  background: var(--panel);
  font-size: 13px;
  font-weight: 700;
}
.check-grid span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21,92,255,.55);
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
}

.next { padding: 112px 0 120px; }
.next h2 { font-size: clamp(38px, 4.8vw, 60px); margin-bottom: 18px; }
.footer {
  padding: 24px 0;
  color: #b9beca;
  border-top: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.footer .container { display: flex; justify-content: space-between; gap: 18px; }
.footer span { color: #676d79; text-transform: none; letter-spacing: 0; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .split, .detail-intro { grid-template-columns: 1fr; gap: 28px; }
  .workstream-grid, .service-grid, .month-cards, .check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .row { grid-template-columns: 1fr; }
  .row > * { border-right: 0; border-bottom: 1px solid var(--line); }
  .row > *:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .container, .narrow, .nav { width: min(100% - 28px, 980px); }
  .section { padding: 70px 0; }
  .hero { padding-top: 86px; }
  h1 { font-size: 46px; line-height: 1; }
  h2 { font-size: 34px; }
  .metric-panel, .workstream-grid, .service-grid, .month-cards, .detail-grid, .flow, .check-grid { grid-template-columns: 1fr; }
  .brand small { display: none; }
  .nav-cta { padding: 10px 13px; }
  .footer .container { flex-direction: column; }
}

/* Closer match to the supplied desktop Lovable design */
:root {
  --line: rgba(255,255,255,.17);
  --line-strong: rgba(255,255,255,.28);
  --panel: #020202;
  --panel-2: #030303;
  --muted: #868686;
  --blue: #0078ff;
}

.container,
.nav {
  width: min(1240px, calc(100% - 72px));
}

.section {
  padding: 118px 0;
}

.site-header {
  background: rgba(0,0,0,.94);
}

.nav {
  height: 86px;
}

.brand img {
  width: 62px;
}

.brand small {
  color: #9a9a9a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
}

.nav-links {
  gap: 34px;
  color: #818181;
  font-size: 14px;
  font-weight: 500;
}

.nav-cta {
  min-height: 36px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  padding: 112px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 78%, rgba(0,120,255,.28), transparent 25%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #000;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0 32%, rgba(0,0,0,.82) 76%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: block;
  text-align: center;
}

.eyebrow {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  color: #9b9b9b;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow span {
  width: auto;
  height: auto;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(0,0,0,.25);
}

.eyebrow span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
}

h1 {
  max-width: 820px;
  margin: 0 auto 26px;
  font-size: clamp(50px, 4.35vw, 60px);
  line-height: .96;
  font-weight: 750;
}

.lead {
  max-width: 700px;
  margin: 0 auto;
  color: #898989;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  justify-content: center;
  margin-top: 42px;
}

.button {
  min-height: 46px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
}

.metric-panel {
  width: min(1240px, 100%);
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(0,0,0,.55);
  text-align: left;
}

.metric-panel article {
  min-height: 126px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 24px;
  background: transparent;
}

.metric-panel article:last-child {
  border-right: 0;
}

.metric-panel strong {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}

.metric-panel span {
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.metric-panel p {
  color: #848484;
}

.split {
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.kicker {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3.2px;
}

h2 {
  max-width: 900px;
  font-size: clamp(42px, 3.2vw, 50px);
  line-height: .98;
  font-weight: 750;
}

.section-head {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-head h2 {
  max-width: 900px;
}

.section-head p,
.copy-stack p,
.next p {
  color: #888;
  font-size: 16px;
  line-height: 1.55;
}

.copy-stack p:last-child {
  color: #f1f1f1;
}

.workstream-grid,
.service-grid,
.flow,
.detail-grid {
  overflow: hidden;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #000;
}

.workstream-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stream-card,
.service-grid article,
.flow article,
.detail-grid div {
  min-height: auto;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.stream-card:last-child,
.service-grid article:last-child,
.flow article:last-child,
.detail-grid div:last-child {
  border-right: 0;
}

.stream-card {
  padding: 28px 24px 24px;
}

.number {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
}

.stream-card h3,
.service-grid h3 {
  margin: 0 0 12px;
  color: #f3f3f3;
  font-size: 18px;
  line-height: 1.2;
}

.stream-card p,
.service-grid p {
  color: #858585;
  font-size: 14px;
  line-height: 1.7;
}

.tags span {
  color: #7e7e7e;
  font-size: 10px;
  font-weight: 800;
}

.roadmap {
  background: #000;
}

.month-cards {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 15px 15px 0 0;
  background: #000;
}

.month-cards article {
  min-height: 242px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 40px;
  background: transparent;
}

.month-cards article:last-child {
  border-right: 0;
}

.month-top {
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.month-top b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  font-size: 13px;
}

.month-top span {
  color: #747474;
  letter-spacing: 1.8px;
}

.phase {
  margin: 0 0 8px 62px;
  color: #f1f1f1;
  font-size: 16px;
  text-transform: none;
}

.month-cards h3 {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.2;
}

.month-cards p {
  color: #858585;
  font-size: 14px;
  line-height: 1.7;
}

.timeline-table {
  margin-top: 0;
  padding: 30px 40px 40px;
  border-color: var(--line-strong);
  border-radius: 0 0 15px 15px;
  background: #000;
}

.row {
  grid-template-columns: 220px repeat(3, 1fr);
  gap: 8px;
  border-bottom: 0;
  margin-bottom: 14px;
}

.row > * {
  border: 0;
  padding: 16px 12px;
}

.row:not(.title-row) span {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #020202;
}

.row:not(.title-row) span:first-of-type {
  border-color: rgba(0,120,255,.7);
  background: rgba(0,120,255,.08);
  color: #f3f3f3;
}

.row strong {
  color: #858585;
  letter-spacing: 1.2px;
}

.detail-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.detail-stack {
  gap: 64px;
}

.detail-intro {
  grid-template-columns: 240px 1fr;
  gap: 64px;
  margin-bottom: 34px;
}

.detail-intro p {
  color: #747474;
  grid-row: 1 / span 2;
}

.detail-intro p b {
  color: var(--blue);
  font-size: 48px;
}

.detail-intro h3 {
  grid-column: 2;
  font-size: 30px;
  font-weight: 750;
}

.detail-intro span {
  grid-column: 2;
}

.detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-grid div {
  padding: 26px 24px;
}

h4 {
  color: #f4f4f4;
  font-size: 14px;
  line-height: 1.35;
}

ul {
  padding-left: 0;
  list-style: none;
  color: #858585;
}

li {
  position: relative;
  padding-left: 16px;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--blue);
}

.outcome {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid rgba(0,120,255,.48);
  background: rgba(0,120,255,.07);
}

.outcome strong {
  flex: 0 0 100%;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.2px;
}

.outcome span {
  display: inline-flex;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #f4f4f4;
  background: #050505;
  font-size: 12px;
  line-height: 1.2;
}

.service-grid article {
  padding: 28px 24px;
}

.service-grid li::before {
  border-radius: 0;
}

.flow {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flow article {
  padding: 24px;
}

.flow b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.flow strong {
  margin-top: 32px;
  color: #f4f4f4;
  font-size: 14px;
}

.flow span {
  color: #858585;
  font-size: 12px;
}

.check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.check-grid span {
  min-height: 58px;
  border-color: rgba(255,255,255,.3);
  border-radius: 10px;
  background: transparent;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 500;
}

.outcome-section .check-grid span {
  border-color: rgba(255,255,255,.34);
}

.next {
  text-align: center;
  padding: 98px 0;
}

.next h2 {
  max-width: none;
  font-size: 46px;
}

.footer .container {
  width: min(1240px, calc(100% - 72px));
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 38px;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .metric-panel,
  .workstream-grid,
  .service-grid,
  .detail-grid,
  .flow,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-panel article:nth-child(2),
  .workstream-grid article:nth-child(2),
  .service-grid article:nth-child(2),
  .detail-grid div:nth-child(2),
  .flow article:nth-child(2n) {
    border-right: 0;
  }

  .metric-panel article,
  .workstream-grid article,
  .service-grid article,
  .detail-grid div,
  .flow article {
    border-bottom: 1px solid var(--line);
  }

  .metric-panel article:nth-last-child(-n+2),
  .workstream-grid article:nth-last-child(-n+2),
  .service-grid article:nth-last-child(-n+2),
  .detail-grid div:nth-last-child(-n+2),
  .flow article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .detail-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-intro p,
  .detail-intro h3,
  .detail-intro span {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .container,
  .nav,
  .footer .container {
    width: min(100% - 28px, 1240px);
  }

  .hero {
    padding: 78px 0 44px;
  }

  .eyebrow {
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .hero-grid,
  .hero-actions {
    text-align: left;
    justify-content: flex-start;
  }

  h1 {
    margin-left: 0;
    margin-right: 0;
    font-size: 45px;
  }

  .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .metric-panel,
  .workstream-grid,
  .service-grid,
  .month-cards,
  .detail-grid,
  .flow,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .metric-panel article,
  .workstream-grid article,
  .service-grid article,
  .month-cards article,
  .detail-grid div,
  .flow article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-panel article:last-child,
  .workstream-grid article:last-child,
  .service-grid article:last-child,
  .month-cards article:last-child,
  .detail-grid div:last-child,
  .flow article:last-child {
    border-bottom: 0;
  }

  .row {
    grid-template-columns: 1fr;
  }
}
